@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Tangerine:wght@400;700&display=swap');
   :root {
            --primary: #964415;
            --secondary: #c56e2d;
            --dark: #2c1a0d;
            --light: #f8f2ec;
            --accent: #e9b268;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            height: 100%;
            margin: 0;
            padding: 0;
            color: white;
            overflow: hidden;
        }

        /* Overlay sur la vidéo */
        .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        /* Vidéo optimisée */
        .video-background {
            position: fixed;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: -2;
        }

        /* Preloader */
        #preloader {
            position: fixed;
            width: 100%;
            height: 100vh;
            background: #141010;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        #preloader img {
            width: 150px;
            opacity: 1;
            animation: blink 2s ease-in-out forwards;
        }

        @keyframes blink {
            0%, 20%, 40%, 60%, 80%, 100% { opacity: 1; }
            10%, 30%, 50%, 70%, 90% { opacity: 0; }
        }

        /* Barre de navigation unifiée */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: var(--dark);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--accent);
        }

        .logo-container span {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 30px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .nav-links a.active {
            background: var(--primary);
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: var(--accent);
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-3px) scale(1.1);
        }

        .social-icons-footer {
                display: flex;
                gap: 15px;
                justify-content: center;
                padding: 10px 0;
            }

        .social-icons-footer .icon-img {
                width: 32px;
                height: 32px;
                transition: transform 0.3s;
            }

        .social-icons-footer .icon-img:hover {
                transform: scale(1.1);
            }


        /* Contenu principal */
        #content {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hero {
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
            padding: 20px;
            box-sizing: border-box;
        }

        .hero-text {
            max-width: 800px;
            padding: 40px;
            background: rgba(20, 16, 16, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            opacity: 0;
            animation: animationTexte 1s ease-out forwards 0.5s;
            text-align: center;
        }

        @keyframes animationTexte {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero-text h1 {
            font-size: 3.5rem;
            margin: 0 0 25px 0;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-weight: 700;
            letter-spacing: 1px;
            opacity: 0;
            animation: fadeInSlideUp 1s ease-out forwards 0.8s;
            color: var(--accent);
        }

        @keyframes fadeInSlideUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero-text p {
            font-size: 1.2rem;
            text-align: center;
            line-height: 1.7;
            margin-bottom: 30px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
            opacity: 0;
            animation: fadeInSlideRight 1s ease-out forwards 1s;
        }

        @keyframes fadeInSlideRight {
            0% { opacity: 0; transform: translateX(-20px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        .btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(150, 68, 21, 0.4);
            opacity: 0;
            transform: scale(0.9);
            animation: zoomInColorChange 1s ease-out forwards 1.2s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(150, 68, 21, 0.6);
            background: linear-gradient(135deg, #a3561f, #d87a36);
        }

        .btn-alt {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }

        .btn-alt:hover {
            background: rgba(233, 178, 104, 0.2);
        }

        @keyframes zoomInColorChange {
            0% { opacity: 0; transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* Pied de page */
        footer {
            background: rgba(44, 26, 13, 0.9);
            color: white;
            padding: 30px 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: 'Tangerine', cursive;
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .footer-quote {
            font-style: italic;
            max-width: 600px;
            margin: 0 auto 20px;
            color: var(--accent);
            font-size: 1.2rem;
        }

        .social-icons-footer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .social-icons-footer a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 1.3rem;
            color: var(--accent);
        }

        .social-icons-footer a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-text h1 {
                font-size: 3rem;
            }
            
            .hero-text {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 20px;
                padding: 15px;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .hero-text p {
                font-size: 1.1rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
        }