@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&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');
        
/* ✅ Vidéo de fond plein écran */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.7); /* assombrit la vidéo */
            pointer-events: none;     /* évite les clics sur la vidéo */
        }


        /* ✅ Style global */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            position: relative;
            z-index: 1;
            color: #fff;
            background: rgba(44, 26, 13, 0.6);
            overflow-x: hidden;
        }

        /* Barre de navigation */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: rgba(44, 26, 13, 0.85);
            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 #e9b268;
        }

        .logo-container span {
            font-size: 2rem;
            font-weight: 700;
            color: #e9b268;
            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: #964415;
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: #e9b268;
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-3px) scale(1.1);
        }

        /* En-tête */
        .hero {
            text-align: center;
            padding: 100px 5% 60px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #e9b268;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            position: relative;
            display: inline-block;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #c56e2d;
            border-radius: 2px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 30px auto;
            color: #e0e0e0;
        }

        /* Contenu principal */
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        .section-title {
            font-size: 2.2rem;
            color: #e9b268;
            margin: 40px 0 30px;
            position: relative;
            padding-bottom: 15px;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background: #c56e2d;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .card-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .card-content {
            padding: 25px;
        }

        .card h3 {
            font-size: 1.8rem;
            color: #e9b268;
            margin-bottom: 15px;
        }

        .card p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #ddd;
        }

        .history-content {
            background: rgba(40, 23, 12, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .history-content p {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #eee;
            text-align: justify;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            margin-top: 40px;
        }

        .timeline-item {
            position: relative;
            padding: 30px 0 30px 60px;
            border-left: 3px solid #c56e2d;
            margin-left: 20px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 35px;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #e9b268;
            border: 3px solid #964415;
        }

        .timeline-year {
            font-size: 1.4rem;
            font-weight: 700;
            color: #e9b268;
            margin-bottom: 10px;
        }

        .timeline-content {
            background: rgba(150, 68, 21, 0.3);
            padding: 20px;
            border-radius: 10px;
        }

        .highlight {
            color: #e9b268;
            font-weight: 600;
        }

        /* Carrousel */
        .carousel-container {
            position: relative;
            max-width: 900px;
            margin: 50px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-item {
            min-width: 100%;
        }

        .carousel-item img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.6);
            padding: 15px;
            text-align: center;
            font-size: 1.1rem;
        }

        .carousel-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 15px;
        }

        .carousel-btn {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: #e9b268;
            color: #2c1a0d;
        }

        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #e9b268;
            transform: scale(1.2);
        }

        /* Culture et parfums */
        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .culture-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(233, 178, 104, 0.2);
        }

        .culture-card:hover {
            background: rgba(150, 68, 21, 0.2);
            transform: translateY(-5px);
        }

        .culture-icon {
            font-size: 3rem;
            color: #e9b268;
            margin-bottom: 20px;
        }

        .culture-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #e9b268;
        }

        /* Pied de page */
        footer {
            background: rgba(44, 26, 13, 0.95);
            color: white;
            padding: 60px 5% 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .footer-section {
            padding: 20px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #e9b268;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #e9b268;
        }

        .footer-section p, .footer-section a {
            color: #ddd;
            margin-bottom: 15px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #e9b268;
        }

        .footer-section i {
            margin-right: 10px;
            width: 20px;
            color: #e9b268;
        }

        .partner-logos {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            padding: 10px 0;
        }

        .partner-logos img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid #ccc;
            transition: transform 0.3s, border-color 0.3s;
        }

        .partner-logos img:hover {
            transform: scale(1.1);
            border-color: #007BFF;
        }


        .social-icons-footer {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .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;
        }

        .social-icons-footer a:hover {
            background: #964415;
            transform: translateY(-5px);
        }

        .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);
        }


        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .carousel-item img {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 20px;
                padding: 15px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .history-content {
                padding: 25px;
            }
            
            .carousel-item img {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .card h3 {
                font-size: 1.5rem;
            }
            
            .carousel-item img {
                height: 250px;
            }
        }
