@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=Space+Grotesk:wght@300..700&family=Tangerine:wght@400;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: linear-gradient(rgba(20, 20, 30, 0.9), rgba(20, 20, 30, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a1a2e"/><path d="M0 0L100 100M100 0L0 100" stroke="%23262645" stroke-width="1"/></svg>');
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* Barre de navigation */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: rgba(20, 20, 30, 0.95);
            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 #c9a145;
        }
        
        .logo-container span {
            font-family: 'Times New Roman', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #c9a145;
            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: #8e3a0a;
            color: white;
        }
        
        /* En-tête héroïque */
        .hero {
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="200" height="200" fill="none" stroke="%23c9a145" stroke-width="1" stroke-dasharray="10,5"/></svg>');
            opacity: 0.1;
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #c9a145;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            font-family: 'Times New Roman', serif;
        }
        
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
            color: #e0e0e0;
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            margin-top: 10px;
            color: #d4b15f;
            font-style: italic;
        }
        
        /* Contenu principal */
        .content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        
        .section-title {
            font-size: 2.5rem;
            color: #c9a145;
            margin: 60px 0 30px;
            position: relative;
            padding-bottom: 15px;
            text-align: center;
            font-family: 'Times New Roman', serif;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 3px;
            background: #c56e2d;
        }
        
        .history-content {
            background: rgba(30, 30, 45, 0.8);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(201, 161, 69, 0.3);
        }
        
        .history-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #eee;
            text-align: justify;
        }
        
        .highlight {
            color: #c9a145;
            font-weight: 600;
        }
        
        .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: #c9a145;
            border: 3px solid #8e3a0a;
        }
        
        .timeline-year {
            font-size: 1.4rem;
            font-weight: 700;
            color: #c9a145;
            margin-bottom: 10px;
        }
        
        .timeline-content {
            background: rgba(142, 58, 10, 0.3);
            padding: 20px;
            border-radius: 10px;
        }
        
        /* Galerie d'images */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 300px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            padding: 15px;
            text-align: center;
        }
        
        /* Citation */
        .quote {
            max-width: 800px;
            margin: 60px auto;
            padding: 40px;
            text-align: center;
            border-left: 5px solid #c9a145;
            background: rgba(30, 30, 45, 0.8);
            position: relative;
        }
        
        .quote::before {
            content: '"';
            position: absolute;
            top: -30px;
            left: 20px;
            font-size: 8rem;
            color: rgba(201, 161, 69, 0.3);
            font-family: Georgia, serif;
        }
        
        .quote-text {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 20px;
            color: #d4b15f;
        }
        
        .quote-author {
            font-size: 1.2rem;
            color: #c9a145;
            font-weight: 600;
        }
        
        /* Héritage */
        .legacy-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .legacy-card {
            background: rgba(30, 30, 45, 0.8);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(201, 161, 69, 0.2);
        }
        
        .legacy-card:hover {
            background: rgba(142, 58, 10, 0.3);
            transform: translateY(-5px);
        }
        
        .legacy-icon {
            font-size: 3rem;
            color: #c9a145;
            margin-bottom: 20px;
        }
        
        .legacy-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #c9a145;
        }
        
        /* Pied de page */
        footer {
            background: rgba(20, 20, 30, 0.95);
            color: white;
            padding: 60px 5% 30px;
            margin-top: 80px;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto 40px;
        }
        
        .footer-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            color: #c9a145;
            margin-bottom: 20px;
        }
        
        .footer-quote {
            font-style: italic;
            max-width: 600px;
            margin: 0 auto 30px;
            color: #d4b15f;
            font-size: 1.2rem;
        }
        
        .social-icons-footer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
        }
        
        .social-icons-footer 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;
            font-size: 1.5rem;
            color: #c9a145;
        }
        
        .social-icons-footer a:hover {
            background: #8e3a0a;
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animated {
            animation: fadeIn 1s ease-out forwards;
            opacity: 0;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }
        .delay-5 { animation-delay: 1s; }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 20px;
                padding: 15px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p, .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .history-content {
                padding: 25px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .quote-text {
                font-size: 1.2rem;
            }
        }
    