

.hero {
  background: #dce9f5;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 480px;
}

.hero-text h1 {
  color: #12233f;
  font-size: 2.3rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.hero-text p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.hero-text {
  flex-shrink: 1;
 
}

.hero-photo {
  flex: 1;
  max-width: 560px;
  text-align: center;
}

.btn-rdv {
  display: inline-block;
  background: #a3332b;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}



.cards {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #d9d9d9;
  flex: 1 1 220px;
  max-width: 260px;
  min-height: 70px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-weight: 500;
  color: #222;
}


.horaires-section {
  display: flex;
  gap: 2rem;
  padding: 1rem 2rem 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.horaires h2 {
  color: #12233f;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.horaires table {
  border-collapse: collapse;
  font-size: 0.95rem;
}

.horaires td {
  padding: 0.3rem 1.5rem 0.3rem 0;
}

.map-container {
  flex: 1;
  min-width: 0px;

}

.map-container iframe {
  width: 100%;
  max-width: 100%;
  height: 320px;
  border: 0;
  border-radius: 6px;
}



/*  Carousel photos du cabinet */
.carousel {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
}

.carousel-wrap {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}