/* DÉFINITION DES VARIABLES DE COULEURS */
:root {
    --vert-eau: #E0ECE4;
    --vert-foret: #1B2945; /* Utilisé pour les textes foncés et accents pro */
    --saumon: #FFB7A1;
    --rose-fond: #FFF9F9;
    --blanc: #FFFFFF;
    --texte-gris: #4A4A4A;
    
    /* Variable pour la police Montserrat */
    --font-main: 'Montserrat', sans-serif;
}

/* RESET DE BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Défilement doux entre sections */
}

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

/* TYPOGRAPHIE ET TITRES */
h1, h2, h3, h4 {
    color: var(--vert-foret);
    font-weight: 700;
    margin-bottom: 20px;
}

h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.2rem; text-align: center; }
h3 { font-size: 1.4rem; color: var(--saumon); }

strong { font-weight: 600; color: var(--vert-foret); }

/* STRUCTURE DU CONTENEUR */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

/* BOUTONS */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-saumon {
    background-color: var(--saumon);
    color: var(--blanc);
}
.btn-saumon:hover { background-color: var(--vert-eau); color: var(--vert-foret); transform: translateY(-3px); }

.btn-vert-foret {
    background-color: var(--vert-foret);
    color: var(--blanc);
}
.btn-vert-foret:hover { background-color: var(--vert-eau); color: var(--vert-foret); transform: translateY(-3px); }

/* COULEURS DE FOND DE SECTION */
.bg-rose { background-color: var(--rose-fond); }
.bg-vert-eau { background-color: var(--vert-eau); }

/* ========================================= */
/* 1. BARRE DE NAVIGATION */
nav {
    background-color: var(--blanc);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

.nav-logo {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 25px; }

.nav-links a {
    text-decoration: none;
    color: var(--texte-gris);
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--saumon); }

/* ========================================= */
/* 2. SECTION ACCUEIL (Hero) */
.hero { background-color: var(--blanc); }

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text { flex: 1; }

.hero-image { flex: 1; text-align: center; }

.slogan {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--saumon);
    margin: 25px 0;
}

.photo-ronde {
    max-width: 100%;
    border-radius: 20px; /* Coins doux */
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* ========================================= */
/* 3. SECTION À PROPOS */
.propos-content { max-width: 800px; margin: 0 auto; }

blockquote {
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--saumon);
    border-left: 5px solid var(--saumon);
    padding-left: 20px;
    margin: 30px 0;
}

.force-vert-foret {
    font-weight: 600;
    color: var(--vert-foret);
}

/* ========================================= */
/* 4. SECTION SERVICES (Avec photo chemise bleue) */
.flex-photo-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-content { flex: 2; }
.services-image { flex: 1; }

.soustitre {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
    color: var(--texte-gris);
}

.box-demarche {
    background-color: var(--blanc);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--saumon);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.liste-thematiques {
    list-style: none;
    margin-top: 20px;
}

.liste-thematiques li {
    background-color: var(--rose-fond);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
}

.photo-carree {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* ========================================= */
/* 5. SECTION CONTACT */
#contact { color: var(--vert-foret); }

.contact-content { max-width: 700px; margin: 0 auto; }

.contact-info-card {
    background-color: var(--blanc);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-info-card a {
    color: var(--saumon);
    text-decoration: none;
    font-weight: 600;
}

/* PIED DE PAGE */
footer {
    text-align: center;
    padding: 30px;
    background-color: var(--vert-foret);
    color: rgba(255,255,255,0.7);
    font-size: 0.8em;
}

/* RESPONSIVE (Mobiles) */
@media (max-width: 768px) {
    .nav-flex, .hero-flex, .flex-photo-text {
        flex-direction: column;
        text-align: center;
    }
    .nav-links { display: none; } /* Navigation mobile simplifiée */
    h1 { font-size: 2rem; }
}