* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-purple: #9d00ff;
    --dark-bg: #0a0a0f;
    --dark-bg-alt: #0f0f1a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 1003;

    display: flex;
    flex-direction: column;
    align-items: flex-start;}

.logo-text {
    display: block;
    line-height: 1.2;
}

.site-domain {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 0.2rem;
    opacity: 0.9;
    display: block;
    line-height: 1;
}

.logo:hover {
    text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--neon-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 1002;
    background: rgba(15, 15, 26, 0.9);
    border: 2px solid var(--neon-cyan);
    padding: 0.5rem;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 0 10px var(--neon-cyan);
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    margin-left: auto;
    pointer-events: auto;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 300px;
    max-width: 85vw;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
}

.mobile-menu .nav-link {
    font-size: 1.2rem;
    padding: 0.75rem 0;
    display: block;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.mobile-menu-year {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    text-align: center;
    color: var(--neon-cyan);
    font-size: 0.9rem;
}

/* Header on Merci page */
.header.merci-header .nav-menu {
    display: none;
}

.header.merci-header .mobile-menu-toggle {
    display: flex !important;
}

/* Neon Canvas Background */
.neon-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Sections */
section {
    padding: 6rem 2rem;
    position: relative;
    min-height: 50vh;
}

/* Text Content Sections */
.text-section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.text-section h3 {
    color: var(--neon-cyan);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.text-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.text-section .date {
    color: var(--neon-pink);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* First section on pages without hero - add top padding for header */
body:not(.has-hero) section:first-of-type {
    padding-top: 8rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--neon-cyan);
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 2rem;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    display: block;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan),
        0 0 30px var(--neon-cyan);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    box-shadow: 0 0 30px var(--neon-cyan);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--neon-cyan),
            0 0 20px var(--neon-cyan),
            0 0 30px var(--neon-cyan);
    }
    50% {
        text-shadow: 
            0 0 20px var(--neon-cyan),
            0 0 30px var(--neon-cyan),
            0 0 40px var(--neon-cyan),
            0 0 50px var(--neon-cyan);
    }
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: rgba(15, 15, 26, 0.6);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.highlight-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out;
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.highlight-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.highlight-content {
    padding: 2rem;
}

.highlight-content h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: rgba(15, 15, 26, 0.6);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.program-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.program-content {
    padding: 2rem;
}

.program-content h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.program-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.program-date {
    color: var(--neon-pink);
    font-weight: bold;
    margin-top: 1rem;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(15, 15, 26, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: color 0.3s;
    pointer-events: auto;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    color: var(--neon-cyan);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--neon-cyan);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Sections */
.about-section {
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-content-reverse {
    grid-template-columns: 1fr 1fr;
}

.about-content-reverse .about-image-wrapper {
    order: 2;
}

.about-content-reverse .about-text {
    order: 1;
}

.about-image-wrapper {
    width: 100%;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
}

.team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    margin-bottom: 1rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.team-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--text-secondary);
}

