/* --- VARIABLES & RESET --- */
:root {
    --color-primary: #5A7D7C; /* Vert Sauge apaisant */
    --color-secondary: #D8D0C5; /* Beige Sable */
    --color-text: #2C3333; /* Gris Charbon (lisibilité max) */
    --color-bg: #FCFCFA; /* Blanc cassé chaud */
    --color-bg-alt: #F2F0EB; /* Gris/Beige très clair pour l'alternance */
    --color-accent: #A27B5C; /* Terre de Sienne pour boutons/détails */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --spacing-container: 1200px;
    --spacing-section: 4rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    font-size: 18px; /* Accessible pour les seniors */
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-primary); margin-bottom: 1rem; }
h1 { font-size: 3rem; line-height: 1.1; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
h2 { font-size: 2.2rem; position: relative; display: inline-block; }
h3 { font-size: 1.5rem; color: var(--color-accent); }
p { margin-bottom: 1.2rem; }
a { color: var(--color-primary); text-decoration: none; transition: 0.3s; }
strong { color: var(--color-accent); }

/* --- UTILS --- */
.container { max-width: var(--spacing-container); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: var(--spacing-section) 0; }
.bg-light { background-color: var(--color-bg-alt); }
.bg-sage { background-color: var(--color-primary); color: white; }
.bg-sage h2, .bg-sage h3, .bg-sage strong { color: white; } /* Override colors on dark bg */
.centered-header { text-align: center; max-width: 800px; margin: 0 auto 3rem auto; }
.btn {
    display: inline-block; padding: 12px 24px; border-radius: 4px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;
}
.btn-primary { background-color: var(--color-accent); color: white; border: 2px solid var(--color-accent); }
.btn-primary:hover { background-color: darken(var(--color-accent), 10%); opacity: 0.9; }
.btn-outline { background-color: transparent; color: white; border: 2px solid white; margin-left: 10px; }
.btn-outline:hover { background-color: white; color: var(--color-text); }

/* --- HEADER --- */
.site-header {
    background: white; position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); padding: 15px 0;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--color-primary); }
.main-nav ul { display: flex; list-style: none; gap: 25px; align-items: center; }
.main-nav a { font-size: 1rem; color: var(--color-text); font-weight: 600; }
.btn-nav { background: var(--color-primary); color: white !important; padding: 8px 16px; border-radius: 4px; }

/* Mobile Menu Button */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 25px; height: 3px; background: var(--color-text); margin: 5px 0; transition: 0.3s; }

/* --- HERO --- */
.hero { position: relative; height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.hero-content { max-width: 800px; z-index: 1; }
.surtitle { text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 1rem; opacity: 0.9; }
.lead { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; }

/* --- GRIDS --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* --- CONTENT SECTIONS --- */
.image-block img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.features { margin-bottom: 3rem; }
.feature-card { background: white; padding: 2rem; border-radius: 8px; border-top: 4px solid var(--color-primary); box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

.benefits-box { background: white; padding: 2.5rem; border-radius: 8px; border: 1px solid var(--color-secondary); max-width: 800px; margin: 0 auto; }
.check-list { list-style: none; margin-top: 1rem; }
.check-list li { padding-left: 30px; position: relative; margin-bottom: 0.8rem; }
.check-list li::before { content: "✔"; position: absolute; left: 0; color: var(--color-primary); }
.disclaimer { font-size: 0.9rem; color: #666; margin-top: 1.5rem; border-top: 1px dashed #ccc; padding-top: 1rem; }

/* --- GALLERY --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; border-radius: 4px; transition: transform 0.3s; }
.gallery-grid img:hover { transform: scale(1.02); }

/* --- FOOTER & FORM --- */
footer { background: #2C3333; color: #ddd; padding-top: 4rem; }
footer h2 { color: white; }
footer a { color: white; }
.contact-info { padding-right: 2rem; }
.simple-form label { display: block; margin-top: 1rem; font-size: 0.9rem; }
.simple-form input, .simple-form textarea { width: 100%; padding: 10px; margin-top: 5px; border-radius: 4px; border: none; font-family: inherit; }
.simple-form button { margin-top: 1rem; width: 100%; cursor: pointer; }
.simple-form small { display: block; margin-top: 5px; font-size: 0.8rem; opacity: 0.7; }
.map-container iframe { width: 100%; height: 400px; border: 0; border-radius: 8px; }
.footer-bottom { background: #1f2424; margin-top: 3rem; padding: 1.5rem 0; text-align: center; font-size: 0.9rem; }

/* --- RESPONSIVE --- */
@media (max-width: 1000px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
    .reverse-mobile { display: flex; flex-direction: column-reverse; }
    h1 { font-size: 2.2rem; }
    .hero { height: 70vh; }
    
    .mobile-toggle { display: block; z-index: 1001; }
    .main-nav {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background: white; padding: 80px 20px; transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; align-items: flex-start; }
    
    .active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .active span:nth-child(2) { opacity: 0; }
    .active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* --- AJOUTS RÉCENTS (Logo & Tarifs) --- */

/* Ajustement du Logo dans le header */
.logo {
    display: flex;
    align-items: center;
    gap: 6px; /* Espace entre image et texte */
    margin-left: -10px; /* Décalage vers la gauche */
}

.logo-img {
    height: 80px; /* Taille adaptée au header */
    width: auto;
}

/* Nouveau bloc Infos Pratiques (Tarifs/Durée) */
.infos-pratiques {
    background-color: white;
    border-left: 5px solid var(--color-accent); /* Rappel couleur Terre de Sienne */
    border-radius: 8px;
    padding: 2rem;
    margin: 0 auto 3rem auto; /* Centré avec marge basse */
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.infos-pratiques h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.infos-content p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}