/* ------------------ */
/* VARIABLES SIMPLES   */
/* ------------------ */

:root {
            --primary-color: #00e6e6;
            --secondary-color: #88ff88;
            --accent-color: #004d4d;
            --white: #ffffff;
            --text-light: rgba(255, 255, 255, 0.9);
            --glass-bg: rgba(0, 0, 0, 0.7);
            --transition: 0.3s ease;
        }

        /* STYLES GLOBAUX */
        html {
            scroll-behavior: smooth;
        }

        body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, #a7d854 0%, #6a8c1e 40%, #2c3a05 100%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: center;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* couche de bruit / grain au-dessus */
.bg-texture {
    pointer-events: none;
    position: fixed;
    inset: 0;
    opacity: 0.25; /* un peu plus visible */
    mix-blend-mode: soft-light;
    z-index: 0;
}




        .container {
			text-align: center;
            padding: 2rem;
            max-width: 900px;
            margin: auto;
            margin-top: 120px;
        }
		
		.back-to-top {
		  position: fixed;
		  bottom: 20px;
		  right: 20px;
		  background-color: #00e6e6;
		  color: #000;
		  padding: 0.6rem 0.10rem;
		  border-radius: 50%;
		  text-decoration: none;
		  font-weight: bold;
		  font-size: 1.4rem;
		  display: none;
		  z-index: 999;
		  transition: transform 0.3s ease, background-color 0.3s ease;
		  box-shadow: 0 0 10px rgba(0, 230, 230, 0.5);
		}
		.back-to-top:hover {
		  transform: scale(1.2);
		  background-color: #00cccc;
		}


/* ---------------------- NAVIGATION BAR ---------------------- */
.menu-container {
  position: relative;
  z-index: 1000;
}

/* ----- CHECKBOX HAMBURGER ----- */
.hamburger-checkbox {
  position: fixed;
  top: 2rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  opacity: 0;
  cursor: pointer;
  z-index: 2001;
}

