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

/* ================================================
   Arnold Paysages - Feuille de style principale
   ================================================ */

/* -------------------- Reset & Base -------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Palette de couleurs */
    --vert-principal: #6b996c;
    --beige-clair: #f3f4f1;
    --marron-accent: #55381d;
    --vert-secondaire: #294a23;

    /* Couleurs utilitaires */
    --blanc: #ffffff;
    --gris-clair: #e8e9e6;
    --gris-texte: #333333;
    --ombre: rgba(41, 74, 35, 0.1);

    /* Espacements */
    --section-padding: 5rem 2rem;
    --container-max: 1200px;
    --header-height: 88px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Open Sans', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    background-color: var(--beige-clair);
    color: var(--gris-texte);
    line-height: 1.6;
    font-size: 16px;
    padding-top: var(--header-height);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* -------------------- Utilitaires -------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.section--beige {
    background-color: var(--beige-clair);
}

.section--vert {
    background-color: var(--vert-principal);
    color: var(--blanc);
}

.section--blanc {
    background-color: var(--blanc);
}

.section--gris {
    background-color: #F5F5F5;
}

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

/* -------------------- Typographie -------------------- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--vert-secondaire);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section--vert .section-title::after {
    background-color: var(--beige-clair);
}

/* -------------------- Boutons -------------------- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn--primary {
    background-color: var(--vert-secondaire);
    color: var(--blanc);
}

.btn--primary:hover {
    background-color: var(--vert-principal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--ombre);
}

.btn--secondary {
    background-color: var(--blanc);
    color: var(--vert-secondaire);
    border: 2px solid var(--vert-secondaire);
}

.btn--secondary:hover {
    background-color: var(--vert-principal);
    color: var(--blanc);
}

.btn--marron {
    background-color: var(--marron-accent);
    color: var(--blanc);
}

.btn--marron:hover {
    background-color: #6d4a27;
    transform: translateY(-2px);
}

/* -------------------- Header & Navigation -------------------- */
.header {
    background-color: var(--blanc);
    box-shadow: 0 2px 10px var(--ombre);
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header__container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0.75rem 1.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 2rem;
}

.header__logo {
    display: flex;
    align-items: center;
    color: var(--vert-secondaire);
    font-size: 1.4rem;
    font-weight: 700;
    white-space: nowrap;
}

.header__nav {
    justify-self: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vert-secondaire);
    transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
    color: #6B996C;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
    background-color: #6B996C;
}

/* Menu burger mobile */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--vert-secondaire);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn--header {
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn--header-primary {
    background-color: var(--vert-secondaire);
    color: var(--blanc);
    border: 1px solid var(--vert-secondaire);
}

.btn--header-outline {
    background-color: transparent;
    color: var(--vert-secondaire);
    border: 1px solid var(--blanc);
}

/* -------------------- Hero Section -------------------- */
.hero {
    background-color: var(--vert-principal);
    color: var(--blanc);
    padding: 4.5rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background-image: url('/images/header.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(107, 153, 108, 0.87);
}

.hero__grid {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero__title {
    font-size: 48px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--blanc);
    opacity: 1;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--blanc);
    opacity: 1;
    margin-bottom: 2.5rem;
    max-width: 720px;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__panel {
    color: var(--blanc);
}

.hero__panel--content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero__icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    background-color: rgba(255, 255, 255, 0.08);
}

.hero__icon svg {
    width: 46px;
    height: 46px;
    fill: rgba(255, 255, 255, 0.7);
}

.hero__panel--intro {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 2.5rem;
    border-radius: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.btn--hero {
    padding: 0.95rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
}

.btn--hero-primary {
    background-color: var(--vert-secondaire);
    color: var(--blanc);
    border: 1px solid var(--vert-secondaire);
}

.btn--hero-outline {
    background-color: transparent;
    color: var(--blanc);
    border: 1px solid var(--blanc);
}

/* -------------------- Services / Cards -------------------- */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--blanc);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--ombre);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(41, 74, 35, 0.15);
}

.card__image {
    width: 100%;
    height: 200px;
    background-color: var(--gris-clair);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gris-texte);
    font-size: 0.9rem;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__content {
    padding: 1.5rem;
}

.card__title {
    color: var(--vert-principal);
    margin-bottom: 0.5rem;
}

.card__text {
    color: var(--gris-texte);
    font-size: 0.95rem;
}

/* -------------------- Galerie -------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--gris-clair);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(41, 74, 35, 0.9));
    padding: 1.5rem;
    color: var(--blanc);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

/* Image placeholder pour galerie */
.gallery__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gris-clair) 0%, #d1d3ce 100%);
    color: var(--gris-texte);
    font-size: 0.9rem;
}

