        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1a472a;
            --primary-light: #2d6b47;
            --secondary: #d4af37;
            --accent: #c41e3a;
            --dark: #0f2818;
            --light: #f8f9fa;
            --text: #2c3e50;
            --text-light: #546e7a;
            --white: #ffffff;
            --border: #e0e0e0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--light);
        }

        /* Header & Navigation */
        header {
            background: var(--white);
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            height: 65px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            padding: 0 2rem;
        }

        /* DROPDOWN MENU */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            list-style: none;
            padding: 2px 0;
            min-width: 240px;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 200;
        }

        .dropdown-menu li {
            padding: 0px 15px;
        }

        .dropdown-menu li a {
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .dropdown-menu li a:hover {
            color: var(--primary);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            flex-wrap: wrap;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        nav a:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background-image: url('/images/equipe.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            padding: 10rem 2rem;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(15, 40, 24, 0.75) 0%,
                rgba(26, 71, 42, 0.70) 50%,
                rgba(15, 40, 24, 0.75) 100%
            );
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
            pointer-events: none;
        }

        .hero h1 {
            font-size: 4.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.15;
            font-weight: 700;
            position: relative;
            z-index: 1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
            letter-spacing: -1px;
        }

        .hero .subtitle {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 2.5rem;
            font-weight: 600;
            position: relative;
            z-index: 1;
            letter-spacing: 0.5px;
            text-shadow: 0 3px 15px rgba(0,0,0,0.35);
        }

        .hero p {
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
            opacity: 1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-tagline {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .tagline-item {
            font-size: 1rem;
            color: var(--white);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255,255,255,0.12);
            padding: 0.7rem 1.4rem;
            border-radius: 50px;
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.15);
            transition: all 0.3s ease;
        }

        .tagline-item:hover {
            background: rgba(255,255,255,0.18);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
        }

        .tagline-item i {
            font-size: 1.2rem;
            color: var(--secondary);
        }

        /* CTA Button */
        .cta-btn {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 0.9rem 2.8rem;
            text-decoration: none;
            border-radius: 50px;
            margin: 1.5rem 0.5rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
            z-index: 1;
        }

        .cta-btn:hover {
            background: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Sections */
        section {
            padding: 5rem 2rem;
        }

        section h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 700;
            position: relative;
        }

        section h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            margin: 1rem auto 0;
            border-radius: 2px;
        }

        /* ========================= */
        /* MOT DU PRESIDENT          */
        /* ========================= */
        .mot-president {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .mot-president::before {
            position: absolute;
            top: 40px;
            left: 40px;
            font-size: 15rem;
            color: rgba(26, 71, 42, 0.04);
            font-family: Georgia, serif;
            line-height: 1;
            pointer-events: none;
        }

        .mot-president-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .president-photo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--secondary);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            margin-bottom: 2rem;
        }

        .mot-president-content blockquote {
            font-size: 1.1rem;
            line-height: 2;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            padding: 0 1rem;
        }

        .mot-president-content blockquote p {
            margin-bottom: 1.2rem;
        }

        .president-signature {
            border-top: 2px solid var(--secondary);
            display: inline-block;
            padding-top: 1.2rem;
            margin-top: 1rem;
        }

        .president-signature .name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.3rem;
        }

        .president-signature .title {
            font-size: 0.95rem;
            color: var(--secondary);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ========================= */
        /* INTERNATIONAL REPRESENTATIONS */
        /* ========================= */

        .international-representations {
            background: linear-gradient(
                135deg,
                rgba(26, 71, 42, 0.05) 0%,
                rgba(15, 40, 24, 0.03) 100%
            );
        }

        .representations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .representation-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 14px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border-top: 4px solid var(--secondary);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .representation-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(212,175,55,0.12),
                transparent 60%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .representation-card:hover::before {
            opacity: 1;
        }

        .representation-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .representation-card h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }

        .representation-card i {
            color: var(--secondary);
            font-size: 1.4rem;
        }

        .representation-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* hover accent line */
        .representation-card::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            width: 0;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .representation-card:hover::after {
            width: 100%;
        }


        /* ========================= */
        /* EVENEMENTS SECTION         */
        /* ========================= */
        .evenements {
            background: var(--light);
        }

        .events-grid {
            display: flex;
            flex-direction: column;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .event-card {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 25px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .event-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            transform: translateY(-4px);
        }

        .event-card-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: 1.5rem 2rem;
        }

        .event-card-header h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

        .event-card-header .event-number {
            font-size: 0.85rem;
            color: var(--secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .event-card-body {
            padding: 2rem;
        }

        .event-card-body p {
            line-height: 1.9;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .event-gallery {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.8rem;
        }

        .event-gallery img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .event-gallery img:hover {
            transform: scale(1.05);
            border-color: var(--secondary);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .event-gallery-placeholder {
            width: 100%;
            height: 150px;
            background: linear-gradient(135deg, rgba(26, 71, 42, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2rem;
            border: 2px dashed var(--border);
        }

        /* Lightbox */
        .lightbox-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .lightbox-overlay.active {
            display: flex;
        }

        .lightbox-overlay img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 0 40px rgba(0,0,0,0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s;
            background: none;
            border: none;
            z-index: 10000;
        }

        .lightbox-close:hover {
            color: var(--secondary);
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
            align-items: flex-start;
        }

        .about-text h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            font-weight: 700;
        }

        .about-text p {
            margin-bottom: 1.2rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        .values-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-top: 2rem;
        }

        .value-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .value-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .value-item div {
            padding-top: 0.3rem;
        }

        /* Vision Mission Values */
        .vmv {
            background: var(--light);
        }

        .vmv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .vmv-card {
            background: var(--white);
            color: var(--text);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
            border-left: 5px solid var(--secondary);
        }

        .vmv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
        }

        .vmv-card h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .vmv-card i {
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .vmv-card p {
            line-height: 1.8;
            color: var(--text-light);
        }

        /* Organization */
        .organization {
            background: var(--white);
        }

        .exec-team {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 2rem 0;
        }

        .team-member {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            text-align: center;
            border-top: 4px solid var(--secondary);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .team-member:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .team-member h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .team-member .role {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            display: block;
        }

        .team-member .studies {
            color: var(--text-light);
            font-size: 0.85rem;
            margin-top: 0.5rem;
            font-style: italic;
        }

        .team-member-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            background: #f0f0f0;
        }

        .team-member-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        /* Poles Section */
        .poles {
            background: linear-gradient(135deg, rgba(26, 71, 42, 0.04) 0%, rgba(15, 40, 24, 0.04) 100%);
        }

        .poles-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        .pole-card {
            background: var(--white);
            padding: 2.2rem;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            border-left: 5px solid var(--secondary);
            transition: all 0.3s ease;
        }

        .pole-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .pole-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 700;
            font-size: 1.15rem;
        }

        .pole-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            flex-shrink: 0;
            font-size: 1.1rem;
        }

        .pole-card p {
            line-height: 1.8;
            color: var(--text-light);
        }

        /* Programs Section */
        .programs {
            background: var(--white);
        }

        .program-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .program-item {
            background: var(--white);
            color: var(--text);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            border-left: 5px solid var(--secondary);
            transition: all 0.3s ease;
        }

        .program-item:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .program-item h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .program-item i {
            color: var(--secondary);
            font-size: 1.5rem;
        }

        .program-item p {
            line-height: 1.8;
            color: var(--text-light);
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: var(--white);
            text-align: center;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 3rem 0;
        }

        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 2.2rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-4px);
        }

        .contact-item i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .contact-item h3 {
            color: var(--white);
            margin-bottom: 1rem;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .contact-item a {
            color: var(--white);
            text-decoration: none;
            word-break: normal;
            overflow-wrap: normal;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--secondary);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            text-align: center;
            padding: 2.5rem;
            border-top: 3px solid var(--secondary);
        }

        footer p {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        /* BURGER MENU */
        .burger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 200;
        }

        .burger span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: flex;
                margin-right: 20px;
            }

            .hero {
                padding: 6rem 1.5rem;
                min-height: 60vh;
                background-attachment: scroll; /* IMPORTANT pour mobile */
                background-position: center;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.3;
                letter-spacing: 0;
            }

            .hero .subtitle {
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
            }

            .hero p {
                font-size: 1rem;
                line-height: 1.6;
                padding: 0 0.5rem;
            }

            .cta-btn {
                padding: 0.8rem 2rem;
                font-size: 0.95rem;
            }

            nav ul {
                gap: 1rem;
                flex-direction: column;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .vmv-grid {
                grid-template-columns: 1fr;
            }

            .exec-team {
                grid-template-columns: 1fr;
            }

            .poles-grid {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            section h2 {
                font-size: 2rem;
            }

            .event-gallery {
                grid-template-columns: repeat(3, 1fr);
            }

            .event-gallery img,
            .event-gallery-placeholder {
                height: 100px;
            }

            .representations-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .event-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile Nav */
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }

            .dropdown-menu {
                position: static;
                box-shadow: none;
                border-radius: 0;
                padding: 0;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: rgba(26, 71, 42, 0.05);
                min-width: auto;
                margin: 0.5rem 0;
            }

            .dropdown-menu li {
                padding: 0.6rem 1.5rem !important;
            }

            .dropdown-menu li a {
                font-size: 0.9rem;
                color: var(--text-light);
            }

            .dropdown.active .dropdown-menu {
                display: flex;
                flex-direction: column;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 100%;
                max-width: 280px;
                background: var(--white);
                box-shadow: -5px 0 20px rgba(0,0,0,0.15);
                padding-top: 5rem;
                transition: right 0.4s ease;
                z-index: 150;
                overflow-y: auto;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 0 1rem;
            }

            nav ul li {
                width: 100%;
                border-bottom: 1px solid var(--border);
                padding: 1rem 0;
            }

            nav ul li:last-child {
                border-bottom: none;
            }

            nav a {
                font-size: 1rem;
                font-weight: 500;
                display: block;
                padding: 0.5rem 0;
            }

            .dropdown-toggle i {
                margin-left: 0.5rem;
                transition: transform 0.3s ease;
            }

            .dropdown.active .dropdown-toggle i {
                transform: rotate(180deg);
            }

            body.menu-open {
                overflow: hidden;
            }

            .hero {
                min-height: 60vh;
            }
        }