/* ----- ICÔNE HAMBURGER ----- */
.hamburger-icon {
  position: fixed;
  top: 2rem;
  left: 1rem;
  z-index: 2000;
  cursor: pointer;
  padding: 8px;
  border-radius: 12px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.hamburger-icon:hover {
  background: rgba(0, 230, 230, 0.15);
  border-color: rgba(0, 230, 230, 0.3);
  transform: translateY(-1px);
}

.hamburger-icon span {
  height: 4px;
  width: 32px;
  background-color: var(--white);
  display: block;
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ----- ANIMATION CROIX ----- */
.hamburger-checkbox:checked ~ .hamburger-icon span:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger-checkbox:checked ~ .hamburger-icon span:nth-of-type(2) {
  opacity: 0;
}
.hamburger-checkbox:checked ~ .hamburger-icon span:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ---------------------- MENU PANE (MOBILE) ---------------------- */
.menu-pane {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 1rem;
  left: -100%;
  width: 70%;
  max-width: 260px;
  height: calc(100% - 2rem);
  transition: var(--transition);
  padding-top: 5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border-radius: 35px;
}

/* OUVERTURE MENU */
.hamburger-checkbox:checked ~ .menu-pane {
  left: 1rem;
}

/* LIENS DU MENU */
.menu-pane nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-pane nav ul li {
  margin: 1rem 0;
}

.menu-pane nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

/* HOVER */
.menu-pane nav ul li a:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* LIEN ACTIF */
.menu-pane nav ul li a.current {
  background: var(--primary-color);
  color: var(--accent-color);
  font-weight: 600;
  box-shadow: 0 0 10px var(--primary-color);
}

/* ---------------------- SOUS-MENU ---------------------- */
/* Sous-menu */
.menu-links li.has-submenu {
  position: relative;
}

/* Sous-menu desktop */
.menu-links li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(12px);
  padding: 0; /* plus de padding global */
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  flex-direction: column;
  min-width: 180px;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Liens du sous-menu */
.menu-links li.has-submenu .submenu li a {
  display: block;
  padding: 0.35rem 1rem; 
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0; 
  background: rgba(255,255,255,0.05);
  color: var(--white);
  transition: all 0.3s ease;
  margin: 0; 
}

/* Hover du sous-menu */
.menu-links li.has-submenu .submenu li a:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  transform: translateX(3px) scale(1.02);
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* Desktop : afficher au hover */
@media (min-width: 992px) {
  .menu-links li.has-submenu:hover .submenu {
    display: flex;
    animation: submenuFade 0.3s ease forwards;
  }
}

/* Animation apparition */
@keyframes submenuFade {
  0% {opacity:0; transform: translateY(-10px);}
  100% {opacity:1; transform: translateY(0);}
}

/* Sous-menu mobile clic */
.menu-links li.has-submenu.open .submenu {
  display: flex;
  flex-direction: column;
}

/* Mobile :  */
@media (max-width: 991px) {
  .menu-links li.has-submenu .submenu li a {
    padding: 0.35rem 1rem;
    margin: 0;
  }
}


/* ----- FLÈCHE ----- */
/* Flèche uniquement pour le menu burger (mobile) */
.menu-links li.has-submenu .submenu-arrow {
  display: inline-block; /
  margin-left: 0.5rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Flèche quand menu ouvert (mobile) */
.menu-links li.has-submenu.open .submenu-arrow {
  transform: rotate(180deg);
}

/* Desktop : cacher la flèche */
@media (min-width: 992px) {
  .menu-links li.has-submenu .submenu-arrow {
    display: none;
  }
}


/* ---------- DESKTOP : barre horizontale classique ---------- */
@media (min-width: 992px) {
  /* masquer le burger sur desktop */
  .hamburger-checkbox,
  .hamburger-icon {
    display: none;
  }

  
  .menu-pane {
    all: unset;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;

    display: flex;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 35px;
    padding: 0.6rem 2rem; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.45);

    width: 80%;   
    max-width: 1100px; 


}





  /* UL du menu */
  .menu-pane nav ul {
    display: flex;
    gap: 1.5rem; 
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
  }

  /* liens */
  .menu-pane nav ul li a {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.4rem 1.2rem;
    border-radius: 25px; /* pills arrondies */
    background: transparent;
    transition: all var(--transition);
  }

  /* hover : même style que le menu burger */
  .menu-pane nav ul li a:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    transform: translateY(-2px);
  }

  /* lien actif */
  .menu-pane nav ul li a.current {
    background: var(--primary-color);
    color: var(--accent-color);
    font-weight: 600;
    box-shadow: 0 0 12px var(--primary-color);
  }

  /* sous-menu */
  .menu-links li.has-submenu {
    position: relative;
  }
  .menu-links li.has-submenu .submenu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: rgba(20,20,20,0.95);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    min-width: 180px;
    z-index: 1500;
  }
  .menu-links li.has-submenu:hover .submenu {
    display: flex;
    flex-direction: column;
    animation: submenuFade 0.25s ease forwards;
  }
  .menu-links li.has-submenu .submenu li a {
    padding: 0.45rem 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
    background: transparent;
    color: var(--white);
    margin: 0.15rem 0;
    transition: all 0.3s ease;
  }
  .menu-links li.has-submenu .submenu li a:hover {
    background: var(--primary-color);
    color: var(--accent-color);
  }

  @keyframes submenuFade {
    0% { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
  }
}







/* ------------------ */
/* TITRES AMÉLIORÉS   */
/* ------------------ */

h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
   text-shadow: 2px 2px 12px rgba(0, 0, 0, 1.2);
  font-family: 'Playfair Display', serif;
  text-align: center;
  line-height: 1.2;
  position: relative; /* nécessaire pour le ::after */
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;       /* Décalage sous le texte */
  transform: translateX(-50%) scaleX(0);
  width: 70%;           /* Largeur de la ligne */
  height: 4px;          /* Épaisseur du soulignement */
  background: var(--primary-color); 
  border-radius: 2px;
  transition: transform 0.3s ease;
}