/* -------------------- Témoignages -------------------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--blanc);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--ombre);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--vert-secondaire);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial__text {
    font-style: italic;
    color: var(--gris-texte);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--vert-principal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanc);
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial__name {
    font-weight: 600;
    color: var(--vert-principal);
}

.testimonial__location {
    font-size: 0.85rem;
    color: var(--gris-texte);
}

.testimonial__stars {
    color: #f4b41a;
    margin-bottom: 0.5rem;
}

/* -------------------- À propos -------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--gris-clair);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content h2 {
    color: var(--vert-principal);
}

.about__list {
    margin: 1.5rem 0;
}

.about__list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--vert-secondaire);
    font-weight: bold;
}

/* -------------------- Formulaire de contact -------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: var(--blanc);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--ombre);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--vert-principal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gris-clair);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--blanc);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--vert-secondaire);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    padding: 2rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    background-color: var(--vert-secondaire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--blanc);
}

.contact-info__title {
    font-weight: 600;
    color: var(--vert-principal);
    margin-bottom: 0.25rem;
}

.contact-info__text {
    color: var(--gris-texte);
}

/* -------------------- Zone d'intervention -------------------- */
.zone-intervention {
    background-color: #F5F5F5;
    padding: 60px 2rem;
}

.zone-intervention__title {
    text-align: center;
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.zone-intervention__map-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.zone-intervention__map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}

