/* Polices */
:root {
    --font-titres: 'Cinzel', serif;
    --font-texte: 'Montserrat', sans-serif;
}

/* Couleurs */
:root {
    --anthracite: #2B2B2B;
    --dore: #D6C08D;
    --blanc: #FFFFFF;
    --blanc-casse: #F6F6F6;
    --texte-fonce: #1F1F1F;
    --texte-secondaire: #5A5A5A;
}

/* Base */
body {
    font-family: var(--font-texte);
    color: var(--blanc);
    background-color: var(--anthracite) !important;
    line-height: 1.6;
}

.text-anthracite {
    color: var(--anthracite) !important;
}

.text-blanc {
    color: var(--blanc) !important;
}

.text-blanc-casse {
    color: var(--blanc-casse) !important;
}

.text-dore {
    color: var(--dore) !important;
}

/* Typographie */
h1, h2, h3, .navbar-brand {
    font-family: var(--font-titres);
    font-weight: 700;
    color: var(--dore);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.4rem;
}

/* Taille par défaut pour le nom du salon */
.navbar-brand {
    font-family: var(--font-titres);
    font-weight: 700;
    color: var(--dore) !important;
    font-size: 1.5rem;
    transition: font-size 0.3s ease;
}

/* Adaptation pour les écrans de taille moyenne */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
}

/* Adaptation pour les petits écrans (tablettes) */
@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
}

/* Adaptation pour les très petits écrans (téléphones) */
@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 0.9rem;
    }
}

.nav-link {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.btn {
    font-family: var(--font-texte);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Couleurs de fond */
.bg-anthracite {
    background-color: var(--anthracite) !important;
}

.bg-blanc {
    background-color: var(--blanc) !important;
}

.bg-blanc-casse {
    background-color: var(--blanc-casse) !important;
}

.bg-dore {
    background-color: var(--dore) !important;
}

/* Boutons personnalisés */
.btn-dore {
    background-color: var(--dore);
    color: var(--anthracite);
    border: 2px solid var(--dore);
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-dore:hover {
    background-color: var(--anthracite);
    color: var(--dore);
    border-color: var(--dore);
}

.btn-outline-dore {
    border: 2px solid var(--dore);
    color: var(--dore);
    transition: all 0.3s ease;
}

.btn-outline-dore:hover {
    background-color: var(--dore);
    color: var(--anthracite);
}

/* Cartes */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Hero */
.hero {
    text-align: center;
    padding: 0 15px;
}

.hero-img {
    object-fit: cover;
    min-height: 300px;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optionnel */
}

/* Ajustement pour mobile */
@media (max-width: 767.98px) {
    .hero-img {
        min-height: 250px; /* Hauteur adaptée pour mobile */
    }
}

/* Border dorée */
.border-dore {
    border-right: 1px solid var(--dore) !important;
}

/* Espacement des sections */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Prestations Femmes */
.prestation-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    margin-bottom: 20px;
}
.prestation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.type-cheveux-tab {
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
    background-color: var(--blanc-casse);
    color: var(--texte-fonce);
    border: 1px solid transparent;
}
.type-cheveux-tab.active {
    background-color: var(--dore);
    color: var(--anthracite);
    border: 1px solid var(--dore);
}
.categorie-title {
    font-family: var(--font-titres);
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dore);
}

/* Responsive */
@media (max-width: 767.98px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .border-dore {
        border-right: none !important;
        border-bottom: 1px solid var(--dore) !important;
    }
}

/* Footer */
footer hr {
    opacity: 1;
    height: 2px;
}