h1:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

h1:hover::after {
  transform: translateX(-50%) scaleX(1); /* Anime le soulignement */
}





h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: capitalize;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  border-left: 4px solid var(--primary-color);
  padding-left: 0.7rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

h4 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  font-family: 'Playfair Display', serif;
  text-align: center;
}


/* ------------------ */
/* BOÎTES DE CONTENU  */
/* ------------------ */

.content-box {
  background: var(--glass-bg);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.content-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 230, 230, 0.15);
}

.content-box p,
.content-box ul {
  margin: 1rem 0;
}

.content-box ul {
  padding-left: 1.5rem;
  text-align: left;
}

.content-box li {
  margin-bottom: 0.5rem;
}

.price {
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
  margin-top: 1.5rem;
}

/* ------------------ */
/* BOUTONS AMÉLIORÉS  */
/* ------------------ */

.reservation-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
  transition: all var(--transition);
}

.reservation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* Mobile : supprime le hover, réduit padding */
@media (max-width: 768px) {
    .reservation-btn {
        padding: 14px 20px; /* un peu plus large pour le touch */
        font-size: clamp(1rem, 5vw, 1.2rem);
        min-width: 260px;
        margin: 24px auto 0;
    }
    
    .reservation-btn:active { /* effet au clic/touch */
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .reservation-btn {
        padding: 16px 18px;
        min-width: 240px;
        font-size: 1rem;
    }
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00e6e6, #00bcbc);
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 230, 230, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 230, 230, 0.6);
  background: linear-gradient(135deg, #00ffff, #00c8c8);
}

/* ------------------ */
/* IMAGES CORRIGÉES   */
/* ------------------ */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.gallery img {
  width: 100%;
  height: 220px; 
  object-fit: cover; 
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.manawae-img {
  width: 100%;
  max-width: 400px; 
  height: auto; 
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto; 
}

.manawae-img:hover {
  transform: scale(1.02);
}





/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox.hidden {
  display: none;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  transition: all var(--transition);
}

.close:hover {
  transform: scale(1.1);
  color: #ff6b6b;
}

/* Images section */
.images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
}

.images img {
  width: 100%;
  max-width: 250px;  
  height: 200px;     
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.images img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 230, 230, 0.3);
}



/* ------------------ */
/* VIDÉOS CORRIGÉES   */
/* ------------------ */

:root {
  --primary-color: #00e6e6;
  --accent-color: #004d4d;
  --transition: 0.3s ease;
}


/* ----------- Grille en pyramide ----------- */
.videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  justify-items: center;
}

.video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-wrapper.last-video {
  grid-column: 1 / -1;
}

/* ----------- Bloc YouTube ----------- */
.youtube-video {
  position: relative;
  width: 100%;
  max-width: 220px; /* 👈 taille réduite */
  aspect-ratio: 9 / 16; /* Shorts */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(0, 230, 230, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.youtube-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.youtube-video:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 35px rgba(0, 230, 230, 0.35);
}

/* ----------- Légende ----------- */
.video-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}


/* ----------- Bouton "voir plus" ----------- */
.video-button {
  margin-top: 2rem;
  text-align: center;
}

.video-button a {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.video-button a:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 230, 230, 0.4);
}

/* ----------- Responsive ----------- */
@media (max-width: 768px) {
  .videos {
    grid-template-columns: 1fr;
  }
  .youtube-video {
    max-width: 250px;
  }
  .video-intro {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .youtube-video {
    max-width: 200px;
  }
  .video-intro {
    max-width: 200px;
    font-size: 0.9rem;
  }
}


/* ---------------- Bloc vidéos Nomad (isolé) ---------------- */
#nomad-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  justify-items: center;
}

#nomad-videos .nomad-video-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#nomad-videos .nomad-video-item.last-video {
  grid-column: 1 / -1; /* place la dernière vidéo au centre */
}

