/* Variables de thème - Version Vert & Marron sur papier vieilli */
:root {
    --primary: #2C5F2D;
    /* Vert forêt (remplace le vert vif) */
    --primary-dark: #1F4A2F;
    /* Vert plus foncé */
    --primary-soft: #809671;
    /* Vert olive doux (pour accents) */
    --wood: #8B5A2B;
    /* Marron boisé (accent principal) */
    --wood-light: #B88B4A;
    /* Marron clair (accent secondaire) */
    --dark: #3E2E23;
    /* Marron très foncé (pour le texte principal) */
    --darker: #2C1E16;
    /* Presque noir (pour footer) */
    --light: #FDF8F2;
    /* Blanc cassé / Papier vieilli (fond général) */
    --gray: #A89F91;
    /* Gris-beige (pour texte secondaire) */
    --dark-gray: #5E4B3C;
    /* Marron-gris (pour texte moins important) */
    --accent: #B88B4A;
    /* Marron clair (accent) */
    --transition-speed: 0.3s;
    --bg-alt: #F5EFE6;
    /* Variante de fond pour sections alternées (légèrement plus foncé) */
    --card-bg: #FFFFFF;
    /* Fond des cartes (blanc pur pour contraster) */
}

/* Réinitialisation et styles globaux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    /* Fond blanc cassé */
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

a:focus {
    outline: 2px dashed var(--primary);
    outline-offset: 4px;
}

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    /* Vert forêt */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--wood);
    /* Marron boisé */
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    /* Vert forêt */
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    /* Vert plus foncé */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 95, 45, 0.3);
    /* Ombre verte */
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    /* Vert forêt */
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* Logo */
.logo-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    /* Vert forêt */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
}

/* Logo image */
.logo-image {
    height: 80px;
    width: auto;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
    margin-top: -15px;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Ajustement responsive pour le logo */
@media (max-width: 768px) {
    .logo-image {
        height: 80px;
    }
}

/* Navbar */
header {
    position: relative;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    background-color: rgba(253, 248, 242, 0.95);
    /* Blanc cassé transparent */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 90, 43, 0.1);
    /* Marron léger */
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(253, 248, 242, 0.98);
    /* Blanc cassé plus opaque */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo {
    height: 50px;
    transition: all var(--transition-speed) ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    /* Vert forêt */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar-links li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.navbar-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--wood);
    /* Marron boisé (au lieu du vert) */
    transition: width var(--transition-speed) ease;
}

.navbar-links li a:hover::after,
.navbar-links li a.active::after {
    width: 100%;
}

.navbar-links li a:hover {
    color: var(--wood);
    /* Marron au survol */
}

.navbar-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
}

/* Section Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(rgba(253, 248, 242, 0.85), rgba(245, 239, 230, 0.9)),
        /* Filtre blanc cassé */
        url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    /* Vert forêt */
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--wood);
    /* Marron */
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Section À propos */
.about {
    background-color: var(--bg-alt);
    /* Fond alterné légèrement plus foncé */
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    /* Vert forêt */
}

.about-content p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    background-color: var(--primary);
    /* Vert forêt */
    color: var(--light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Section Produits */
.products {
    background-color: var(--light);
    /* Blanc cassé */
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--card-bg);
    /* Blanc pur */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 95, 45, 0.15);
    /* Ombre verte légère */
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
    /* Vert forêt */
}

.product-info p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wood);
    /* Marron boisé */
    margin-bottom: 15px;
}

/* Section Galerie */
.gallery {
    background-color: var(--bg-alt);
    /* Fond alterné */
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 90, 43, 0.2);
    /* Ombre marron */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 30, 22, 0.8), transparent);
    /* Dégradé marron foncé */
    color: var(--light);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-load-more {
    text-align: center;
}

.gallery-load-more.hidden {
    display: none;
}

.gallery-loading {
    text-align: center;
    padding: 40px 0;
    color: var(--dark-gray);
}

.gallery-error {
    text-align: center;
    padding: 40px 0;
    color: #b71c1c;
    background-color: #ffebee;
    border-radius: 10px;
    margin: 20px 0;
}

/* Styles pour les filtres de galerie */
.gallery-filters {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary);
    /* Vert forêt */
    background-color: transparent;
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-transform: capitalize;
}

.filter-btn:hover {
    background-color: var(--primary);
    color: var(--light);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* Animation de transition pour les images filtrées */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-image-container {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-nav button {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.lightbox-nav button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav button:disabled:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: none;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--light);
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 1rem;
    max-width: 80%;
    margin: 0 auto;
    border-radius: 5px;
}

/* Section Avantages */
.advantages {
    background-color: var(--light);
    /* Blanc cassé */
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--card-bg);
    /* Blanc pur */
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
    border-top: 4px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--wood);
    /* Marron boisé */
}

