/* ===== POLICE ===== */
body, .logo-text strong, .logo-text span, nav a, .btn, h1, h2, h3, h4, p, .footer-slogan, .footer-col h4, .footer-col ul li, .copyright, .footer-legal a {
    font-family: 'Arial Narrow', Arial, 'Tahoma', sans-serif !important;
}

/* ===== HEADER ===== */
header {
    background: #0a2a3a;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}
header.scrolled {
    padding: 10px 0;
    background: #051e2a;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 50px;
    width: auto;
}
.logo-text strong {
    display: block;
    color: #d4af37;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}
.logo-text span {
    font-size: 0.75rem;
    color: #cbd5e1;
    letter-spacing: 0.3px;
}
nav {
    position: relative;
    width: auto;
}
nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}
nav a:hover::after,
nav a.active::after {
    width: 100%;
}
nav a:hover,
nav a.active {
    color: #d4af37;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    touch-action: manipulation;
}

/* ===== MENU RESPONSIVE CORRIGÉ ===== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    /* Le parent nav doit prendre toute la largeur pour que le menu absolu se cale */
    nav {
        width: 100%;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;          /* Force la largeur à 100% de la fenêtre */
        max-width: 100%;
        background: #0a2a3a;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        box-sizing: border-box;
        margin: 0;
        overflow: hidden;
    }
    nav ul.show {
        display: flex !important;
    }
    nav ul li a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        font-family: 'Arial Narrow', Arial, 'Tahoma', sans-serif !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    nav ul li a::after {
        display: none;
    }
    .container {
        padding: 0 16px;
    }
}

/* ===== PAGES INTERNES ===== */
.page-content {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 65vh;
}