/* css/nav.css */

/* Import commun de la police Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', serif !important;
}


/* Titre français */
.brand-title-fr {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

/* Titre Ourdou */
.brand-title-ur {
    font-family: 'NotoNastaliqUrduRegular', serif;
    font-size: 1rem;
    opacity: 0.7;
    line-height: 1;
}

/* Navbar modernisée */
.main-navbar {
    border-bottom: 1px solid #eee;
    padding: 0.6rem 0;
}

.main-navbar .nav-link {
    font-weight: 600;
    color: #333 !important;
    padding: 0.5rem 1.1rem;
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.main-navbar .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: #000 !important;
}

/* Dropdown modernisé */
.dropdown-menu {
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dropdown-item:hover {
    background-color: rgba(0,0,0,0.05);
}

/* Mobile */
@media (max-width: 768px) {
    .main-navbar .nav-link {
        margin-top: 6px;
    }
}

/* ---------- Footer (cohérent avec le header) ---------- */

.site-footer {
    background-color: #ffffff;
    color: #555;
    font-size: 0.9rem;
}

.site-footer .brand-title-fr {
    font-size: 1.1rem;
    font-weight: 700;
}

.site-footer .brand-title-ur {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1rem;
    opacity: 0.75;
}

.site-footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        text-align: center;
    }
    .site-footer .text-md-right {
        text-align: center !important;
    }
}

