/* =======================================
   1. VARIABLES & RESET (Base Premium Corrigée)
   ======================================= */
:root {
    /* VOS COULEURS CORRIGÉES */
    --color-background: #F0E7D6;     /* 1. Crème (Fond Principal) */
    --color-accent-soft: #9DBDB8;    /* 2. Vert-de-Gris/Bleu (Accent Doux) */
    --color-accent-strong: #EA2E00;  /* 3. Orange Vif (Action/CTA) */
    
    /* Couleur pour le Contraste (Nécessaire) */
    --color-text-main: #1A1A1A;      /* Noir très foncé (Lisibilité) */

    /* Polices (inchangées) */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-background);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

section {
    padding: 120px 0;
}

/* UTILISATION DE VOTRE COULEUR ACCENT DOUCE POUR LE FOND SECONDAIRE */
.bg-soft {
    background-color: var(--color-accent-soft); /* Fond devient Vert-de-Gris/Bleu */
    color: var(--color-text-main);
}

.text-center {
    text-align: center;
}

/* =======================================
   2. TYPOGRAPHIE (Touche Luxe)
   ======================================= */

h1, h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    color: var(--color-text-main);
    text-align: center;
}

h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--color-text-main); /* H3 en noir pour la lisibilité */
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.4rem;
    color: var(--color-accent-soft); /* Accent doux pour le slogan */
    font-weight: 400;
    margin-bottom: 40px;
}

/* =======================================
   3. NAVIGATION
   ======================================= */

header {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-accent-soft);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-text-main);
    padding: 10px 20px;
    font-weight: 400;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--color-accent-strong); /* Survol en Orange */
}

.nav-cta {
    font-weight: 600 !important;
    border: 1px solid var(--color-accent-strong);
}

/* =======================================
   4. BOUTONS / CTA (Conversion - ORANGE VIF)
   ======================================= */

.button {
    display: inline-block;
    background-color: var(--color-accent-strong); /* Fond Orange Vif */
    color: var(--color-background) !important; /* Texte Crème */
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 2px solid var(--color-accent-strong);
    transition: all 0.3s ease;
}

.button-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Effet de survol : le bouton devient transparent avec le texte Orange Vif */
.button:hover {
    background-color: transparent; 
    color: var(--color-accent-strong) !important; 
    border-color: var(--color-accent-strong);
}

/* =======================================
   5. SECTIONS SPÉCIFIQUES
   ======================================= */

/* HERO (inchangé) */
#hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    max-width: 800px;
}

/* EXPERTISE (Chiffres) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin: 60px 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-strong); /* Les chiffres importants en ORANGE VIF */
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-top: 5px;
}

.text-center-small {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    color: var(--color-accent-soft);
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.service-item {
    /* Utilisation de l'accent doux pour une séparation élégante */
    border-left: 3px solid var(--color-accent-soft); 
    padding-left: 25px;
}

/* CONTACT */
#contact {
    /* Inversion de couleurs : Fond noir sur lequel l'orange ressort bien */
    background-color: var(--color-text-main); 
    color: var(--color-background); 
    padding: 80px 0;
}

#contact h2 {
    color: var(--color-background);
}

#contact .tagline {
    color: var(--color-accent-soft);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.8rem;
    color: var(--color-accent-soft);
}

/* MEDIA QUERIES (inchangé) */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }

    .stats-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-content {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
    }
    nav ul li a {
        padding: 5px 10px;
    }
}