/*==================================================
                    RESET
==================================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: url("/Images/background.webp") center / cover fixed;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 90px 20px;
}

/*==================================================
                CONTENEUR
==================================================*/

.glass-container {
  max-width: 1350px;
  margin: auto;
  padding: 55px;
  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);
}

h2 {
  font-size: 46px;
  text-align: center;
  color: #222;
  margin-bottom: 20px;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
  color: #666;
  line-height: 1.8;
}

/*==================================================
                BARRE DE PROGRESSION
==================================================*/

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: rgb(241, 130, 173);
  z-index: 99999;
  transition: width 0.15s ease;
}

/*==================================================
                    HEADER
==================================================*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo-div {
  max-width: 1450px;
  margin: auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

/*==================================================
                    LOGO
==================================================*/

.logo {
  display: flex;
  align-items: center;
}

.logo p {
  font-family: "Archivo Black", sans-serif;
  font-size: 30px;
  color: #111;
}

/*==================================================
                MENU DESKTOP
==================================================*/

.logo-div > ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.logo-div > ul > li {
  position: relative;
}

.logo-div > ul > li > a {
  display: block;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.logo-div > ul > li > a:hover {
  background: rgba(241, 130, 173, 0.16);
  color: rgb(241, 130, 173);
}

/*==================================================
                SOUS MENU
==================================================*/

.sousnav {
  position: absolute;
  top: 115%;
  left: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  padding: 14px;
  gap: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
}

.logo-div li:hover > .sousnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sousnav li {
  list-style: none;
}

.sousnav a {
  display: block;
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s;
}

.sousnav a:hover {
  background: rgba(241, 130, 173, 0.12);
}

/*==================================================
                    BURGER
==================================================*/

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 34px;
  cursor: pointer;
}

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

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0;
  overflow: hidden;
}

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

.hero::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: min(900px, 90%);
  padding: 40px;
  border-radius: 35px;
  text-align: center;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.hero-subtitle {
  display: block;
  margin-bottom: 15px;
  color: rgb(241, 130, 173);
  font-weight: 700;
  letter-spacing: 4px;
}

.hero-overlay h1 {
  color: white;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  margin-bottom: 25px;
}

.hero-overlay p {
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
}

.hero-button {
  display: inline-block;
  margin-top: 35px;
  padding: 15px 36px;
  border-radius: 50px;
  background: rgb(241, 130, 173);
  color: white;
  font-weight: 600;
  transition: 0.35s;
}

.hero-button:hover {
  transform: translateY(-3px);
  background: rgb(233, 105, 156);
  box-shadow: 0 12px 30px rgba(241, 130, 173, 0.35);
}
/*==================================================
                PRESENTATION
==================================================*/

.intro-section {
  padding: 90px 20px 40px;
}

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

  margin: 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);
}

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

  font-size: 46px;

  color: #222;

  margin-bottom: 35px;
}

.intro-container p {
  color: #555;

  line-height: 1.9;

  text-align: justify;

  margin-bottom: 22px;
}

.intro-container p:last-child {
  margin-bottom: 0;
}

/*==================================================
            MON VOYAGE AU JAPON
==================================================*/

.trip-overview {
  padding: 40px 20px 90px;
}

.trip-overview .glass-container {
  max-width: 1450px;
}

.trip-overview h2 {
  margin-bottom: 20px;
}

.trip-overview-intro {
  max-width: 760px;

  margin: 0 auto 60px;

  text-align: center;

  color: #666;

  line-height: 1.8;
}

/*==================================================
                GRILLE
==================================================*/

.trip-overview-grid {
  display: grid;

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

  gap: 28px;
}

/*==================================================
                CARTE
==================================================*/

.overview-card {
  display: flex;

  flex-direction: column;

  justify-content: space-between;

  min-height: 190px;

  padding: 30px;

  border-radius: 28px;

  background: white;

  color: #222;

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

  transition: 0.35s;
}

.overview-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.overview-card span {
  color: rgb(241, 130, 173);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;
}

