body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f9fafb;
  color: #333;
}

.contact-container {
  min-height: 100vh;
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #ea580c; /* orange */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch; /* 👈 Permet aux blocs enfants d'avoir la même hauteur */
}

/* Blocs enfants qui auront la même hauteur */
.contact-info,
.map-container {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto; /* 👈 On laisse le navigateur gérer la hauteur */
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icon-link {
  color: #6b7280; /* gris */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.icon-link.orange {
  color: #ea580c;
}

.icon-link.orange:hover,
.contact-link:hover {
  color: #c2410c; /* orange foncé hover */
}

.icon {
  width: 24px;
  height: 24px;
}

.contact-link {
  color: #4b5563;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ea580c;
}

.social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.8;
}

/* Carte Google Maps intégrée */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.75rem;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .map-container {
    height: auto;
    padding: 1.5rem;
  }
}
