     /* Section Hero avec background image */
        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                              url('./assets/images/ze.jpg');
            background-size: cover;
            background-position: center;
       
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        /* Titre principal en police gothique */
        .hero-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 700;
            color: #ffffff;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
            margin-bottom: 2rem;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out;
        }

        /* Sous-titre */
        .hero-subtitle {
            font-family: 'Cinzel', serif;
            font-size: clamp(1rem, 3vw, 1.5rem);
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            margin-bottom: 3rem;
            font-weight: 400;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* Bouton Explorer */
        .hero-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg,rgb(51, 38, 162), #b8941f);
            color: #fff;
            text-decoration: none;
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid transparent;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
            position: relative;
            overflow: hidden;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .hero-btn:hover::before {
            left: 100%;
        }

        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
            background: linear-gradient(45deg,rgb(131, 173, 176),rgb(50, 6, 6));
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .burger {
                display: flex;
            }

            .hero-section {
                background-attachment: scroll;
                padding: 2rem 1rem;
            }

            .hero-title {
                margin-bottom: 1.5rem;
            }

            .hero-subtitle {
                margin-bottom: 2rem;
            }

            .hero-btn {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 1rem;
            }
            
            .hero-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Animation scroll pour révéler le contenu */
        @media (prefers-reduced-motion: no-preference) {
            .hero-section::after {
                content: '';
                position: absolute;
                bottom: 2rem;
                left: 50%;
                transform: translateX(-50%);
                width: 2px;
                height: 30px;
                background: rgba(255, 255, 255, 0.5);
                animation: scrollIndicator 2s infinite;
            }
        }

        @keyframes scrollIndicator {
            0%, 100% {
                opacity: 0;
                transform: translateX(-50%) translateY(0);
            }
            50% {
                opacity: 1;
                transform: translateX(-50%) translateY(10px);
            }
        }