:root {
    /* --- PALETTE DE COULEURS --- */
    --primary-gold: #D4AF37;       /* Or Classique */
    --primary-gold-hover: #FDD835; /* Or plus vif pour hover */

    --dark-bg: #121212;            /* Noir profond (Background body) */
    --dark-surface: #1E1E1E;       /* Gris très sombre (Cartes/Sections alternées) */
    --dark-border: #333333;        /* Bordures subtiles */

    --text-light: #F5F5F5;         /* Blanc cassé (Texte principal) */
    --text-muted: #aaaaaa;         /* Gris clair (Sous-titres) */
}

/* --- REGLAGES GLOBAUX & TYPOGRAPHIE --- */
body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Surcharge des Titres : Tous en 'Anton' par défaut */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* --- SURCHARGE BOOTSTRAP 5 --- */
/* Rend .text-primary doré automatiquement */
.text-primary { color: var(--primary-gold) !important; }

/* Rend .bg-dark égal à ton noir profond */
.bg-dark { background-color: var(--dark-bg) !important; }

/* Nouvelle classe .bg-surface pour les sections alternées */
.bg-surface { background-color: var(--dark-surface) !important; }

/* Rend .text-muted plus lisible sur fond noir */
.text-muted { color: var(--text-muted) !important; }

/* --- UTILITAIRES --- */
/* Espacement standard des sections (plus aéré) */
.section-padding { padding: 100px 0; }

/* Séparateur Doré (le petit trait sous les titres) */
.divider-gold {
    height: 3px;
    background-color: var(--primary-gold);
    width: 60px;
    margin: 20px auto; /* Centré par défaut */
}
.divider-gold.start { margin: 20px 0; } /* Aligné à gauche */

/* --- COMPOSANTS GLOBAUX --- */

/* 1. Feature Card (Pour la section 2 - Piliers) */
.feature-card {
    background-color: var(--dark-surface); /* Fond légèrement plus clair que le body */
    border: 1px solid var(--dark-border);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-card i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.2);
    color: var(--primary-gold-hover);
}

/* 2. Menu Item (Pour la section 3 - Tarifs) */
.menu-item {
    border-bottom: 1px dashed var(--dark-border);
    padding-bottom: 15px;
    margin-bottom: 25px;
    transition: border-color 0.3s ease;
}

.menu-item:hover {
    border-bottom-color: var(--primary-gold);
}

.menu-price {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    line-height: 1;
}

/* Image avec cadre décoratif (Réutilisable) */
.img-framed-wrapper {
    position: relative;
    padding: 15px; /* Espace pour le cadre */
}

.img-framed-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: grayscale(100%) contrast(1.1); /* Effet N&B Pro */
    transition: filter 0.5s ease;
}

.img-framed-wrapper:hover img {
    filter: grayscale(0%) contrast(1); /* Devient couleur au survol */
}

.img-framed-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Prend toute la largeur du conteneur */
    height: 100%;
    border: 2px solid var(--primary-gold);
    z-index: 1;
    transform: translate(-10px, -10px); /* Décalage du cadre */
    transition: transform 0.4s ease;
}

.img-framed-wrapper:hover::before {
    transform: translate(0, 0); /* Le cadre se remet droit au survol */
}

/* --- HERO SECTION STYLES --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Image with Overlay */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/hero.avif') no-repeat center center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18,18,18,1) 0%, rgba(18,18,18,0.9) 40%, rgba(18,18,18,0.4) 100%);
    z-index: 2;
}

/* Typography & Content */
.hero-content {
    position: relative;
    z-index: 10;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0; /* Pour animation */
    display: inline-block;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* Effet "Mot par mot" pour le titre */
.word {
    display: inline-block;
    transform: translateY(100%);
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}

/* The Price Tag - Floating Element */
.price-badge {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    opacity: 0;
    transform: scale(0.5);
}

.price-amount {
    font-family: 'Anton', sans-serif;
    font-size: 4.5rem;
    color: var(--primary-gold);
    line-height: 1;
}

.price-text {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Buttons */
.btn-custom-gold {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.btn-custom-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-custom-gold:hover::before {
    left: 100%;
}

.btn-custom-gold:hover {
    background-color: #fff;
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Decorative Floating Icons (Scissors/Comb) */
.floating-icon {
    position: absolute;
    z-index: 3;
    opacity: 0.1;
    color: var(--text-light);
    font-size: 15rem;
    pointer-events: none;
}
.scissors-icon {
    bottom: 0px;
    right: 80px;
    transform: rotate(-20deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .price-badge {
        width: 120px;
        height: 120px;
        top: auto;
        bottom: 20px;
        right: 20px;
        background: var(--dark-surface);
    }
    .price-amount { font-size: 3rem; }
    .hero-bg { background-position: 70% center; }
    .hero-overlay { background: linear-gradient(180deg, rgba(18,18,18,0.8) 0%, rgba(18,18,18,0.9) 100%); }
}

/* --- SECTION 4 : GALERIE (LOOKBOOK) --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px; /* Hauteur fixe pour uniformiser */
    cursor: pointer;
    border: 1px solid var(--dark-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.215, 0.610, 0.355, 1.000), filter 0.5s ease;
    filter: grayscale(100%); /* N&B par défaut */
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

/* Effets au survol */
.gallery-item:hover img {
    transform: scale(1.1); /* Zoom */
    filter: grayscale(0%); /* Devient couleur */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-tag {
    background-color: var(--primary-gold);
    color: #000;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

/* --- SECTION 5 : AVIS CLIENTS --- */
.testimonial-card {
    background-color: var(--dark-surface);
    border: 1px solid var(--dark-border);
    padding: 30px;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

/* Le gros guillemet en arrière-plan */
.quote-icon-bg {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.1; /* Très subtil */
    font-family: serif;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--dark-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.stars i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

/* --- SECTION 6 : CONTACT & MAP --- */
.contact-box {
    background-color: var(--dark-surface);
    border: 1px solid var(--dark-border);
    padding: 40px;
    height: 100%;
    position: relative;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.hours-time {
    color: var(--primary-gold);
    font-family: 'Manrope', sans-serif; /* Chiffres lisibles */
}

/* Astuce pour assombrir la Google Map sans API */
.map-wrapper {
    height: 100%;
    min-height: 450px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--dark-border);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Met la carte en Noir et Blanc et baisse la luminosité */
    filter: grayscale(100%) brightness(0.7) contrast(1.2);
    transition: filter 0.5s ease;
}

.map-wrapper:hover iframe {
    /* Au survol, on remet un peu de couleur pour la lisibilité */
    filter: grayscale(0%) brightness(1);
}

/* --- FOOTER --- */
footer {
    background-color: #000000; /* Plus noir que le bg-dark */
    border-top: 1px solid #222;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-link {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary-gold);
    padding-left: 5px; /* Petit effet de mouvement */
}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    text-decoration: none;
}

.social-circle:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
}

/* --- FOOTER PAYMENTS --- */
.payment-icons i {
    font-size: 2rem; /* Taille lisible */
    color: #666; /* Gris discret par défaut */
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #fff; /* Devient blanc brillant au survol */
    transform: translateY(-3px); /* Petit saut */
}

/* Hover spécifique pour le lien mentions légales tout en bas */
.hover-gold:hover {
    color: var(--primary-gold) !important;
}