        @font-face {
            font-family: 'Catchy Mager';
            src: url('font/Catchy_Mager_Regular.ttf') format('truetype');
        }
        @font-face {
            font-family: 'Questrial';
            src: url('font/Questrial_Regular.ttf') format('truetype');
        }

        body, html {
            margin: 0;
            padding: 0;
            width: 100%;
            font-family: 'Questrial';
            background-color: #847464;
            color: white;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h3, h2, h1 {
            font-family: 'Catchy Mager';
            text-transform: uppercase;
            font-weight: 400;
        }
        .no-scroll {
            overflow: hidden !important;
            height: 100vh !important;
        }

        /* --- NAVIGATION --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            height: 65px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            background-color: #2c2c2c; 
            border-bottom: 1px solid white;
            z-index: 2000;

        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 35px;
            margin: 0;
            padding: 10px 40px;
            border-radius: 3px;
            align-items: center;
            text-align: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative; /* Indispensable pour positionner le trait par rapport au lien */
            padding-bottom: 5px; /* Espace pour le trait */
        }

        /* --- EFFET DE BRILLANCE TEXTE --- */
        .nav-links a:hover {
            filter: brightness(1.8); /* Augmenté de 1.5 à 1.8 */
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 
                         0 0 15px rgba(255, 255, 255, 0.5), 
                         0 0 25px rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        /* --- LE TRAIT ANIMÉ (Uniquement pour les liens de texte) --- */
        /* On utilise :not(:first-child) pour ignorer le premier <li> qui contient le logo */
        .nav-links li:not(:first-child) a {
            position: relative;
            display: inline-block;
        }

        .nav-links li:not(:first-child) a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ffffff, transparent);
            transition: width 0.4s ease, left 0.4s ease;
            transform: translateX(-50%);
        }

        .nav-links li:not(:first-child) a:hover::after {
            width: 100%;
        }

        /* --- EFFET SPÉCIFIQUE AU LOGO --- */
        .nav-logo {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease, filter 0.3s ease;
            vertical-align: middle; /* Aligne mieux le logo avec le texte */
        }

        .nav-logo:hover {
            filter: brightness(1.5) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
        }

        .nav-logo:hover {
            transform: scale(1.05); /* Petit zoom pour le dynamisme */
            /* Combinaison de brightness et d'un drop-shadow puissant */
            filter: brightness(1.6) drop-shadow(0 0 12px rgba(255, 255, 255, 0.7)) 
                                    drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
            transition: all 0.4s ease;
        }

        /* On s'assure que le logo n'a pas de trait (sécurité) */
        .nav-logo::after {
            display: none !important;
        }

        /* --- BURGER MENU --- */
        .burger {
            display: none;
            cursor: pointer;
            z-index: 2001;
        }

        .burger div {
            width: 30px;
            height: 2px;
            background-color: white;
            margin: 6px 0;
            transition: 0.3s;
        }

        @media screen and (max-width: 768px) {
            nav { justify-content: flex-end; padding: 15px 20px; background-color: rgba(20, 20, 20, 0); border: none;}
            .burger { display: block; }
            .nav-links {
                position: fixed;
                top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
                background-color: rgba(20, 20, 20, 0.95);
		display: flex;
                flex-direction: column;
                justify-content: center;
		align-items: center;
		padding: 0;
		margin: 0;
                transform: translateX(100%);
                transition: transform 0.5s ease;
                gap: 30px;
            }
            .nav-links li {
		width: 100%;
		text-align: center;
            }
            .nav-links.active { transform: translateX(0); }
            .burger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
            .burger.toggle .line2 { opacity: 0; }
            .burger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
        }








        /* --- GRILLE ACCÈS --- */
        .access-section { padding: 100px 20px; }
        .container-grid { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }

        .access-item { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            align-items: stretch; 
            overflow: hidden;
            min-height: 450px;
        }

        /* Inversion pour le bloc terrestre sur Desktop */
        .access-item.reverse {
            direction: rtl; 
        }

        .access-text {
            background-color: #f4f1ed;
            color: #181615;
            padding: 80px;
            display: flex;
            justify-content: center; /* Centre le bloc info-content horizontalement */
            align-items: center;     /* Centre le bloc info-content verticalement */
            position: relative;
            direction: ltr; /* Remet le texte dans le bon sens pour le bloc inversé */
        }

        /* Bordure intérieure noire */
        .access-text::before {
            content: "";
            position: absolute;
            top: 40px;
            bottom: 40px;
            left: 40px;
            right: 40px;
            border: 1px solid #181615;
            pointer-events: none;
        }

        .info-content {
            position: relative;
            z-index: 1;
            max-width: 450px;
            text-align: center;
        }
        .info-content li {
            text-align: left;
        }

        .info-content h3 {
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        /* Liste à points */
        .amenities-list {
            list-style: none;
            padding: 0;
            margin: 25px 0 0 0;
        }

        .amenities-list li {
            margin-bottom: 12px;
            font-size: 0.95rem;
            line-height: 1.4;
            display: flex;
            align-items: flex-start;
        }

        .amenities-list li::before {
            content: "•";
            color: #181615;
            font-weight: bold;
            display: inline-block;
            width: 20px;
            flex-shrink: 0;
        }

        .access-image img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            display: block; 
        }

        @media screen and (max-width: 768px) {
            .access-item, .access-item.reverse { 
                display: flex;
                flex-direction: column-reverse; /* Image au dessus du texte sur mobile */
                direction: ltr;
            }
            .access-text { padding: 60px 40px; }
            .access-text::before { top: 20px; bottom: 20px; left: 20px; right: 20px; }
        }








        /* --- FOOTER (2 colonnes) --- */
        .site-footer {
            background-color: #2c2c2c;
            color: #f8f6f3;
            padding: 80px 20px 40px;
            margin-top: 50px;
        }

        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 60px;
            text-align: center;
        }

        .footer-logo {
            height: 60px;
        }

        .site-footer h4 {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.95rem;
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
            display: inline-block;
            width: 80%;
        }

        /* Réseaux sociaux sous le slogan */
        .social-footer {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .social-img {
            height: 35px; /* Taille augmentée comme demandé */
            width: auto;
            transition: opacity 0.3s;
        }

        .social-img:hover { opacity: 0.7; }

        /* Bloc Contact aligné */
        .contact-wrapper {
            display: inline-block;
            text-align: left;
        }

        .footer-info p {
            margin: 15px 0;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }

        .footer-info img {
            height: 18px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .site-footer a {
            color: inherit;
            text-decoration: none;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.8rem;
            opacity: 0.6;
        }

        @media screen and (max-width: 768px) {
            .footer-container { grid-template-columns: 1fr; gap: 60px; }
            .site-footer h4 { border-bottom: none; width: 100%; }
        }


        /* On cible le conteneur de chaque ligne */
        .contact-wrapper p {
            margin: 15px 0;
            font-size: 0.9rem;
            display: flex; /* Flexbox pour les lignes sans lien */
            align-items: center;
        }

        /* On force les liens à se comporter comme des conteneurs Flex aussi */
        .contact-wrapper p a {
            display: inline-flex;
            align-items: center;
            color: inherit;
            text-decoration: none;
        }

        .contact-wrapper img {
            height: 18px; /* Ajustez selon vos icônes */
            width: auto;
            margin-right: 15px;
            flex-shrink: 0;
            /* Petit ajustement visuel si nécessaire */
            display: block; 
        }