/* ===============================
   SECTION INFOS & CONTACT
   =============================== */
.horaire-section {
  max-width: 1200px;
  margin: 0 auto;
  padding:10px;
}

.horaire-section h2 {
  color: var(--main-color, #0e4a7b);
  font-size: 2rem;
  margin-bottom: 1rem;
	position:relative;
}


/* Ligne décorative corail */
.horaire-section h2::after {
  content: "";
  width: 50%;
  height: 3px;
  background-color: #FF8A80; /* corail pastel */
  left: 0;
  bottom: 0;
  border-radius: 2px;
  position:absolute;
}
.infos-contact {
  /* background-color: #f0f3f8; */
    background-color: #f8f9fb;
  padding: 4rem 2rem;
}
.infos-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;

  align-items: stretch; /* 🔥 IMPORTANT */
}

.opening-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
}

.opening-table td {
  padding: 10px;
  font-size: 0.95rem;
}

/* alternance */
.opening-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.opening-table tr:nth-child(odd) {
  background-color: #ffffff;
}

/* hover dynamique */
.opening-table tr:hover {
  background-color: #FFE5E0;
  transition: 0.2s;
}

.contact-details a[href^="tel"] {
  font-size: 1.2rem;
  color: #FF8A80;
  font-weight: 600;
}

.contact-details a[href^="tel"]:hover {
  color: #e76f65;
}

.contact-details a:hover {
  text-decoration: underline;
}

.info-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #FF8A80;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  margin-top: 2rem;
}

.info-box p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #444;
}

.infos-container {
  gap: 40px;
  padding: 0px 0px 50px 0px;

}

/* Responsive */
@media (max-width: 768px) {
  .infos-container {
    grid-template-columns: 1fr;
  }

  .infos-right iframe {
    height: 250px;
  }
}
/* Wrapper = colonne droite */
.map-wrapper {
  display: flex;
  height: 100%;
}

/* Container map */
.map-container {
  flex: 1;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

/* Image */
.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay amélioré */
.map-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.1)
  );
}

.map-overlay span {
  background: #FF8A80;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.map-container:hover span {
  transform: scale(1.05);
}
.transport-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px;
}
/* texte */
.transport-item span {
  font-size: 0.95rem;
  color: #444;
}

/* bouton déjà existant */
.btn-link {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 0px 5px 15px;
  border: 2px solid #FF8A80;
  color: #FF8A80;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
  width:60%
}

.btn-link:hover {
  background-color: #FF8A80;
  color: white;
}

/* Hover */
.btn-link:hover {
  background-color: #e76f65;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

.lazy-img {
  filter: blur(8px);
  transition: filter 0.4s ease;
}

/* Image chargée */
.lazy-img.loaded {
  filter: blur(0);
}