/* =======================================================
   🧾 CARTES DE CONTACT (email & téléphone)
   ======================================================= */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  background-color: #2c2c2c;
  padding: 16px 24px;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  gap: 12px;
  transition: background-color 0.3s;
}

.contact-card:hover {
  background-color: #f02820;
  cursor: pointer;
}

.contact-card i {
  font-size: 18px;
}


#contact-section {
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* centre verticalement */
  flex-direction: column;  /* aligne les enfants verticalement */
  min-height: 100vh;       /* optionnel : occupe toute la hauteur de l'écran */
  text-align: center;      /* centre le texte */
}


.contact-card a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.contact-card a:hover {
  color: white; /* ❌ plus de rouge au survol */
  opacity: 0.8; /* ✅ effet doux sans changer la couleur */
  text-decoration: underline;
}
