@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.card-reveal {
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  background: #fff;
  font-family: 'Poppins', sans-serif !important;
}

/* IMAGE */
.card-reveal-image {
  height: 450px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

/* CONTENU */
.card-reveal-content {
  background: #fff;
  padding: 10px 0 0 0; /* aligné avec l'image */
  min-height: 50px;
  transition: min-height 0.5s ease;
}

/* TITRE */
.card-reveal-title {
  margin: 0;
  font-size: 24px !important; /* augmenté */
  font-weight: 600 !important;
  line-height: 1.25;
  color: #111;
  font-family: 'Poppins', sans-serif !important;
}

/* TEXTE */
.card-reveal-text {
  margin: 4px 0 0 0; /* moins d'espace */
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5;
  color: #444;
  font-family: 'Poppins', sans-serif !important;

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(4px);
  transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.5s ease;
}

/* HOVER */
.card-reveal:hover .card-reveal-image {
  transform: translateY(-35px); /* moins d'espace créé */
}

.card-reveal:hover .card-reveal-content {
  min-height: 95px; /* plus compact */
}

.card-reveal:hover .card-reveal-text {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
}
.tour-itinerary {
  position: relative;
  padding-left: 28px;
  font-family: 'Poppins', sans-serif;
}

/* TITRE */
.tour-itinerary-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* LIGNE VERTICALE (plus fine) */
.tour-itinerary::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 52px;
  bottom: 10px;
  width: 2px; /* plus fin */
  background: #1C45A4;
  opacity: 0.25; /* effet moderne */
}

/* STEP */
.tour-step {
  position: relative;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

/* POINT */
.tour-step-marker {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #1C45A4;
  z-index: 2;
}

/* POINT ACTIF (départ / arrivée) */
.tour-step.start .tour-step-marker,
.tour-step.end .tour-step-marker {
  background: #1C45A4;
}

/* CONTENU */
.tour-step-heading {
  font-size: 21px;
  font-weight: 500;
  color: #1b2b4b;
  line-height: 1.3;
  margin-bottom: 2px;
}

.tour-step-text {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
}


.tour-step:hover .tour-step-marker {
  transform: scale(1.2);
  background: #1C45A4;
}


.tour-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.menu a[href*="reserver"] {
  background: linear-gradient(180deg, #2f4ea2, #1f3c8f);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none !important;
  margin-left: 10px;
  display: inline-block;
}

.menu a[href*="reserver"]:hover {
  background: linear-gradient(180deg, #3b5fc0, #254aa5);
}a[href*="reserver"] {
  background: linear-gradient(180deg, #2f4ea2, #1f3c8f);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none !important;
}