@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Edu+NSW+ACT+Foundation:wght@400;500;600;700&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
body {
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    overflow-x: hidden;
}
        
/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}     
header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
} 
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo {
    width: 50px;
    height: 50px;
}
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}
        
.nav-links a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #D89B2A;
} 
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}
        
.hamburger span {
    width: 25px;
    height: 3px;
    background: #4B5563;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}     
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #D89B2A;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #D89B2A;
}
        
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 80px;
}
        
.mobile-menu.active {
    right: 0;
}
        
.mobile-menu ul {
    list-style: none;
    padding: 0;
}
        
.mobile-menu ul li {
            border-bottom: 1px solid #E5E7EB;
}
        
.mobile-menu ul li a {
    display: block;
    padding: 20px 30px;
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: all 0.3s;
}
        
.mobile-menu ul li a:hover {
    background: #F9FAFB;
    color: #D89B2A;
    padding-left: 40px;
}
        
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
        
.mobile-overlay.active {
    display: block;
    opacity: 1;
}
        
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
        
.close-menu:hover {
    background: #D89B2A;
    transform: rotate(90deg);
}
        
.close-menu:hover i {
    color: white;
}
        
.close-menu i {
    color: #4B5563;
    font-size: 18px;
}
        
.user-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
        
.user-icon:hover {
    border-color: #D89B2A;
    transform: scale(1.1);
}
        
        /* Hero Section */
.hero {
    margin-top: 80px;
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/hero.jpg') no-repeat center center/cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
        
.hero-content {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}
        
        
.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}
        
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
        
.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
    text-align: center;
    align-items: center;
}
        
.btn-primary {
    background: linear-gradient(135deg, #D89B2A 0%, #E8A835 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
        
.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(216, 155, 42, 0.4);
}
        
/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}
        
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}
        
.feature-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}
        
.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }
        
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #D89B2A;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
        
.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
}
        
/* Promo Banniére */
.promo-banner {
    background: linear-gradient(135deg, #D89B2A 0%, #E8A835 100%);
    padding: 40px 0;
    text-align: center;
    color: white;
    margin: 60px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
        
.promo-banner h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
        
.btn-secondary {
    background: white;
    color: #D89B2A;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
        
.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}
        
/* Courses Section */
.courses {
    padding: 80px 0;
    background: #F9FAFB;
}
        
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1F2937;
}
        
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
        
.course-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}
        
.course-card:nth-child(1) { animation-delay: 0.2s; }
.course-card:nth-child(2) { animation-delay: 0.4s; }
.course-card:nth-child(3) { animation-delay: 0.6s; }
        
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(216, 155, 42, 0.2);
}
        
.course-title {
    color: #D89B2A;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
        
.course-price {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
}
        
.course-points {
    list-style: none;
    margin-bottom: 25px;
}
        
.course-points li {
    padding: 8px 0;
    color: #6B7280;
    position: relative;
    padding-left: 25px;
}
        
.course-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D89B2A;
    font-weight: bold;
}
        
.btn-outline {
    width: 100%;
    padding: 12px;
    border: 2px solid #D89B2A;
    background: white;
    color: #D89B2A;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
        
.btn-outline:hover {
    background: #D89B2A;
    color: white;
}
        
/*  Section Ecosysteme */
.ecosystem {
    padding: 80px 0;
    background: white;
}
        
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
        
.ecosystem-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}
        
.ecosystem-card:nth-child(1) { animation-delay: 0.2s; }
.ecosystem-card:nth-child(2) { animation-delay: 0.4s; }
.ecosystem-card:nth-child(3) { animation-delay: 0.6s; }
.ecosystem-card:nth-child(4) { animation-delay: 0.8s; }
        
.ecosystem-card:hover {
    border-color: #D89B2A;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
        
.ecosystem-icon {
    font-size: 50px;
    color: #D89B2A;
    margin-bottom: 20px;
}
        
.ecosystem-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
        
.ecosystem-card p {
    color: #6B7280;
    font-size: 14px;
}
        
/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #F9FAFB;
}
        
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
        
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}
        
.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }
        
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid #F3F4F6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
        
.testimonial-text {
font-family: 'Edu NSW ACT Foundation', cursive;
    font-size: 16px;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 80px;
}
        
.testimonial-name {
    font-weight: 600;
    color: #1F2937;
}
    
 /*  Section  Evenement*/
.events {
    padding: 80px 0;
    background: white;
}
        
.events-cta {
    background: #1F2937;
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    color: white;
    margin-top: 50px;
}
        
.events-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}
        
.events-cta p {
    font-size: 18px;
     margin-bottom: 30px;
}
        
.events-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
        
/* Footer */
footer {
    background: linear-gradient(135deg, #D89B2A 0%, #E8A835 100%);
    color: white;
    padding: 60px 0 30px;
}
        
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}        
.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}       
.footer-section ul {
    list-style: none;
}
        
.footer-section ul li {
    margin-bottom: 10px;
}        
.footer-section a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}
        
.footer-section a:hover {
    opacity: 0.8;
}
        
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
        
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
        
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
            
    .hamburger {
        display: flex;
    }
            
    .hero h1 {
        font-size: 32px;
    }
            
    .features-grid,
    .courses-grid,
    .ecosystem-grid,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
            
    .events-buttons {
        flex-direction: column;
    }
}
        
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
            
    .hamburger {
        display: flex;
    }
}