:root {
    --nav-bg: rgba(30, 30, 30, 0.85);
    /* gris très sombre, semi‑transparent */
    --nav-text: #ffffff;
    --accent-color: #e63946;
    /* rouge vif / accent, remplace le jaune */
}



@media (max-width: 991.98px) {

    /* correspond au breakpoint lg de Bootstrap */
    .navbar-custom .d-flex.gap-2 {
        display: none;
    }
}


.btn-modern {
    background: linear-gradient(135deg, #0066ff, #00c2ff);
    color: white !important;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #0052cc, #00a3cc);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 255, 0.4);
}


.social-link {
    color: white;
    font-size: 1.4rem;
    transition: 0.3s;
}

.social-link:hover {
    color: #1e90ff;
}

.slogan_nvk {
    font-weight: 600;
    font-size: 1rem;
}

.logo-css {
    width: 60px;
    /* un peu plus grand pour le padding */
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    /* fond semi-transparent */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* centre le texte */
    font-weight: bold;
    border-radius: 10px;
    /* coins arrondis */
    font-size: 1rem;
    text-transform: uppercase;
    padding: 5px;
    /* espace autour du texte */
    backdrop-filter: blur(8px);
    /* effet verre flou */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /* ombre légère */
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* contour léger */
}

.mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    /* espace égal entre les items */
    align-items: center;
    height: 60px;
    z-index: 1050;
    padding: 0;
}

.mobile-bottom-nav .nav-item i {
    font-size: 22px;
}

.mobile-bottom-nav .nav-item span {
    font-size: 12px;
}

body {
    padding-bottom: 70px;
    /* éviter que le contenu soit caché derrière la barre */
}