/* ===================================
Header amélioré - Inspiration Beauté
=================================== */

/* --- Conteneur principal du header --- */
.site-header {
    padding: 20px 0;
    background: #f7eee5;
}

.header-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section supérieure : Logo + Téléphone + Boutons --- */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

/* Logo - calé à gauche */
.header-logo {
    flex: 0 0 auto;
    min-width: auto;
    text-align: left;
}

.header-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Colonne droite : Téléphone + Boutons */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-left: auto;
}

/* Téléphone */
.header-phone {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font: 700 1.3rem/1.2 Perpetua, "Times New Roman", serif;
    color: #401d06;
}

.header-phone img {
    width: 40px;
    height: auto;
}

.header-phone a {
    color: #401d06;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-phone a:hover {
    color: #a66d68;
}

/* Boutons d'action (Réservation, Offre, Boutique) */
.header-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.header-btn {
    display: inline-block;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

.header-btn:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.header-btn img {
    display: block;
    height: 30px;
    width: auto;
}

/* --- Navigation principale (menu des pages) --- */
.header-nav {
    border-top: 1px solid rgba(166, 109, 104, 0.3);
    padding-top: 16px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

/* Liens du menu avec encadré */
.nav-menu a {
    display: inline-block;
    padding: 6px 12px;
    color: #352c2b;
    font: 700 1rem/1.2 Perpetua, "Times New Roman", serif;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #a66d68;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #a66d68;
    color: #fff;
    border-color: #a66d68;
}

/* --- Responsive : uniquement sur mobile --- */
@media (max-width: 600px) {
    .header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-logo {
        text-align: center;
    }

    .header-logo img {
        max-width: 280px;
    }

    .header-right {
        align-items: center;
        margin-left: 0;
        flex-direction: column;
    }

    .header-phone {
        justify-content: center;
        flex-direction: row;
    }

    .header-actions {
        align-items: center;
        flex-direction: column;
        gap: 8px;
    }

    .header-btn img {
        height: 26px;
    }

    .nav-menu {
        gap: 6px 8px;
    }

    .nav-menu a {
        padding: 6px 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }

    .header-logo img {
        max-width: 220px;
    }

    .header-phone {
        font-size: 1.1rem;
    }

    .header-phone img {
        width: 32px;
    }

    .header-btn img {
        height: 28px;
    }

    .nav-menu {
        gap: 6px 8px;
    }

    .nav-menu a {
        padding: 6px 9px;
        font-size: 0.9rem;
    }
}