/*==================================================
                    HERO
==================================================*/

.hero-destination {
  position: relative;
  width: 100%;
  height: 88vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-destination::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);
}

.hero-overlay {
  position: absolute;

  left: 50%;
  bottom: 8%;

  transform: translateX(-50%);

  width: 90%;
  max-width: 900px;

  padding: 35px;

  border-radius: 30px;

  text-align: center;
  color: white;

  z-index: 2;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(1px);
}

.hero-subtitle {
  display: block;

  margin-bottom: 10px;

  color: rgb(241, 130, 173);

  font-weight: 700;

  letter-spacing: 4px;
}

.hero-overlay h1 {
  color: white;

  font-size: 3rem;

  margin-bottom: 20px;
}

.hero-overlay p {
  max-width: 700px;

  margin: auto;

  text-align: center;

  color: rgba(255, 255, 255, 0.95);

  line-height: 1.8;
}
/*==================================================
                    INTRODUCTION
==================================================*/

.intro-section {
  padding: 70px 5% 30px;
}

.intro-container {
  max-width: 1200px;

  margin: auto;

  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(12px);

  border-radius: 35px;

  padding: 50px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.intro-container h2 {
  text-align: center;

  margin-bottom: 30px;

  color: rgb(241, 130, 173);
}

.intro-container p {
  color: #444;

  font-size: 17px;

  line-height: 1.9;

  text-align: justify;

  margin-bottom: 18px;
}

/*==================================================
                    MON SÉJOUR
==================================================*/

.trip-summary {
  max-width: 1200px;

  margin: 45px auto 70px;

  padding: 0 20px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.trip-summary-card {
  padding: 35px 25px;

  text-align: center;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(12px);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.trip-summary-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.trip-summary-card i {
  display: block;

  margin-bottom: 18px;

  font-size: 34px;

  color: rgb(241, 130, 173);
}

.trip-summary-card h3 {
  margin-bottom: 12px;

  font-size: 22px;

  color: #222;
}

.trip-summary-card p {
  color: #555;

  font-size: 17px;

  line-height: 1.7;
}
/*==================================================
                    TIMELINE
==================================================*/

.journey {
    max-width: 1250px;
    margin: 70px auto;
    padding: 40px 30px;
}

.journey-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.journey-track::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 4%;
    right: 4%;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        rgb(241,130,173),
        rgb(255,190,215)
    );
    z-index: 0;
}

.journey-step {
    position: relative;
    width: 110px;
    text-align: center;
    z-index: 2;
}

.journey-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: auto;
    border: 3px solid rgb(241,130,173);
    background: white;
    transition: .3s;
}

.journey-step.done .journey-dot{
    background: rgb(241,130,173);
}

.journey-step.current .journey-dot{
    background: rgb(241,130,173);
    transform: scale(1.35);
    animation:pulse 2s infinite;
}

.journey-name{
    margin-top:14px;
    font-size:13px;
    font-weight:600;
    color:#777;
    transition:.3s;
}

.journey-step.current .journey-name{
    color:rgb(241,130,173);
}

.journey-step.done .journey-name{
    color:#444;
}

.journey-date{
    margin-top:5px;
    font-size:11px;
    color:#999;
}

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(241,130,173,.45);
}

70%{
box-shadow:0 0 0 10px rgba(241,130,173,0);
}

100%{
box-shadow:0 0 0 0 rgba(241,130,173,0);
}

}

@media(max-width:900px){

.journey{
overflow-x:auto;
padding-bottom:10px;
}

.journey-track{

min-width:900px;

}

}

/*==================================================
                    PROGRAMME
==================================================*/

.programme-section {
  padding: 20px 5% 80px;
}

