/* --- VARIABLES & SETUP --- */
:root {
    --primary: #3A5A40; /* Vert Anglais / Forêt */
    --secondary: #DAD7CD; /* Sauge Pâle */
    --accent: #BC6C25; /* Terre Cuite (Boutons) */
    --text-dark: #1A1A1A;
    --text-light: #Fefefe;
    --bg-cream: #F4F1EA; /* Fond papier luxe */
    
    --font-title: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
}

/* --- TYPOGRAPHIE --- */
h1, h2, h3 { font-family: var(--font-title); font-weight: 700; }
h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 30px; }
p { font-size: 1.05rem; color: #555; margin-bottom: 20px; }

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    transition: 0.4s;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}
.navbar.scrolled {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
}
.navbar.scrolled .logo-text, .navbar.scrolled a { color: var(--text-dark); }
.navbar.scrolled .cta-btn { color: #fff; }

.nav-content { display: flex; justify-content: space-between; align-items: center; }

.brand { display: flex; align-items: center; gap: 15px; color: #fff; }
.logo-icon { font-size: 2rem; color: var(--secondary); }
.logo-text { font-family: var(--font-title); font-size: 1.2rem; line-height: 1.1; font-weight: bold; }
.logo-text span { font-weight: 400; font-style: italic; }

.nav-menu { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-menu a { color: #fff; text-decoration: none; font-weight: 500; font-size: 0.9rem; letter-spacing: 1px; transition: 0.3s; }

.cta-btn {
    background-color: var(--accent);
    padding: 12px 25px;
    border-radius: 2px;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    letter-spacing: 2px;
}
.cta-btn:hover { background-color: #a35d1e; }

/* --- HERO --- */
.hero {
    height: 100vh;
    background: url('https://forfaitmalin.neocities.org/000Paysagiste/jumbo.webp') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}
.overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.4); }

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
.subtitle { text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; color: var(--secondary); margin-bottom: 20px; display: block;}
.hero h1 em { font-family: var(--font-title); font-weight: 400; font-style: italic; }
.hero .description { color: #ddd; font-size: 1.2rem; margin-bottom: 40px; }

.hero-buttons { display: flex; gap: 20px; justify-content: center; margin-bottom: 30px; }
.btn { padding: 15px 35px; text-decoration: none; font-weight: 600; border-radius: 2px; transition: 0.3s; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-outline { border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--text-dark); }

.trust-badge { display: inline-block; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 10px 20px; border-radius: 50px; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.3); }

.scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: white; animation: bounce 2s infinite; text-align: center; }
.scroll-down span { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }

/* --- SECTIONS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.bg-cream { background-color: var(--bg-cream); }
.text-center { text-align: center; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.image-block { position: relative; }
.image-block img { width: 100%; border-radius: 2px; box-shadow: 20px 20px 0px rgba(58, 90, 64, 0.1); }
.experience-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--primary); color: white;
    padding: 30px; text-align: center;
}
.experience-badge .number { display: block; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.experience-badge .text { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.service-card { background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; overflow: hidden; }
.service-card:hover { transform: translateY(-10px); }
.card-image img { width: 100%; height: 250px; object-fit: cover; }
.card-content { padding: 30px; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); }
.features { list-style: none; margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; }
.features li { font-size: 0.9rem; color: #888; margin-bottom: 5px; }
.features i { color: var(--accent); margin-right: 10px; }

/* Parallax Quote */
.parallax-section {
    background: url('https://images.unsplash.com/photo-1596627787680-2c70d440db7f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover fixed;
    padding: 150px 0;
    position: relative;
    color: white;
}
.overlay-dark { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.6); }
.parallax-section .content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.parallax-section h2 { color: white; font-style: italic; }
.btn-white { background: white; color: var(--text-dark); padding: 15px 40px; text-decoration: none; display: inline-block; margin-top: 30px; font-weight: bold; }

/* Footer */
.footer-dark { background: #1a1a1a; color: #888; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 60px; }
.footer-col h3 { color: white; font-size: 1.2rem; margin-bottom: 25px; }
.phone-number { display: block; color: var(--accent); font-size: 1.8rem; font-family: var(--font-title); margin: 10px 0; text-decoration: none; }
.zone-list li { margin-bottom: 10px; border-bottom: 1px solid #333; padding-bottom: 10px; width: fit-content; }
.footer-bottom { border-top: 1px solid #333; padding: 20px 0; text-align: center; font-size: 0.8rem; }

/* Animations Scroll Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s ease; }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }

/* Animation Keyframes */
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 40% {transform: translateX(-50%) translateY(-10px);} 60% {transform: translateX(-50%) translateY(-5px);} }

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .grid-2 { grid-template-columns: 1fr; }
    .nav-menu { display: none; } /* Pour faire simple, on cache le menu sur mobile dans cet exemple, sinon il faut du JS complexe */
    .hero-buttons { flex-direction: column; }
    .image-block { margin-top: 30px; }
}