/* --- HEADER / NAVBAR (header.css) --- */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    background-color: #2D1F1E; /* Marron foncé */
    z-index: 1000;
    border-bottom: 1px solid #4a3526;
}

/* Bloc Logo à gauche */
.logo-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px; 
    width: auto;
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: #E2D9C1 !important; /* NAPOLI EN BEIGE */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    font-weight: 300;
    /* CHRISTOPHE reste tel quel (gris/transparent) */
    color: rgba(245, 242, 233, 0.5) !important; 
}

/* Liens du menu au centre */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #E2D9C1 !important; /* LIENS EN BEIGE */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff; /* Petit changement au survol pour l'interaction */
}

/* Bouton téléphone à droite */
.btn-tel {
    background-color: #E2D9C1; /* FOND DU BOUTON EN BEIGE */
    color: #2D1F1E;            /* NUMÉRO DE TEL RESTE EN MARRON */
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: 0.3s;
}

.btn-tel:hover {
    background-color: #ffffff;
    color: #2D1F1E;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
}