@import url('https://fonts.googleapis.com/css2?family=Krub:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
/* Icône burger */
.burger-icon {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    z-index: 1001;
    color: #5E8C8C;
}

/* Menu burger */
.burger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #f2f2f2;
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Menu actif */
.burger-menu.active {
    right: 0;
}

/* Header du burger */
.burger-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.burger-logo {
    width: 70px;
}

.burger-close {
    font-size: 32px;
    cursor: pointer;
    color: #5E8C8C;
}

/* Liens */
.burger-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.burger-links a {
    font-size: 24px;
    color: #5E8C8C;
}

/* Bouton */
.burger-btn {
    padding: 15px 25px;
    background-color: #5E8C8C;
    color: #fff !important;
    border-radius: 8px;
}

.burger-icon i {
    color: #5E8C8C;
}

/* Icône close (X) */
.burger-close {
    color: #5e8c8c;
}

.modeSelect {
    height: 20px;
    text-align: center;
}


/* Responsive */
@media screen and (max-width: 850px) {
    .navbar,
    .header {
        display: none;
    }

    .burger-icon {
        display: block;
        margin-right: 25px;
    }

    .burger-close {
        margin-right: 25px;
        
    }
}

/* Quand le menu burger est ouvert */
body.burger-opened .burger-icon {
    display: none;
    
}

/* =========================
   BANDEAU MOBILE / TABLETTE
   ========================= */

.mobile-banner {
    display: none;
}

/* Mobile & tablette */
@media screen and (max-width: 850px) {

    .mobile-banner {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 120px; /* plus grand */
        justify-content: center;
        align-items: center;
        background: #f2f2f2; /* blanc visible */
        /*background: rgba(255, 255, 255, 0); transparent */
        box-shadow: 0 2px 8px rgba(0,0,0,0.08); /*  légère ombre pour lisibilité */
        z-index: 998;
    }

    .mobile-logo {
        height: 100px; 
    }

    /* Décale le contenu */
    body {
        padding-top: 90px; 
    }

    /* Position du burger */
    .burger-icon {
        top: 28px; 
        right: 20px;
        z-index: 999;
    }
}