/* Key Facts */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fact-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(15, 15, 26, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.fact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fact-number {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.fact-label {
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fact-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Modern Info Blocks Section */
.modern-info-section {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.1);
}

.info-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.info-block {
    background: rgba(15, 15, 26, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-block:hover::before {
    transform: scaleX(1);
}

.info-block:hover {
    transform: translateY(-8px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
    background: rgba(15, 15, 26, 0.85);
}

.info-block-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.info-block-header h3 {
    color: var(--neon-cyan);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.info-block-content {
    color: var(--text-secondary);
}

.info-block-content p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.info-block-content p:last-child {
    margin-bottom: 0;
}

/* Performance Sections */
.performance-section {
    margin-bottom: 5rem;
}

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.performance-content-reverse {
    grid-template-columns: 1fr 1fr;
}

.performance-content-reverse .performance-image-wrapper {
    order: 2;
}

.performance-content-reverse .performance-text {
    order: 1;
}

.performance-image-wrapper {
    width: 100%;
}

.performance-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.performance-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.performance-text h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--neon-cyan);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* Contact Section */
.contact-info {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(15, 15, 26, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
}

.contact-item h3 {
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    margin: 3rem 0;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 15, 26, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--text-primary);
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-button:hover {
    box-shadow: 0 0 30px var(--neon-cyan);
    transform: translateY(-2px);
}

/* Merci Page */
.merci-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.merci-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.merci-title {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    text-shadow: 
        0 0 10px var(--neon-cyan),
        0 0 20px var(--neon-cyan);
}

.merci-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.merci-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.merci-button:hover {
    box-shadow: 0 0 30px var(--neon-cyan);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--dark-bg-alt);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    pointer-events: auto;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    padding: 0.5rem;
    margin: -0.5rem;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s;
}

.footer-link:hover {
    color: var(--neon-cyan);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-year {
    color: var(--neon-cyan);
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    max-width: 500px;
    z-index: 3000;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
    animation: slideUp 0.5s ease-out;
}

.cookie-popup.active {
    display: block;
}

.cookie-popup h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.cookie-popup p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--neon-cyan);
    background: transparent;
    color: var(--neon-cyan);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cookie-btn:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.cookie-btn.accept {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

.cookie-btn.accept:hover {
    box-shadow: 0 0 30px var(--neon-cyan);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Policy Modal */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 4000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
    pointer-events: auto;
    touch-action: manipulation;
}

.policy-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.policy-modal-content {
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    pointer-events: auto;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
    animation: slideUpModal 0.4s ease-out;
    margin: 2rem;
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--neon-cyan);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    transition: all 0.3s;
    background: transparent;
    line-height: 1;
    pointer-events: auto;
    touch-action: manipulation;
    z-index: 4001;
    -webkit-tap-highlight-color: transparent;
}

.policy-modal-close:hover {
    background: var(--neon-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-cyan);
    transform: rotate(90deg);
}

.policy-modal-content h2 {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-shadow: 0 0 10px var(--neon-cyan);
    padding-right: 3rem;
}

.policy-modal-content h3 {
    color: var(--neon-cyan);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-modal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-modal-content ul,
.policy-modal-content ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-modal-content li {
    margin-bottom: 0.5rem;
}

.policy-modal-content strong {
    color: var(--neon-cyan);
}

.policy-modal-content a {
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px solid var(--neon-cyan);
    transition: all 0.3s;
}

.policy-modal-content a:hover {
    color: var(--neon-pink);
    border-bottom-color: var(--neon-pink);
}

.policy-date {
    color: var(--neon-pink);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .header-container {
        padding: 0;
        gap: 1rem;
    }

    .logo {
        font-size: 1.3rem;
        flex-shrink: 0;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;}

    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1002;
        margin-left: auto;
        flex-shrink: 0;
        order: 2;
        pointer-events: auto !important;
        touch-action: manipulation;
    }

    .header nav {
        display: none !important;
    }

    .header nav .nav-menu {
        display: none !important;
    }

    .mobile-menu {
        width: 280px;
        max-width: 80vw;
    }

    .mobile-menu .nav-menu {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu .nav-link {
        font-size: 1.2rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        transition: all 0.3s;
    }

    .mobile-menu .nav-link:hover {
        color: var(--neon-cyan);
        padding-left: 1rem;
    }

    /* Ensure mobile menu overlay doesn't conflict with hero */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .about-content-reverse,
    .performance-content,
    .performance-content-reverse {
        grid-template-columns: 1fr;
    }

    .about-content-reverse .about-image-wrapper,
    .about-content-reverse .about-text,
    .performance-content-reverse .performance-image-wrapper,
    .performance-content-reverse .performance-text {
        order: 0;
    }

    .about-image,
    .performance-image {
        height: 300px;
    }

    .highlights-grid,
    .programs-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-blocks-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-block {
        padding: 2rem;
    }

    .info-block-header h3 {
        font-size: 1.5rem;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .cookie-popup {
        left: 1rem;
        right: 1rem;
        transform: none;
        max-width: none;
    }

    .policy-modal {
        padding: 1rem;
    }

    .policy-modal-content {
        padding: 2rem 1.5rem;
        max-height: 95vh;
        margin: 1rem;
    }

    .policy-modal-content h2 {
        font-size: 1.5rem;
        padding-right: 2.5rem;
    }

    .policy-modal-content h3 {
        font-size: 1.2rem;
    }

    .policy-modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .header {
        padding: 0.75rem;
    }

    .header-container {
        padding: 0;
    }

    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }

    .mobile-menu-toggle span {
        width: 22px;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .merci-title {
        font-size: 2rem;
    }
}

