/* ===== FOOTER STYLE "PORTFOLIO" ===== */

#footer {
  background-color: #11101b; /* fond sombre proche de ton screen */
  color: #f9fafb;
  padding: 60px 20px 30px;
  font-size: 0.95rem;
}

/* Conteneur principal */
#footer .footer-content {
  max-width: 1100px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column; /* pile comme sur ton screen 2 */
  align-items: center;
  gap: 40px;
  text-align: center;
}

/* Blocs Contact / Suivez-moi */
#footer .footer-section {
  flex: 1 1 auto;
}

/* Titres "Contactez-moi" / "Suivez-moi" avec soulignement jaune */
#footer .footer-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

#footer .footer-section h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background-color: #ffd700;
  margin: 8px auto 0;
}

/* Lignes de contact (icône + texte) */
#footer .footer-section p {
  margin: 8px 0;
  padding: 4px 0;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #e5e7eb;
}

#footer .footer-section p i {
  margin-right: 0;
  font-size: 1.1rem;
}

/* Icônes sociales */
#footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
}

#footer .social-icons a {
  color: #f9fafb;
  font-size: 1.6rem;
  padding: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

#footer .social-icons a:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

/* Ligne + copyright en bas */
#footer .footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #3b3b48;
  padding-top: 18px;
  text-align: center;
}

#footer .footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Un petit ajustement responsive si besoin */
@media (min-width: 900px) {
  #footer .footer-content {
    /* tu peux repasser en 2 colonnes si tu veux,
       sinon on laisse en colonne comme ton screen 2 */
    /* display: grid;
       grid-template-columns: repeat(2, minmax(0, 1fr));
       text-align: left;
       align-items: flex-start; */
  }
}