.zone-intervention__text {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

@media (max-width: 640px) {
    .zone-intervention {
        padding: 40px 1rem;
    }

    .zone-intervention__title {
        font-size: 1.5rem;
    }

    .zone-intervention__map-wrapper iframe {
        height: 300px;
    }
}

/* -------------------- Footer -------------------- */
.footer {
    background-color: #294A23;
    color: var(--blanc);
    padding: 60px 2rem 30px;
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    text-align: center;
}

.footer__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer__brand {
    font-size: 1.4rem;
    font-weight: 700;
}

.footer__slogan {
    font-weight: 600;
    opacity: 0.95;
}

.footer__description {
    opacity: 0.8;
    margin: 0;
    max-width: 280px;
}

.footer__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer__links,
.footer__hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a,
.footer__legal a,
.footer__contact-link {
    color: var(--blanc);
    text-decoration: none;
}

.footer__links a:hover,
.footer__legal a:hover,
.footer__contact-link:hover {
    opacity: 0.8;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.footer__icon svg {
    width: 20px;
    height: 20px;
}

.footer__contact-name {
    font-weight: 600;
}

.footer__contact-muted {
    opacity: 0.75;
}

.footer__separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.35);
    margin: 2.5rem 0 1.5rem;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__copyright {
    opacity: 0.8;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.footer__legal-sep {
    opacity: 0.6;
}

@media (max-width: 960px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 48px 1.5rem 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__legal {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* -------------------- CTA Section -------------------- */
.cta {
    background: #f3f4f1;
    padding: 5rem 2rem;
    text-align: center;
}

.cta h2 {
    color: #333333;
    margin-bottom: 1rem;
}

.cta p {
    color: #333333;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta .btn--marron {
    background-color: #294a23;
    color: #ffffff;
}

.cta .btn--marron:hover {
    background-color: #1f361a;
}

/* -------------------- Stats -------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--vert-secondaire);
}

.section--vert .stat__number {
    color: var(--beige-clair);
}

.stat__label {
    font-size: 1.1rem;
    color: var(--gris-texte);
}

.section--vert .stat__label {
    color: rgba(255, 255, 255, 0.8);
}

/* -------------------- Page Headers -------------------- */
.page-header {
    background: linear-gradient(135deg, var(--vert-principal) 0%, var(--vert-secondaire) 100%);
    color: var(--blanc);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* -------------------- Responsive Design -------------------- */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__image {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1.5rem;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--blanc);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px var(--ombre);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav__list.active {
        transform: translateY(0);
    }

    .nav__link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gris-clair);
    }

    .hero {
        padding: 3.5rem 1.5rem;
    }

    .hero__grid {
        gap: 2rem;
    }

    .hero__panel--intro {
        order: 1;
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .hero__panel--content {
        order: 2;
    }

    .hero__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .hero__title {
        font-size: 32px;
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        font-size: 16px;
        margin-bottom: 1.75rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .header__actions {
        display: none;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 74px;
    }

    .services,
    .testimonials {
        grid-template-columns: 1fr;
    }

    .stat__number {
        font-size: 2.5rem;
    }
}

/* -------------------- Form Confirmation Notification -------------------- */
.form-notification {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease;
}

.form-notification--success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------- Nos Partenaires -------------------- */
.partenaires {
    background-color: var(--blanc);
    padding: 60px 2rem;
    text-align: center;
}

.partenaires__title {
    color: #333333;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
}

.partenaires__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem 3rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.partenaires__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 150px;
    text-decoration: none;
}

.partenaires__item--link {
    cursor: pointer;
}

.partenaires__item--link:hover .partenaires__logo-img {
    opacity: 0.7;
    transform: scale(1.05);
}

.partenaires__logo-img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partenaires__name {
    font-size: 0.8rem;
    color: #888888;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .partenaires__grid {
        gap: 2rem;
    }

    .partenaires__item {
        width: 130px;
    }

    .partenaires__logo-img {
        width: 130px;
        height: 85px;
    }
}

@media (max-width: 480px) {
    .partenaires__grid {
        gap: 1.5rem;
    }

    .partenaires__item {
        width: 110px;
    }

    .partenaires__logo-img {
        width: 110px;
        height: 75px;
    }
}

/* -------------------- Quatre Saisons (Vivaldi) -------------------- */
.saisons {
    padding: 60px 2rem;
    background-color: var(--beige-clair);
}

.saisons__title {
    text-align: center;
    color: #333333;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.saisons__intro {
    text-align: center;
    color: #333333;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.saisons__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.saison-card {
    position: relative;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.saison-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.saison-card--printemps .saison-card__bg {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 40%, #f7c948 100%);
}

.saison-card--ete .saison-card__bg {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 40%, #56ab2f 100%);
}

.saison-card--automne .saison-card__bg {
    background: linear-gradient(135deg, #c0392b 0%, #e67e22 40%, #f1c40f 100%);
}

.saison-card--hiver .saison-card__bg {
    background: linear-gradient(135deg, #667db6 0%, #0082c8 40%, #d4e4ef 100%);
}

.saison-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

.saison-card__content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.saison-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.saison-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .saisons__grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------- Réalisations Page -------------------- */
.realisations-hero {
    background-color: var(--blanc);
    padding: 60px 2rem 40px;
    text-align: center;
}

.realisations-hero h1 {
    color: #333333;
    margin-bottom: 1rem;
}

.realisations-hero p {
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.realisations-services {
    background-color: #F5F5F5;
    padding: 60px 2rem;
}

.realisations-services h2 {
    text-align: center;
    color: #333333;
    margin-bottom: 2.5rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.services-list__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: var(--blanc);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    font-weight: 500;
    color: #333333;
}

.services-list__icon {
    width: 36px;
    height: 36px;
    background-color: var(--vert-principal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services-list__icon svg {
    width: 18px;
    height: 18px;
    fill: var(--blanc);
    stroke: var(--blanc);
    stroke-width: 0;
}

/* Category sections */
.realisation-category {
    padding: 60px 2rem;
}

.realisation-category--white {
    background-color: var(--blanc);
}

.realisation-category--gray {
    background-color: #F5F5F5;
}

.realisation-category__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.realisation-category__title {
    color: var(--vert-principal);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.realisation-category__text {
    color: #555555;
    max-width: 800px;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.carousel__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0;
}

.carousel__track::-webkit-scrollbar {
    display: none;
}

.carousel__slide {
    flex: 0 0 auto;
    width: 500px;
    max-width: 80vw;
    scroll-snap-align: start;
}

.carousel__slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 2;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel__btn:hover {
    background-color: var(--blanc);
    transform: translateY(-50%) scale(1.1);
}

.carousel__btn svg {
    width: 20px;
    height: 20px;
    stroke: #333333;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel__btn--prev {
    left: 12px;
}

.carousel__btn--next {
    right: 12px;
}

@media (max-width: 768px) {
    .carousel__slide {
        width: 320px;
        max-width: 85vw;
    }

    .carousel__slide img {
        height: 280px;
    }

    .carousel__btn {
        width: 38px;
        height: 38px;
    }

    .carousel__btn--prev {
        left: 8px;
    }

    .carousel__btn--next {
        right: 8px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .carousel__slide {
        width: 280px;
    }

    .carousel__slide img {
        height: 220px;
    }
}

/* Instagram icon hover */
.instagram-icon {
    transition: fill 0.3s ease;
}

a:hover .instagram-icon {
    fill: #3a6b30;
}