.glass-container {
  max-width: 1200px;

  margin: auto;

  padding: 50px;

  border-radius: 35px;

  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(12px);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.glass-container h2 {
  text-align: center;

  margin-bottom: 35px;

  color: rgb(241, 130, 173);
}

/*==================================================
                    TABLEAU
==================================================*/

.table-wrapper {
  overflow-x: auto;
}

.program-table {
  width: 100%;

  border-collapse: collapse;
}

.program-table th {
  padding: 18px;

  background: rgb(241, 202, 226);

  text-align: left;
}

.program-table td {
  padding: 18px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.program-table tr:hover {
  background: rgba(241, 130, 173, 0.08);
}

.day-title td {
  background: rgba(241, 130, 173, 0.12);

  color: rgb(241, 130, 173);

  font-weight: 700;

  text-align: center;
}
/*==================================================
                    DÉBRIEF
==================================================*/

.debrief-section {
  padding: 40px 5%;
}

.debrief-container {
  max-width: 1200px;

  margin: auto;

  padding: 50px;

  border-radius: 35px;

  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(12px);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.debrief-container h2 {
  text-align: center;

  margin-bottom: 35px;

  color: rgb(241, 130, 173);
}

.debrief-container p {
  color: #444;

  font-size: 17px;

  line-height: 1.9;

  text-align: justify;

  margin-bottom: 20px;
}

/*==================================================
                    JOUR
==================================================*/

.debrief-day {
  display: inline-block;

  margin-bottom: 18px;

  padding: 8px 18px;

  border-radius: 50px;

  background: rgba(241, 130, 173, 0.15);

  color: rgb(241, 130, 173);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 1px;
}

.debrief-day:not(:first-child) {
  margin-top: 55px;
}

.debrief-container h3 {
  margin-bottom: 18px;

  color: #222;

  font-size: 1.7rem;
}

.coming-soon {
  margin-top: 35px;

  text-align: center;

  font-weight: 700;

  color: rgb(241, 130, 173);
}
/*==================================================
                    À SAVOIR
==================================================*/

.tips-box {
  margin-top: 50px;

  padding: 35px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(12px);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.tips-box h3 {
  text-align: center;

  margin-bottom: 25px;

  color: rgb(241, 130, 173);
}

.tips-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}

.tip-item {
  padding: 18px;

  border-radius: 18px;

  background: rgba(241, 130, 173, 0.08);
}

.tip-item strong {
  display: block;

  margin-bottom: 8px;

  color: rgb(241, 130, 173);
}

/*==================================================
                    GALERIE
==================================================*/

.gallery-title {
  margin-top: 60px;
}

.image-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

  margin-top: 30px;
}

.image-card {
  overflow: hidden;

  border-radius: 25px;

  cursor: pointer;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(10px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

  transition: transform 0.3s ease;
}

.image-card:hover {
  transform: translateY(-4px);
}

.image-card img {
  width: 100%;

  height: 240px;

  object-fit: cover;

  display: block;
}

.image-content {
  padding: 20px;
}

.image-content h3 {
  margin-bottom: 10px;

  color: rgb(241, 130, 173);

  font-size: 18px;
}

.image-content p {
  color: #555;

  font-size: 15px;

  line-height: 1.7;
}

/*==================================================
                IMAGE PLEIN ÉCRAN
==================================================*/

.image-modal {
  position: fixed;

  inset: 0;

  display: flex;

  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.92);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 999999;
}

.image-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-image {
  max-width: 92%;

  max-height: 90vh;

  object-fit: contain;

  border-radius: 18px;
}

.close-modal {
  position: absolute;

  top: 20px;
  right: 25px;

  font-size: 36px;

  color: white;

  cursor: pointer;
}
/*==================================================
                CONTINUER LE VOYAGE
==================================================*/

.next-trip {
  max-width: 1200px;

  margin: 70px auto 0;

  padding: 0 20px;
}

.next-trip h2 {
  text-align: center;

  margin-bottom: 40px;

  color: #222;

  font-size: 2rem;
}

.next-trip-intro {
  max-width: 850px;

  margin: 0 auto 40px;

  text-align: center;

  color: #555;

  line-height: 1.8;

  font-size: 17px;
}

.trip-navigation {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

.trip-card {
  display: flex;

  align-items: center;

  gap: 20px;

  padding: 20px;

  border-radius: 28px;

  text-decoration: none;

  color: inherit;

  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(12px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.35s ease;
}

.trip-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.trip-card img {
  width: 170px;

  height: 120px;

  object-fit: cover;

  flex-shrink: 0;

  border-radius: 18px;
}

.trip-card span {
  display: block;

  margin-bottom: 10px;

  color: rgb(241, 130, 173);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 1px;
}

.trip-card h3 {
  margin-bottom: 8px;

  color: #222;

  font-size: 24px;
}

.trip-card p {
  color: #666;

  line-height: 1.6;
}

/*==================================================
                    RESPONSIVE
==================================================*/

@media (max-width: 900px) {
  /* HERO */

  .hero-destination {
    height: 60vh;
    min-height: 420px;
  }

  .hero-overlay {
    width: calc(100% - 40px);

    left: 20px;
    right: 20px;
    bottom: 20px;

    transform: none;

    padding: 22px;

    border-radius: 24px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero-overlay p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* INTRODUCTION */

  .intro-section,
  .programme-section,
  .debrief-section {
    padding: 20px;
  }

  .intro-container,
  .glass-container,
  .debrief-container {
    padding: 30px;
  }

  /* MON SÉJOUR */

  .trip-summary {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trip-summary-card {
    padding: 25px;
  }

  /* PROGRAMME */

  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .program-table {
    min-width: 520px;
  }

  .program-table th,
  .program-table td {
    padding: 12px;
    font-size: 14px;
  }

  /* DEBRIEF */

  .debrief-container p {
    text-align: left;
    font-size: 16px;
  }

  /* A SAVOIR */

  .tips-box {
    padding: 25px;
  }

  .tips-list {
    grid-template-columns: 1fr;
  }

  /* GALERIE */

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .image-card img {
    height: 190px;
  }

  .image-content {
    padding: 15px;
  }

  .image-content h3 {
    font-size: 15px;
  }

  .image-content p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* IMAGE PLEIN ÉCRAN */

  .modal-image {
    width: 94%;
    max-height: 80vh;
  }

  .close-modal {
    top: 15px;
    right: 18px;
    font-size: 32px;
  }

  /* CONTINUER LE VOYAGE */

  .trip-navigation {
    grid-template-columns: 1fr;
  }

  .trip-card {
    flex-direction: column;
    text-align: center;
  }

  .trip-card img {
    width: 100%;
    height: 220px;
  }
}

/*==================================================
            PETITS SMARTPHONES
==================================================*/

@media (max-width: 600px) {
  .hero-overlay h1 {
    font-size: 1.7rem;
  }

  .hero-overlay p {
    font-size: 13px;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trip-card img {
    height: 180px;
  }
}
/*==================================================
                    JOURNEY
==================================================*/

.journey {
  max-width: 1250px;

  margin: 70px auto;

  padding: 55px 60px;

  border-radius: 35px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(12px);

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}

/*==================================================
                    TITRE
==================================================*/

.journey-title {
  text-align: center;

  font-size: 48px;

  font-weight: 800;

  color: #222;

  margin-bottom: 20px;
}

.journey-dates {
  display: flex;

  justify-content: space-between;

  color: #8a8a8a;

  font-size: 15px;

  margin-bottom: 45px;
}

/*==================================================
                    TIMELINE
==================================================*/

.journey-timeline {
  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  padding-top: 15px;
}

/*==================================================
                    LIGNES
==================================================*/

.journey-line {
  position: absolute;

  left: 65px;

  right: 65px;

  top: 23px;

  height: 4px;

  background: #dddddd;

  border-radius: 50px;
}

.journey-progress {
  position: absolute;

  left: 65px;

  top: 23px;

  height: 4px;

  width: 0;

  border-radius: 50px;

  background: linear-gradient(90deg, rgb(241, 130, 173), rgb(255, 180, 210));

  transition: 1.2s ease;
}

/*==================================================
                    ETAPE
==================================================*/

.journey-stop {
  position: relative;

  width: 105px;

  text-decoration: none;

  display: flex;

  flex-direction: column;

  align-items: center;

  z-index: 2;
}

/*==================================================
                    POINT
==================================================*/

.journey-dot {
  width: 20px;

  height: 20px;

  border-radius: 50%;

  background: #dadada;

  border: 4px solid white;

  box-shadow: 0 0 0 2px #dadada;

  transition: 0.35s;
}

/*==================================================
                    NOM
==================================================*/

.journey-name {
  margin-top: 18px;

  text-align: center;

  font-size: 14px;

  font-weight: 600;

  color: #9b9b9b;

  transition: 0.35s;
}
/*==================================================
            ETATS DES ETAPES
==================================================*/

.journey-stop.visited .journey-dot {
  background: #7d7d7d;

  box-shadow: 0 0 0 2px #7d7d7d;
}

.journey-stop.visited .journey-name {
  color: #555;
}

.journey-stop.current .journey-dot {
  background: rgb(241, 130, 173);

  box-shadow:
    0 0 0 2px rgb(241, 130, 173),
    0 0 18px rgba(241, 130, 173, 0.35);
}

.journey-stop.current .journey-name {
  color: #222;

  font-weight: 700;
}

/*==================================================
                HOVER
==================================================*/

.journey-stop:hover .journey-dot {
  transform: scale(1.18);
}

.journey-stop:hover .journey-name {
  color: #222;
}

.journey-stop {
  transition: 0.3s;
}

.journey-stop:hover {
  transform: translateY(-4px);
}

/*==================================================
                TOOLTIP
==================================================*/

.journey-tooltip {
  position: absolute;

  bottom: 72px;

  left: 50%;

  transform: translateX(-50%) translateY(10px);

  min-width: 120px;

  padding: 12px 16px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(14px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  text-align: center;

  opacity: 0;

  pointer-events: none;

  transition: 0.3s;
}

.journey-tooltip strong {
  display: block;

  font-size: 14px;

  margin-bottom: 4px;

  color: #222;
}

.journey-tooltip small {
  color: #777;

  font-size: 12px;
}

.journey-stop:hover .journey-tooltip {
  opacity: 1;

  transform: translateX(-50%) translateY(0);
}

/*==================================================
            RESPIRATION
==================================================*/

.journey-stop.current .journey-dot {
  animation: journeyPulse 5s infinite;
}

@keyframes journeyPulse {
  0% {
    transform: scale(1);
  }

  5% {
    transform: scale(1.18);
  }

  10% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}
/*==================================================
                ANIMATION
==================================================*/

.journey-progress {
  animation: journeyProgress 1.2s ease;
}

@keyframes journeyProgress {
  from {
    width: 0;
  }
}

/*==================================================
            ALIGNEMENT
==================================================*/

.journey-stop {
  flex-shrink: 0;
}

.journey-dot {
  position: relative;

  z-index: 3;
}

/*==================================================
                RESPONSIVE
==================================================*/

@media (max-width: 1100px) {
  .journey {
    padding: 40px 30px;

    overflow-x: auto;
  }

  .journey-title {
    font-size: 38px;
  }

  .journey-timeline {
    min-width: 1050px;
  }
}

@media (max-width: 700px) {
  .journey {
    padding: 30px 20px;
  }

  .journey-title {
    font-size: 30px;
  }

  .journey-dates {
    font-size: 13px;
  }

  .journey-stop {
    width: 90px;
  }

  .journey-name {
    font-size: 12px;
  }

  .journey-dot {
    width: 18px;

    height: 18px;
  }
}

/*==================================================
                CURSEUR
==================================================*/

.journey-stop {
  cursor: pointer;
}

/*==================================================
            TRANSITIONS
==================================================*/

.journey-dot,
.journey-name,
.journey-progress,
.journey-tooltip {
  transition: 0.35s ease;
}

/*==================================================
                ACCESSIBILITE
==================================================*/

.journey-stop:focus {
  outline: none;
}

.journey-stop:focus .journey-dot {
  box-shadow:
    0 0 0 2px rgb(241, 130, 173),
    0 0 0 8px rgba(241, 130, 173, 0.2);
}
/*==================================================
            PAGE EN CONSTRUCTION
==================================================*/

.construction-section {
  max-width: 900px;

  margin: 80px auto;

  padding: 0 25px;
}

.construction-card {
  text-align: center;

  padding: 70px 50px;
}

.construction-icon {
  font-size: 70px;

  margin-bottom: 25px;
}

.construction-card h2 {
  font-size: 36px;

  margin-bottom: 25px;
}

.construction-card p {
  max-width: 700px;

  margin: 20px auto;

  line-height: 1.8;

  color: #555;
}

.construction-btn {
  display: inline-block;

  margin-top: 35px;

  padding: 15px 35px;

  border-radius: 50px;

  background: #f182ad;

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.construction-btn:hover {
  transform: translateY(-3px);

  background: #eb6b9d;
}

.construction-progress {
  max-width: 900px;

  margin: 0 auto 80px;

  padding: 0 25px;
}

.construction-progress h2 {
  text-align: center;

  margin-bottom: 20px;
}

.construction-progress p {
  text-align: center;

  margin-bottom: 35px;

  color: #666;
}

.progress-list {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

  gap: 18px;
}

.progress-item {
  padding: 18px;

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.55);

  text-align: center;

  font-weight: 600;
}

.progress-item.done {
  color: #3c8c4a;
}

.progress-item.todo {
  color: #d88400;
}
/* =====================================================
                    GALERIE V2
===================================================== */

.modal-prev,
.modal-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: rgba(0, 0, 0, .45);

    color: white;

    font-size: 28px;

    cursor: pointer;

    transition: .25s;

    z-index: 10;

}

.modal-prev {

    left: 25px;

}

.modal-next {

    right: 25px;

}

.modal-prev:hover,
.modal-next:hover {

    background: rgba(0, 0, 0, .75);

    transform: translateY(-50%) scale(1.08);

}

.modal-counter {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    background: rgba(0, 0, 0, .55);

    color: white;

    padding: 8px 16px;

    border-radius: 30px;

    font-size: .95rem;

    font-weight: 500;

    backdrop-filter: blur(8px);

    z-index: 10;

}

/* =====================================================
                    MOBILE
===================================================== */

@media (max-width:768px){

    .modal-prev,
    .modal-next{

        width:45px;

        height:45px;

        font-size:22px;

    }

    .modal-prev{

        left:10px;

    }

    .modal-next{

        right:10px;

    }

    .modal-counter{

        bottom:15px;

        font-size:.85rem;

        padding:6px 12px;

    }

}
