@charset "UTF-8";
/* CSS Document */

/* =========================================
   VARIABLES & RESET
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1b4332; /* Vert très foncé (thème forêt) */
    --secondary-color: #2d6a4f; /* Vert moyen */
    --accent-color: #52b788; /* Vert clair / bouton */
    --bg-light: #f6f4ef;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --shadow: 0 8px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding: 0 20px;
}

.top-info {
    font-size: 0.9rem;
    color: #d1d8e0;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

nav {
    background-color: var(--secondary-color);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav a:hover {
    color: var(--accent-color);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* =========================================
   CONTENEUR GLOBAL & TEXTES
========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.intro-seo {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--text-light);
    font-size: 1.05rem;
}

.intro-seo strong {
    color: var(--secondary-color);
}

/* =========================================
   GRILLE DES SERVICES
========================================= */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--accent-color);
}

.service i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* =========================================
   GALERIE D'IMAGES
========================================= */
.images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.images img:hover {
    transform: scale(1.02);
}

/* =========================================
   PAGE CONTACT (CARTES)
========================================= */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.card h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
}

address i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
}

.btn-call {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.4);
}

.btn-call:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* =========================================
   FOOTER
========================================= */
footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    line-height: 1.8;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

/* =========================================
   RESPONSIVE DESIGN (Mobiles & Tablettes)
========================================= */
@media (max-width: 768px) {
    .top-info {
        flex-direction: column;
        gap: 5px;
    }
    .hero {
        padding: 50px 20px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    .hero h2 {
        font-size: 2rem;
    }
    .services {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 25px;
    }
}