/* ---- Vidéos ---- */
#nomad-videos .nomad-video-item video {
  width: 100%;
  max-width: 220px; /* largeur réduite */
  aspect-ratio: 9 / 16; /* format vertical type short */
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(0, 230, 230, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

#nomad-videos .nomad-video-item video:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 35px rgba(0, 230, 230, 0.35);
}

/* ---- Caption ---- */
#nomad-videos .nomad-video-caption {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

/* ---- Bouton "Voir plus" ---- */
#nomad-videos-button {
  margin-top: 2rem;
  text-align: center;
}

#nomad-videos-button a {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#nomad-videos-button a:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 230, 230, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  #nomad-videos {
    grid-template-columns: 1fr;
  }
  #nomad-videos .nomad-video-item video {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  #nomad-videos .nomad-video-item video {
    max-width: 200px;
  }
  #nomad-videos .nomad-video-caption {
    font-size: 0.9rem;
  }
}



/* Vidéo promotionnelle */
.promo-video {
  display: block;
  margin: 2rem auto; /* centrée */
  width: 100%; 
  max-width: 500px; /* limite largeur max */
  height: auto; /* conserve les proportions */
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 230, 230, 0.2);
  background: rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-video:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 230, 230, 0.3);
}

/* Responsive tablettes */
@media (max-width: 992px) {
  .promo-video {
    max-width: 700px;
    border-radius: 18px;
  }
}

/* Responsive mobiles */
@media (max-width: 768px) {
  .promo-video {
    max-width: 100%;
    border-radius: 15px;
    margin: 1.5rem auto;
  }
}

/* Très petits écrans */
@media (max-width: 480px) {
  .promo-video {
    border-radius: 12px;
    margin: 1rem auto;
  }
}


/* ----------- Vidéo responsive verticale ----------- */
.responsive-video.vertical {
  position: relative;
  width: 100%;
  max-width: 200px;      /* taille max adaptée pour le site */
  height: auto;
  margin: 1.5rem auto;   /* centré horizontalement avec marge */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.2);
}

.responsive-video.vertical video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;  /* format vertical 9:16 pour les shorts */
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.responsive-video.vertical video:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 230, 230, 0.35);
}

/* ----------- Titre vidéo ----------- */
.video-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* ----------- Responsive ----------- */
@media (max-width: 768px) {
  .responsive-video.vertical {
    max-width: 300px;
  }

  .video-intro {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .responsive-video.vertical {
    max-width: 220px;
  }

  .video-intro {
    font-size: 0.9rem;
  }
}




/* ------------------ */
/* SÉPARATEURS        */
/* ------------------ */

#separator, #separator2 {
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  margin: 3rem auto;
  width: 80%;
  border-radius: 5px;
  opacity: 0.8;
}

/* ------------------ */
/* LINK LIST        */
/* ------------------ */

.styled-list {
    
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 10px 40px; 
    max-width: 600px; 
}

.styled-list li {
    margin: 0; 
}

.styled-list a {
    display: block;
    background: black;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}

.styled-list a:hover {
    background: #00e6e6;
    color: black;
}


/* ----------- Listes centrées et stylées pour la section Manawae ----------- */
#Manawae ul {
  list-style: disc inside;             
  padding: 0;
  margin: 1rem 0;
  text-align: center;           
  display: flex;                
  flex-direction: column;       
  gap: 0.6rem;                  
}

#Manawae ul li {
  display: inline-block;        
  background: rgba(0, 230, 230, 0.1); 
  color: #fff;                 
  padding: 0.5rem 1rem;        
  border-radius: 12px;          
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

#Manawae ul li {
  display: inline-block;        
  background: rgba(0, 230, 230, 0.1); 
  color: #fff;                 
  padding: 0.5rem 1rem;         
  border-radius: 12px;         
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}




