.elementor-77 .elementor-element.elementor-element-9d3726a{--display:flex;--margin-top:-42px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-77 .elementor-element.elementor-element-f1db038{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-f1db038 */:root {
    --sahara-dark: #1A1612;
    --gold-vibrant: #E6BE41;
    --white: #FFFFFF;
    --header-height: 110px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--sahara-dark);
    border-bottom: 1px solid rgba(230, 190, 65, 0.3);
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO --- */
.header-logo img {
    height: 85px; /* S'adapte au header de 110px */
    width: auto;
    object-fit: contain;
    display: block;
}

/* --- NAV DESKTOP --- */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--gold-vibrant);
}

.btn-reserve {
    background: var(--gold-vibrant);
    color: #000 !important;
    padding: 12px 24px;
    border-radius: 2px;
}

/* --- MOBILE TOGGLE (Hidden on Desktop) --- */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--gold-vibrant);
    transition: 0.3s;
}

/* --- MEDIA QUERIES (TABLETTE & MOBILE) --- */

@media (max-width: 1024px) {
    .header-container { padding: 0 20px; }
    .nav-links { gap: 15px; }
    .nav-link { font-size: 0.75rem; }
    .header-logo img { height: 70px; }
    --header-height: 90px;
}

@media (max-width: 850px) {
    .mobile-toggle { display: flex; }

    /* Menu qui coulisse du haut ou de la droite */
    .header-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--sahara-dark);
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease-in-out;
        border-bottom: 1px solid rgba(230, 190, 65, 0.2);
    }

    .header-nav.active {
        height: 350px; /* Ajustez selon le nombre de liens */
    }

    .nav-links {
        flex-direction: column;
        padding: 40px 0;
        gap: 25px;
    }

    .nav-link { font-size: 1rem; }

    /* Animation du Hamburger en X */
    .mobile-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
    .mobile-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 480px) {
    --header-height: 80px;
    .header-logo img { height: 60px; }
}/* End custom CSS */