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

        :root {
            --gold: #D4AF37;
            --dark: #0a0a0a;
            --dark-blue: #1a1a2e;
            --light: #f5f5f5;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        nav {
    /* Maintient la barre fixe en haut */
    position: fixed;
    top: 0;
    width: 100%;
    /* AJOUT CLÉ 1 : Position et z-index haut pour rester au-dessus de tout */
    z-index: 10000; /* Utilisez une valeur très haute pour être certain */ 
    /* Le reste de vos styles nav... */
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

       .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column; /* ⬅️ Essentiel : les éléments s'empilent sur PC (Titre au-dessus du Menu) */
    align-items: center;
    gap: 1.5rem;
}

.nav-header {
    width: auto; /* ⬅️ Modifié pour ne pas forcer 100% de largeur sur PC */
    display: flex;
    justify-content: center; /* ⬅️ Centré par défaut sur grand écran */
    align-items: center;
}

        .nav-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

        .nav-title:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        }

        .nav-menu {
    display: flex; /* ⬅️ Essentiel : Rend la liste des liens visible sur PC */
    gap: 3rem;
    list-style: none;
    align-items: center;
    transition: all 0.3s;
}
.menu-toggle {
    display: none; /* ⬅️ Masqué sur grand écran */
    /* Le reste est pour le mobile uniquement */
}

        .nav-item {
    position: relative;
}

        .nav-item > a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 0;
}

        .nav-item > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-item > a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .nav-item > a:hover::after {
            width: 100%;
        }

        .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

        .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

        .dropdown a {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--light);
            text-decoration: none;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            font-size: 0.9rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        .menu-toggle {
    display: none; 
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background: var(--gold);
    transition: all 0.3s ease-in-out;
}
        .dropdown a:last-child {
            border-bottom: none;
        }

        .dropdown a:hover {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding-left: 2rem;
            transform: translateX(5px);
        }

        .arrow {
            font-size: 0.7rem;
            margin-left: 0.5rem;
        }

        .hero {
    /* Utiliser min-height au lieu de height pour qu'il s'adapte au contenu si nécessaire */
    min-height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Ajoutez un padding top pour laisser de l'espace à la barre de navigation fixe */
    padding-top: 150px; /* Ajustez cette valeur si votre barre de navigation est plus grande */
    padding-bottom: 50px; /* Un peu d'espace en bas si le contenu dépasse */
}

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
        }

        .hero-slide:nth-child(1) {
            background-image: url('/slide_1.png')
        }

        .hero-slide:nth-child(2) {
            background-image: url('/slide_2.png')
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero-edition {
            font-size: 1.2rem;
            color: var(--gold);
            letter-spacing: 4px;
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .hero-title {
            font-family: 'Cinzel', serif;
            font-size: 7rem;
            font-weight: 900;
            color: var(--gold);
            letter-spacing: 8px;
            margin-bottom: 2rem;
            text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
            line-height: 1;
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--light);
            font-style: italic;
            margin-bottom: 1rem;
        }

        .hero-date {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 3rem;
            letter-spacing: 2px;
        }

        .hero-btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--gold);
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            letter-spacing: 2px;
            transition: all 0.3s;
        }

        .hero-btn:hover {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
            transform: scale(1.05);
        }

        section {
            padding: 6rem 3rem;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 1rem;
            letter-spacing: 3px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.7);
            font-style: italic;
        }

        .intro-section {
            background: var(--dark-blue);
            text-align: center;
        }

        .intro-text {
            max-width: 1000px;
            margin: 0 auto 2rem;
            font-size: 1.3rem;
            line-height: 2;
            color: rgba(255,255,255,0.9);
        }

        .intro-highlight {
            color: var(--gold);
            font-weight: 600;
        }

        .programme-section {
            background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)),
                        url('')
        }

        .timeline {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gold);
        }

        .timeline-item {
            margin-bottom: 4rem;
            position: relative;
        }

        .timeline-content {
            width: 45%;
            padding: 2.5rem;
            background: rgba(26, 26, 46, 0.9);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }

        .timeline-date {
            font-family: 'Cinzel', serif;
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .timeline-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .timeline-time {
            color: rgba(255,255,255,0.6);
            margin-bottom: 1rem;
        }

        .timeline-desc {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }

        .subpage-section {
            background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.9)),
                        url('/dress_code.png');
            min-height: 100vh;
            padding-top: 12rem;
        }

        .histoire-content, .hotels-content, .dresscode-content {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(26, 26, 46, 0.85);
            padding: 4rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .dresscode-content {
            text-align: center;
        }

        .dresscode-content h3 {
            font-family: 'Cinzel', serif;
            color: var(--gold);
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .dresscode-content p {
            font-size: 1.3rem;
            line-height: 2;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
        }

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

        .dresscode-item {
            background: rgba(10, 10, 10, 0.6);
            padding: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .dresscode-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
        }

        .dresscode-title {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .dresscode-text {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .histoire-content h3 {
            font-family: 'Cinzel', serif;
            color: var(--gold);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem 0;
        }

        .histoire-content h3:first-child {
            margin-top: 0;
        }

        .histoire-content p {
            margin-bottom: 1.5rem;
            line-height: 1.9;
            text-align: justify;
            color: rgba(255,255,255,0.9);
        }

        .histoire-content ul {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .histoire-content li {
            margin-bottom: 0.8rem;
            color: rgba(255,255,255,0.85);
        }

        .hotels-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .hotel-card {
            background: rgba(26, 26, 46, 0.85);
            padding: 2.5rem;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s;
        }

        .hotel-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        .hotel-name {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .hotel-stars {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .hotel-info {
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }

        .map-container {
            max-width: 1400px;
            margin: 4rem auto 0;
            height: 500px;
            border: 2px solid rgba(212, 175, 55, 0.3);
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(0.4);
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(10, 10, 10, 0.9));
            padding: 3rem;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 2rem;
        }

        .feature-title {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .feature-text {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }

        .contact-section {
            background: var(--dark-blue);
        }

        .contact-form {
            max-width: 700px;
            margin: 0 auto;
            background: rgba(26, 26, 46, 0.6);
            padding: 4rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            color: var(--gold);
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(10, 10, 10, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--light);
            font-family: 'Montserrat', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: var(--gold);
            color: var(--dark);
            border: none;
            font-weight: 600;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }

        footer {
            background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)),
                        url('/pieddepage.jpg');
            padding: 4rem 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            position: relative;
        }

        .footer-logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 2rem;
            letter-spacing: 3px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin: 2.5rem 0;
            align-items: center;
        }

        .contact-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1rem;
        }

        .contact-item:hover {
            transform: translateY(-3px);
            color: var(--light);
        }

        .footer-info {
            color: rgba(255,255,255,0.5);
            margin-top: 2rem;
            font-size: 0.9rem;
        }

        /* Styles pour Tap's VIP */
        .tapsvip-content {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(26, 26, 46, 0.85);
            padding: 4rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .tapsvip-info {
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid var(--gold);
            padding: 2rem;
            margin-bottom: 3rem;
            border-radius: 5px;
        }

        .tapsvip-info p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .tapsvip-info strong {
            color: var(--gold);
        }

        .tapsvip-warning {
            background: rgba(255, 200, 0, 0.1);
            border-left: 4px solid var(--gold);
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .slots-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: rgba(10, 10, 10, 0.6);
        }

        .slots-table th {
            background: var(--gold);
            color: var(--dark);
            padding: 1rem;
            text-align: left;
            font-weight: 600;
        }

        .slots-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .slots-table tr:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .btn-reserve {
            background: #28a745;
            color: white;
            border: none;
            padding: 0.6rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            border-radius: 3px;
        }

        .btn-reserve:hover {
            background: #218838;
            transform: scale(1.05);
        }

        .reservation-form {
            background: rgba(10, 10, 10, 0.6);
            padding: 3rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
            margin-top: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
        }

        .form-field label {
            color: var(--gold);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-field input, .form-field select {
            padding: 0.8rem;
            background: rgba(10, 10, 10, 0.8);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--light);
            font-family: 'Montserrat', sans-serif;
        }

        .form-field input:focus, .form-field select:focus {
            outline: none;
            border-color: var(--gold);
        }

        .form-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .btn-submit {
            background: #007bff;
            color: white;
            border: none;
            padding: 1rem 3rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: #0056b3;
        }

        .btn-cancel {
            background: #dc3545;
            color: white;
            border: none;
            padding: 1rem 3rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .btn-cancel:hover {
            background: #c82333;
        }

        .btn-back {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
            padding: 0.8rem 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            margin-bottom: 2rem;
        }

        .btn-back:hover {
            background: var(--gold);
            color: var(--dark);
        }

        .hidden {
            display: none;
        }

        /* Styles pour les packs de champagne */
        .packs-section {
            background: rgba(10, 10, 10, 0.6);
            padding: 3rem;
            margin: 3rem 0;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .packs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
            justify-items: center;
            max-width: 1800px;
            margin-left: auto;
            margin-right: auto;
        }

        .pack-card {
            background: rgba(26, 26, 46, 0.8);
            border: 2px solid rgba(212, 175, 55, 0.3);
            padding: 2rem;
            transition: all 0.3s;
            text-align: center;
            width: 100%;
            max-width: 350px;
        }

        .pack-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .pack-number {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pack-description {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            min-height: 100px;
        }

        .pack-price {
            font-size: 1.8rem;
            color: var(--gold);
            font-weight: 700;
            margin-top: 1rem;
        }

        .pack-bottles {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        /* Styles pour la grille de créneaux */
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .slot-block {
            background: rgba(26, 26, 46, 0.8);
            border: 2px solid rgba(212, 175, 55, 0.3);
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            border-radius: 10px;
        }

        .slot-block:hover:not(.slot-full) {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .slot-block.slot-full {
            opacity: 0.5;
            border-color: #666;
        }

        .slot-time {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .slot-availability {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .slot-full .slot-availability {
            color: #dc3545;
            font-weight: 600;
        }

        .btn-select-slot {
            background: #28a745;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            border-radius: 5px;
            font-size: 1rem;
            width: 100%;
        }

        .btn-select-slot:hover {
            background: #218838;
            transform: scale(1.05);
        }

        .btn-select-slot:disabled {
            background: #666;
            cursor: not-allowed;
            transform: none;
        }

        /* Styles pour le carrousel de photos */
        .photo-carousel {
            position: relative;
            max-width: 1200px;
            margin: 4rem auto;
            height: 600px;
            overflow: hidden;
            border: 3px solid var(--gold);
            box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

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

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-indicator.active {
            background: var(--gold);
            transform: scale(1.3);
        }

        @media (max-width: 968px) {

        nav {
        /* ⬅️ RESTAURATION CLÉ : Forcer la barre de navigation à prendre max 100% de la hauteur du viewport */
        max-height: 100vh;
        /* ⬅️ RESTAURATION CLÉ : Permettre le défilement interne quand le menu est ouvert */
        overflow-y: auto; 
    }

            .nav-container {
            min-height: auto;
        padding: 0 1.5rem;
        gap: 0;
    }

   .nav-header {
        width: 100%; /* ⬅️ Forcer 100% sur mobile pour que le hamburger soit à droite */
        justify-content: space-between; 
        padding: 0.5rem 0; 
    }
    
    .nav-title {
        font-size: 1.5rem;
        text-align: left;
    }

    /* Affichage du bouton hamburger */
    .menu-toggle {
        display: block; 
    }

    .nav-menu {
        flex-direction: column; /* ⬅️ Les liens du menu s'empilent sur mobile */
        align-items: flex-start;
        width: 100%;
        gap: 0;
        display: none; /* ⬅️ Masqué par défaut sur mobile ! */
    }
    /* Affichage du menu principal (ajouté par JavaScript) */
    .nav-menu.active {
        display: flex; 
        padding-top: 0.5rem; 
        padding-bottom: 0.5rem;
    }

    .nav-item {
        width: 100%; /* Les liens prennent toute la largeur */
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item > a {
        padding: 0.8rem 0; /* Augmenter le padding pour cliquer plus facilement */
        display: block;
    }

    /* Gestion des dropdowns pour mobile (statiques et visibles) */
    .dropdown {
        position: static; /* S'étale dans le flux normal */
        opacity: 1; 
        visibility: visible;
        transform: none;
        border: none;
        background: rgba(26, 26, 46, 0.4); /* Un fond léger pour distinguer les sous-menus */
        box-shadow: none;
        width: 100%;
        margin-top: 0;
    }
    
    .dropdown a {
        padding-left: 2.5rem; /* Indentation */
        border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    }

    .dropdown a:hover {
        padding-left: 2.8rem; /* Ajustement de l'effet survol */
    }

    /* Supprimer l'effet de survol (inutile sur tactile) */
    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
    }


            .hero-title {
                font-size: 4rem;
            }
            .nav-menu {
                flex-wrap: wrap;
                gap: 1.5rem;
            }
            .features-grid, .hotels-grid {
                grid-template-columns: 1fr;
            }
            .timeline::before {
                left: 30px;
            }
            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }
            .contact-group {
                flex-direction: column;
                gap: 1.5rem;
            }
    .tapsvip-content {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(26, 26, 46, 0.85);
            padding: 1rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
            .packs-section {
        /* Réduction du padding horizontal et vertical sur tablette */
        padding: 2rem 2rem;
        margin: 2rem 0;
    }

    .packs-grid {
        grid-template-columns: 1fr; /* Force une seule colonne */
        gap: 1.5rem;
    }

    .slots-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .pack-card {
        max-width: 100%; /* S'assure que la carte utilise toute la largeur disponible */
        margin: 0 auto; /* Centre la carte dans la colonne */
    }

    /* Ajustement de la description pour les cartes plus étroites */
    .pack-description {
        min-height: auto; 
        font-size: 1rem;
        word-wrap: break-word; /* Ajout d'une propriété de sécurité */
    }
        
        }

        @media (max-width: 600px) {

            section {
        /* Réduction maximale de l'espace blanc autour de la page */
        padding: 4rem 0.5rem; /* Réduction du padding horizontal à 0.5rem */
    }

    .nav-header {
        padding: 0.2rem 0;
    }
    .nav-title {
        font-size: 1.3rem; 
        letter-spacing: 1px;
    }
    .nav-container {
        /* Permet à l'en-tête (titre + hamburger) de s'afficher sans défilement inutile */
        min-height: auto; 
        max-height: none;
    }

    .packs-section {
        /* Padding et marges réduits au minimum pour les mobiles */
        padding: 1.5rem 1rem; 
        margin: 1.5rem 0;
    }
    
    .pack-number {
        font-size: 1.6rem; /* Réduction de la taille du titre du pack */
    }

    .pack-description {
        line-height: 1.6;
        min-height: auto; /* Permet à la hauteur de s'adapter dynamiquement */
    }
    
    .pack-card {
        padding: 1.5rem; /* Réduction du padding interne de la carte */
    }
    /* Force les boutons à s'empiler sur toute la largeur */
    .hero-btn {
        display: block; 
        width: 100%;
        max-width: 350px; 
        margin: 10px auto; /* Centre et ajoute une petite marge */
        padding: 1rem 1.5rem; 
        font-size: 0.9rem;
        box-sizing: border-box; 
    }
    
    /* Supprimer l'espace entre les <br><br> de votre HTML pour un affichage plus propre */
    .hero-content br {
        display: none;
    }
    
    /* La marge automatique du 2ème bouton prend le relais des <br> */
    .hero-content a.hero-btn:nth-of-type(2) {
        margin-top: 10px; /* Espace entre les deux boutons */
    }
    
    .packs-grid, .slots-grid {
        grid-template-columns: 1fr;
        gap: 1rem; /* Réduction de l'espace entre les éléments de la grille */
    }
    
    /* Cartes des Packs (Lisibilité) */
    .pack-card {
        padding: 1rem; /* Réduction du padding à l'intérieur de la carte */
        max-width: 100%;
    }

    .pack-number {
        font-size: 1.5rem;
    }
    
    /* Description des Packs (pour éviter le texte coupé ou trop de hauteur) */
    .pack-description {
        font-size: 0.9rem; /* Taille de police légèrement réduite pour les contraintes */
        line-height: 1.5; /* Réduction de l'interligne */
        min-height: auto;
    }
    /* Créneaux Horaires (Blocs Sélectionner) */
    .slot-block {
        padding: 1.5rem;
    }
    
    .slot-time {
        font-size: 1.5rem;
    }


    /* Formulaire de Réservation */
    .reservation-form {
        padding: 1rem;
    }

    /* Boutons de soumission du formulaire */
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-submit, .btn-cancel {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
    }

    .tapsvip-info, .tapsvip-warning {
        padding: 1rem; 
        font-size: 0.95rem;
    }
    .tapsvip-content {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(26, 26, 46, 0.85);
            padding: 1rem;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
    
}