.advantage-icon {
    font-size: 3rem;
    color: var(--primary);
    /* Vert forêt */
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.advantage-card p {
    color: var(--dark-gray);
}

/* Section Témoignages - Version sans avatar */
.testimonials {
    background-color: var(--bg-alt);
    /* Fond alterné */
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background-color: var(--card-bg);
    /* Blanc pur */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Guillemets décoratifs */
.testimonial-text::before {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    /* Vert forêt */
    opacity: 0.2;
    position: absolute;
    top: -50px;
    left: -40px;
    font-family: Georgia, serif;
}

.testimonial-text::after {
    content: '"';
    font-size: 5rem;
    color: var(--primary);
    /* Vert forêt */
    opacity: 0.2;
    position: absolute;
    bottom: -100px;
    right: -40px;
    font-family: Georgia, serif;
}

/* En-tête du témoignage avec nom et localisation */
.testimonial-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(139, 90, 43, 0.1);
    /* Marron léger */
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    /* Vert forêt */
    font-family: 'Playfair Display', serif;
}

.testimonial-location {
    font-size: 1rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-location i {
    color: var(--wood);
    /* Marron */
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-left: auto;
    display: flex;
    gap: 5px;
}

.testimonial-rating .star {
    color: #D4AF37;
    /* Or (reste sur or pour les étoiles) */
    font-size: 1.2rem;
}

.testimonial-rating .star.empty {
    color: #e0e0e0;
}

/* Texte du témoignage */
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    margin-left: 20px;
    margin-right: 20px;
    text-align: justify;
}

.testimonial-text p {
    text-justify: auto;
}

/* Navigation des témoignages */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.testimonial-dot:hover {
    background-color: var(--primary);
    /* Vert forêt */
    transform: scale(1.2);
}

.testimonial-dot.active {
    background-color: var(--primary);
    /* Vert forêt */
    width: 30px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .testimonial-rating {
        margin-left: 0;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-card::before {
        font-size: 4rem;
        top: 5px;
        right: 10px;
    }
}

/* =============== STYLES POUR LE MODAL DES TÉMOIGNAGES =============== */

/* Bouton d'action */
.testimonials-actions {
    text-align: center;
    margin-top: 30px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card-bg);
    /* Blanc pur */
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
    /* Vert forêt */
    color: var(--light);
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--light);
}

.modal-close {
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    line-height: 1;
    color: var(--light);
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 30px;
}

/* Formulaire dans le modal */
#testimonialForm .form-group {
    margin-bottom: 20px;
}

#testimonialForm label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

#testimonialForm .required {
    color: #b71c1c;
}

#testimonialForm input,
#testimonialForm textarea,
#testimonialForm select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--light);
    /* Blanc cassé pour les champs */
}

#testimonialForm input:focus,
#testimonialForm textarea:focus,
#testimonialForm select:focus {
    border-color: var(--primary);
    /* Vert forêt */
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
    /* Ombre verte */
}

#testimonialForm textarea {
    resize: vertical;
    min-height: 120px;
}

#testimonialForm .form-text {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-top: 5px;
    display: block;
}

/* Options de note */
.rating-input select {
    background-color: var(--light);
    cursor: pointer;
}

/* Actions du formulaire */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.form-actions .btn {
    min-width: 120px;
}

/* Message de succès */
.success-message {
    text-align: center;
    padding: 20px;
}

.success-message i {
    color: var(--primary);
    /* Vert forêt */
    margin-bottom: 20px;
}

.success-message h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.success-message p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* Responsive pour le modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .modal-header h3 {
        font-size: 1.2rem;
    }

    #testimonialForm input,
    #testimonialForm textarea,
    #testimonialForm select {
        padding: 10px;
    }
}

/* Section Contact */
.contact {
    background-color: var(--light);
    /* Blanc cassé */
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    /* Vert forêt */
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    /* Vert forêt */
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0px;
    color: var(--dark);
}

.contact-text p {
    margin-bottom: 0;
    color: var(--dark-gray);
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    /* Vert forêt */
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.contact-social a:hover {
    background-color: var(--wood);
    /* Marron au survol */
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--card-bg);
    /* Blanc pur */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color var(--transition-speed);
    background-color: var(--light);
    /* Blanc cassé */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    /* Vert forêt */
    outline: none;
}

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

/* Footer */
.footer {
    background-color: var(--darker);
    /* Marron très foncé */
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-soft);
    /* Vert olive doux */
}

.footer-about p {
    color: var(--gray);
    margin-bottom: 20px;
}

.footer-links h3 {
    font-size: 1.3rem;
    color: var(--primary-soft);
    /* Vert olive doux */
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--wood-light);
    /* Marron clair au survol */
}

.footer-links i {
    color: var(--primary-soft);
    /* Vert olive doux */
    font-size: 0.8rem;
}

.footer-contact h3 {
    font-size: 1.3rem;
    color: var(--primary-soft);
    /* Vert olive doux */
    margin-bottom: 20px;
}

.footer-contact p {
    color: var(--gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-soft);
    /* Vert olive doux */
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all var(--transition-speed) ease;
}

.footer-social a:hover {
    background-color: var(--wood-light);
    /* Marron clair au survol */
    color: var(--light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Animation Bounce */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--card-bg);
        /* Blanc pur */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: all 0.5s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-links.active {
        left: 0;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-title {
        display: none;
    }

    .hero-content {
        align-content: center;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        align-items: center;
        flex-direction: column;
        gap: 15px;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .product-info {
        padding: 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

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

    .lightbox-nav {
        padding: 0 10px;
    }

    .lightbox-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}