 /* RESET ET STYLES DE BASE */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #8B4513;
            --secondary: #D4A017;
            --light: #F5DEB3;
            --dark: #3d3c3c;
            --text: #333;
            --cream: #faf5ed;
            --gold-light: #e6c56f;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        body {
            background-color: var(--cream);
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        /* NAVBAR */
        .navbar {
            background: linear-gradient(to right, var(--dark), var(--primary));
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 8%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .logo img {
            height: 55px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-links li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-links li a:hover {
            color: var(--secondary);
        }

        /* TITRE DE PAGE */
        .page-title-container {
            text-align: center;
            padding: 40px 0 20px;
            background: linear-gradient(to bottom, rgba(139, 69, 19, 0.1), transparent);
            position: relative;
            overflow: hidden;
        }

        .page-title {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .page-subtitle {
            font-size: 1.2rem;
            color: var(--dark);
            max-width: 700px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* SECTION GALLERY */
        .gallery-container {
            display: flex;
            flex-direction: column;
            gap: 70px;
            padding: 50px 8%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery {
            display: flex;
            gap: 40px;
            align-items: center;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }

        .gallery:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .image-slider {
            width: 50%;
            overflow: hidden;
            border-radius: 12px;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .image-slider img {
            width: 100%;
            display: none;
            border-radius: 12px;
            transition: opacity 2.2s ease-in-out;
            aspect-ratio: 16/9;
            object-fit: cover;
        }

        .image-slider img.active {
            display: block;
            animation: fadeIn 1.2s;
        }

        .slider-controls {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .slider-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-indicator.active {
            background: var(--secondary);
            transform: scale(1.2);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            z-index: 10;
        }

        .image-slider:hover .slider-nav {
            opacity: 1;
        }

        .slider-nav:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        .slider-prev {
            left: 15px;
        }

        .slider-next {
            right: 15px;
        }

        .description {
            width: 50%;
            padding: 10px 20px;
        }

        .description h2 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .description h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .description p {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            margin-top: 20px;
        }

        .service-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
        }

        .service-features li::before {
            content: '✓';
            color: var(--secondary);
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* FOOTER */
        .footer {
            background: linear-gradient(to right, var(--dark), var(--primary));
            text-align: center;
            color: var(--light);
            padding: 40px 20px 20px;
            margin-top: 80px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--secondary), var(--gold-light));
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            max-width: 600px;
        }

        .social-icons {
            display: flex;
            gap: 25px;
            margin-bottom: 30px;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .social-icons img {
            width: 24px;
            filter: brightness(0) invert(1);
        }

        .copyright {
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ANIMATIONS */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .gallery {
                gap: 25px;
                padding: 25px;
            }
            
            .description h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 5%;
            }
            
            .nav-links {
                gap: 15px;
            }
            
            .page-title {
                font-size: 2.5rem;
            }
            
            .gallery {
                flex-direction: column;
            }
            
            .image-slider, .description {
                width: 100%;
            }
            
            .image-slider {
                margin-bottom: 20px;
            }
            
            .gallery-container {
                padding: 40px 5%;
                gap: 50px;
            }
        }

        @media (max-width: 576px) {
            .page-title {
                font-size: 2rem;
            }
            
            .page-subtitle {
                font-size: 1rem;
            }
            
            .nav-links {
                gap: 10px;
            }
            
            .nav-links li a {
                font-size: 0.95rem;
                padding: 6px 10px;
            }
            
            .gallery {
                padding: 20px;
            }
            
            .description h2 {
                font-size: 1.6rem;
            }
            
            .description p {
                font-size: 1rem;
            }
            
            .social-icons {
                gap: 15px;
            }
            
            .social-icons a {
                width: 42px;
                height: 42px;
            }
        }