/* ------------------ */
/* BOUTON RETOUR HAUT */
/* ------------------ */

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: #000;
  padding: 0.6rem 0.8rem;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  display: none;
  z-index: 999;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(0, 230, 230, 0.4);
}

.back-to-top:hover {
  transform: scale(1.1);
  background: #00cccc;
}

/* ------------------ */
/* RÉSERVATION        */
/* ------------------ */

.reservation-container {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  padding: 2rem 3rem;
  border-radius: 15px;
  max-width: 400px;
  margin: 3rem auto;
  box-shadow: 0 10px 25px rgba(0, 230, 230, 0.3);
  color: #000;
  text-align: center;
  transition: all var(--transition);
}

.reservation-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 230, 230, 0.4);
}

.reservation-container h2 {
  margin-bottom: 0.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reservation-container p {
  margin-bottom: 1.8rem;
  color: #e0f0f0;
  font-size: 1rem;
}

.btn-reserve {
  display: inline-block;
  background: #000;
  color: var(--primary-color);
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all var(--transition);
  border: 2px solid var(--primary-color);
}

.btn-reserve:hover {
  background: var(--primary-color);
  color: #000;
  transform: translateY(-2px);
}

/* ------------------ */
/* CONTACT            */
/* ------------------ */

.contact {
  background: rgba(40, 40, 40, 0.9);
  color: var(--primary-color);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 400px;
  margin: 2rem auto;
  box-shadow: 0 6px 20px rgba(0, 230, 230, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 230, 230, 0.3);
  animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact p {
  margin: 0.6rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ------------------ */
/* CONTACT (telephone)          */
/* ------------------ */

.footer-contact p {
  margin: 0.6rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: start;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--secondary-color);
  transform: translateX(4px);
}

.footer-contact i {
  font-size: 1.3rem;
  min-width: 22px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-contact a:hover i {
  color: var(--secondary-color);
  transform: scale(1.1);
}

/* Style pour les lignes du staff */
.contact-line {
  margin: 0.6rem 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center; 
  text-align: center;      
}

.contact-line a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-line a:hover {
  color: var(--secondary-color);
  transform: translateX(4px);
}

.contact-line i {
  font-size: 1.3rem;
  min-width: 22px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.contact-line a:hover i {
  color: var(--secondary-color);
  transform: scale(1.1);
}




/* ------------------ */
/* FOOTER             */
/* ------------------ */

  .site-footer {
            background: rgba(15, 15, 15, 0.95);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 20px 20px;
            border-top: 1px solid rgba(0, 230, 230, 0.2);
            backdrop-filter: blur(20px);
            margin-top: auto;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        /* Logo et description */
        .footer-logo {
            display: flex;
            flex-direction: column;
        }

        .footer-logo h2 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.8rem;
            font-weight: 600;
        }

        .footer-logo p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
            max-width: 320px;
        }

        /* Section réseaux sociaux dans logo */
        .social-section {
            margin-top: auto;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(0, 230, 230, 0.2);
            border-radius: 50%;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            text-decoration: none;
            transition: all var(--transition);
        }

        .social-icons a:hover {
            background: var(--primary-color);
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 230, 230, 0.4);
            border-color: var(--primary-color);
        }

        /* Section Navigation */
        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-section h3 {
            color: var(--primary-color);
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all var(--transition);
            padding: 8px 0;
            position: relative;
            font-size: 0.9rem;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 2px;
            left: 0;
            background: var(--primary-color);
            transition: width var(--transition);
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
		
		.footer-links a.current {
    color: var(--primary-color);
    transform: translateX(5px);
    font-weight: bold;
    padding-left: 6px;
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 4px;
}


        /* Section Contact */
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-contact p {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-contact i {
            color: var(--primary-color);
            width: 18px;
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        /* Classe pour éléments copiables */
        .copyable {
            cursor: pointer;
            transition: all var(--transition);
            padding: 8px;
            border-radius: 8px;
            margin: 0 !important;
        }

        .copyable:hover {
            background: rgba(0, 230, 230, 0.1);
            color: var(--primary-color);
            transform: translateX(3px);
        }

        /* Lien carte */
        .map-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px;
            border-radius: 8px;
        }

        .map-link:hover {
            color: var(--primary-color);
            transform: translateX(3px);
            background: rgba(0, 230, 230, 0.05);
        }

        /* Footer bottom */
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(0, 230, 230, 0.2);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom p {
            margin: 8px 0;
        }

        .footer-bottom a {
            transition: color var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--primary-color) !important;
        }

        /* RESPONSIVE DESIGN */

        /* Large desktop (1200px+) */
        @media (min-width: 1200px) {
            .footer-container {
                grid-template-columns: 2.5fr 1fr 1.2fr;
                gap: 60px;
            }
        }

        /* Desktop/Tablet (768px - 1199px) */
        @media (min-width: 768px) and (max-width: 1199px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .footer-logo {
                grid-column: 1 / -1;
                text-align: center;
                margin-bottom: 20px;
            }
            
            .footer-logo p {
                max-width: 500px;
                margin: 0 auto 30px;
            }
            
            .social-icons {
                justify-content: center;
            }

            .footer-section,
            .footer-contact {
                text-align: center;
                align-items: center;
            }

            .footer-links {
                align-items: center;
            }

            .footer-contact {
                align-items: center;
            }
        }

        /* Mobile (jusqu'à 767px) */
        @media (max-width: 767px) {
            .site-footer {
                padding: 40px 15px 20px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: center;
            }
            
            .footer-logo {
                align-items: center;
            }
            
            .footer-logo h2 {
                font-size: 1.5rem;
            }
            
            .footer-logo p {
                max-width: none;
                margin: 0 auto 25px;
            }
            
            .social-icons {
                justify-content: center;
            }

            .footer-section {
                align-items: center;
            }

            .footer-section h3 {
                margin-bottom: 15px;
            }

            .footer-links {
                align-items: center;
            }
            
            .footer-contact {
                align-items: center;
            }
            
            .footer-contact p {
                font-size: 0.85rem;
                justify-content: center;
            }
            
            .footer-contact i {
                width: 16px;
                font-size: 0.9rem;
            }
            
            .footer-bottom {
                margin-top: 30px;
                padding-top: 20px;
            }
        }

        /* Très petit mobile */
        @media (max-width: 480px) {
            .site-footer {
                padding: 30px 10px 15px;
            }
            
            .footer-container {
                gap: 25px;
            }
            
            .footer-logo h2 {
                font-size: 1.3rem;
            }
            
            .footer-contact p {
                font-size: 0.8rem;
            }
            
            .footer-contact i {
                width: 14px;
                font-size: 0.85rem;
            }
            
            .social-icons {
                gap: 10px;
            }
            
            .social-icons a {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }

            .footer-bottom a {
                margin: 0 5px !important;
                display: inline-block;
            }
        }
		
		
		  @media (min-width: 1200px) {
			.footer-container {
				grid-template-columns: 1.8fr 1fr 1fr; 
				gap: 60px;
			}
		}


		  .footer-logo p {
			max-width: 600px; 
			margin: 0 auto 25px;
		  }

		  .social-icons {
			justify-content: center;
		  }
		}

/* ------------------ */
/* RESPONSIVE         */
/* ------------------ */

@media (max-width: 768px) {
  #navbar {
    top: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    flex-wrap: wrap;
  }
  
  #navbar a {
    margin: 8px 12px;
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .images {
    gap: 1rem;
  }
  
  .images img {
    max-width: 280px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }
  
  #navbar {
    padding: 10px 15px;
    gap: 5px;
  }
  
  #navbar a {
    margin: 4px 8px;
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .images {
    flex-direction: column;
    align-items: center;
  }
  
  .images img {
    max-width: 100%;
  }
  
  .videos {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ------------------ */
/* UTILITAIRES        */
/* ------------------ */

.fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}