.overview-card h3 {
  margin: 18px 0 15px;

  font-size: 26px;

  color: #222;

  transition: 0.3s;
}

.overview-card p {
  color: #666;

  line-height: 1.8;

  font-size: 15px;
}

.overview-card:hover h3 {
  color: rgb(241, 130, 173);
}
/*==================================================
                    DESTINATIONS
==================================================*/

.destinations-section {
  padding: 40px 20px 90px;
}

.destinations-section .glass-container {
  max-width: 1450px;
}

.destinations-section h2 {
  margin-bottom: 20px;
}

/*==================================================
                GRILLE
==================================================*/

.destination-grid {
  display: grid;

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

  gap: 35px;
}

/*==================================================
                CARTE
==================================================*/

.destination-card {
  display: flex;

  flex-direction: column;

  overflow: hidden;

  border-radius: 30px;

  background: white;

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

  transition: 0.35s;
}

.destination-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

/*==================================================
                    IMAGE
==================================================*/

.destination-card img {
  width: 100%;

  height: 240px;

  object-fit: cover;

  transition: 0.45s;
}

.destination-card:hover img {
  transform: scale(1.06);
}

/*==================================================
                    CONTENU
==================================================*/

.destination-content {
  display: flex;

  flex-direction: column;

  flex: 1;

  padding: 28px;
}

.destination-content h3 {
  font-size: 28px;

  color: #222;

  margin-bottom: 18px;

  transition: 0.3s;
}

.destination-content p {
  flex: 1;

  color: #666;

  line-height: 1.8;

  margin-bottom: 28px;
}

.destination-content span {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-weight: 700;

  color: rgb(241, 130, 173);

  transition: 0.3s;
}

.destination-card:hover h3 {
  color: rgb(241, 130, 173);
}

.destination-card:hover span {
  transform: translateX(8px);
}

/*==================================================
                ANIMATION
==================================================*/

.destination-card {
  animation: fadeUp 0.7s ease both;
}

.destination-card:nth-child(2) {
  animation-delay: 0.05s;
}

.destination-card:nth-child(3) {
  animation-delay: 0.1s;
}

.destination-card:nth-child(4) {
  animation-delay: 0.15s;
}

.destination-card:nth-child(5) {
  animation-delay: 0.2s;
}

.destination-card:nth-child(6) {
  animation-delay: 0.25s;
}

.destination-card:nth-child(7) {
  animation-delay: 0.3s;
}

.destination-card:nth-child(8) {
  animation-delay: 0.35s;
}

/*==================================================
                KEYFRAMES
==================================================*/

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(25px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}
/*==================================================
            VOYAGE EN CHIFFRES
==================================================*/

.travel-stats {
  padding: 40px 20px 90px;
}

.travel-stats .glass-container {
  max-width: 1350px;
}

.travel-stats h2 {
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;

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

  gap: 30px;

  margin-top: 60px;
}

.stat-card {
  background: white;

  border-radius: 25px;

  padding: 40px 25px;

  text-align: center;

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

  transition: 0.35s;
}

.stat-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.stat-number {
  display: block;

  font-size: 54px;

  font-weight: 800;

  color: rgb(241, 130, 173);

  margin-bottom: 15px;
}

.stat-label {
  color: #666;

  line-height: 1.6;
}

/*==================================================
            POURQUOI CE SITE
==================================================*/

.about-site {
  padding: 40px 20px 90px;
}

.about-site .glass-container {
  max-width: 1150px;
}

.about-site h2 {
  margin-bottom: 35px;
}

.about-site p {
  color: #555;

  line-height: 1.9;

  text-align: justify;

  margin-bottom: 22px;
}

.about-site p:last-child {
  margin-bottom: 0;
}

/*==================================================
                    CTA
==================================================*/

.cta-section {
  padding: 40px 20px 100px;
}

.cta-section .glass-container {
  max-width: 1100px;

  text-align: center;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;

  margin: 0 auto 40px;

  color: #666;

  line-height: 1.8;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 20px;

  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;

  justify-content: center;

  align-items: center;

  padding: 16px 36px;

  border-radius: 50px;

  background: rgb(241, 130, 173);

  color: white;

  font-weight: 600;

  transition: 0.35s;
}

.cta-button:hover {
  transform: translateY(-3px);

  background: rgb(233, 105, 156);

  box-shadow: 0 12px 30px rgba(241, 130, 173, 0.35);
}

.cta-button.secondary {
  background: #333;
}

.cta-button.secondary:hover {
  background: #222;
}
/*==================================================
                    FOOTER
==================================================*/

footer {
  background: #1f1f1f;

  color: #fff;

  padding: 70px 20px 25px;
}

.footer-content {
  max-width: 1350px;

  margin: auto;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr;

  gap: 60px;
}

.footer-logo h3 {
  font-family: "Archivo Black", sans-serif;

  font-size: 34px;

  margin-bottom: 20px;

  color: white;
}

.footer-logo p {
  color: #cfcfcf;

  line-height: 1.8;

  max-width: 420px;
}

.footer-links h4 {
  margin-bottom: 20px;

  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #cfcfcf;

  transition: 0.3s;
}

.footer-links a:hover {
  color: rgb(241, 130, 173);
}

.footer-bottom {
  margin-top: 50px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  text-align: center;
}

.footer-bottom p {
  color: #9d9d9d;

  font-size: 14px;
}

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

@media (max-width: 1000px) {
  .hero {
    height: 85vh;
  }

  .hero-overlay {
    padding: 30px;

    bottom: 5%;
  }

  .hero-overlay h1 {
    font-size: 2.5rem;
  }

  .glass-container {
    padding: 35px;
  }

  .footer-content {
    grid-template-columns: 1fr;

    gap: 40px;

    text-align: center;
  }

  .footer-logo p {
    margin: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;

    z-index: 10001;
  }

  .logo-div > ul {
    position: fixed;

    top: 82px;

    right: -100%;

    width: 290px;

    height: auto;

    padding: 25px;

    border-radius: 25px;

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

    backdrop-filter: blur(18px);

    flex-direction: column;

    align-items: stretch;

    gap: 12px;

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

    transition: 0.35s;
  }

  header.active .logo-div > ul {
    right: 20px;
  }

  .logo-div > ul > li > a {
    text-align: center;
  }

  .sousnav {
    position: static;

    opacity: 1;

    visibility: visible;

    transform: none;

    display: none;

    background: #f7f7f7;

    box-shadow: none;

    padding: 8px;

    margin-top: 10px;
  }

  li.open > .sousnav {
    display: flex;
  }

  .hero-overlay {
    width: 92%;

    padding: 25px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

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

  .hero-button {
    width: 100%;
  }

  .intro-container {
    padding: 35px 25px;
  }

  .intro-container h2,
  .trip-overview h2,
  .destinations-section h2,
  .travel-stats h2,
  .about-site h2,
  .cta-section h2 {
    font-size: 34px;
  }

  .trip-overview-grid,
  .destination-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .destination-card img {
    height: 220px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }

  .about-site p,
  .intro-container p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .logo p {
    font-size: 24px;
  }

  .hero {
    height: 75vh;
  }

  .hero-overlay {
    bottom: 4%;

    padding: 20px;
  }

  .hero-subtitle {
    font-size: 12px;

    letter-spacing: 2px;
  }

  .hero-overlay h1 {
    font-size: 1.8rem;
  }

  .hero-overlay p {
    font-size: 14px;

    line-height: 1.7;
  }

  .glass-container {
    padding: 25px;

    border-radius: 25px;
  }

  h2 {
    font-size: 30px;
  }

  section {
    padding: 70px 15px;
  }
}
/*==================================================
            BOUTON TIMELINE
==================================================*/

.journey-start {
  display: flex;

  justify-content: center;

  margin-top: 50px;
}

.journey-start .cta-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 38px;

  border-radius: 50px;

  background: rgb(241, 130, 173);

  color: white;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s;
}

.journey-start .cta-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(241, 130, 173, 0.35);
}
