/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-deep: #06070a;
    --color-bg-dark: #0c0e15;
    --color-bg-card: rgba(19, 22, 34, 0.6);
    --color-border-glass: rgba(255, 255, 255, 0.07);
    --color-border-glow: rgba(255, 255, 255, 0.15);
    
    --color-text-bright: #ffffff;
    --color-text-main: #e2e8f0;
    --color-text-muted: #94a3b8;
    
    /* Neon Accent Colors */
    --accent-cyan: #00f0ff;
    --accent-cyan-glow: rgba(0, 240, 255, 0.4);
    --accent-amber: #ff9f00;
    --accent-amber-glow: rgba(255, 159, 0, 0.4);
    --accent-magenta: #ff007f;
    --accent-magenta-glow: rgba(255, 0, 127, 0.4);
    
    /* Fonts */
    --font-heading: 'Orbitron', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    
    /* Spacing & Utilities */
    --navbar-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows & Glows */
    --glow-cyan: 0 0 15px var(--accent-cyan-glow);
    --glow-amber: 0 0 15px var(--accent-amber-glow);
    --glow-magenta: 0 0 15px var(--accent-magenta-glow);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   RESET & BASE STYLING
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-bright);
    letter-spacing: 0.05em;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: #1e2230;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

/* ==========================================================================
   REUSABLE UTILITIES & BUTTONS
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--color-text-bright), var(--color-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-wrapper::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    margin: 10px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), #00a8ff);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-cyan-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-bright);
    border: 1px solid var(--color-border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.btn-accent-amber {
    background: linear-gradient(135deg, var(--accent-amber), #ff7b00);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 159, 0, 0.3);
}

.btn-accent-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-amber-glow);
    filter: brightness(1.1);
}

.btn-accent-magenta {
    background: linear-gradient(135deg, var(--accent-magenta), #d9006c);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.btn-accent-magenta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-magenta-glow);
    filter: brightness(1.1);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(6, 7, 10, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-glass);
}

.navbar-container.scrolled {
    background: rgba(6, 7, 10, 0.85);
    height: 70px;
}

.navbar-wrapper {
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.navbar-container.scrolled .logo-img {
    height: 40px;
}

.logo-light {
    color: var(--color-text-bright);
}

.logo-amp {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

.logo-accent {
    background: linear-gradient(135deg, var(--accent-cyan), #00a8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-bright);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-nav-mobile {
    display: none;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-bright);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Hamburger Active Animation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO CAROUSEL SECTION
   ========================================================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
    margin-top: var(--navbar-height);
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* Background Image styling */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    z-index: 5;
}

/* Overlay gradient for atmospheric lighting */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(6, 7, 10, 0.4) 0%, 
        rgba(6, 7, 10, 0.6) 50%, 
        var(--color-bg-deep) 100%),
        linear-gradient(to right,
        rgba(6, 7, 10, 0.8) 0%,
        rgba(6, 7, 10, 0.4) 50%,
        rgba(6, 7, 10, 0.8) 100%);
    z-index: 2;
}

/* Slide Content Container */
.slide-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 700px;
}

.slide-badge {
    display: inline-flex;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
    backdrop-filter: blur(5px);
}

.slide-title {
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.slide-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    max-width: 600px;
}

.slide-cta {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

/* Active Animation states */
.carousel-slide.active .slide-badge {
    transform: translateY(0);
    opacity: 1;
}

.carousel-slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

.carousel-slide.active .slide-description {
    transform: translateY(0);
    opacity: 1;
}

.carousel-slide.active .slide-cta {
    transform: translateY(0);
    opacity: 1;
}

/* Accent custom borders on slides depending on theme */
.carousel-slide[data-theme="retro"] .slide-badge { color: var(--accent-amber); }
.carousel-slide[data-theme="modern"] .slide-badge { color: var(--accent-magenta); }

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(19, 22, 34, 0.4);
    border: 1px solid var(--color-border-glass);
    border-radius: 50%;
    color: var(--color-text-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.carousel-arrow:hover {
    background: rgba(19, 22, 34, 0.8);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.carousel-arrow.prev { left: 30px; }
.carousel-arrow.next { right: 30px; }

/* Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.carousel-dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    width: 60px;
    background: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

/* Custom theme slide indicators */
.carousel-slide[data-theme="retro"].active ~ .carousel-dots .carousel-dot.active {
    background: var(--accent-amber);
    box-shadow: var(--glow-amber);
}
.carousel-slide[data-theme="modern"].active ~ .carousel-dots .carousel-dot.active {
    background: var(--accent-magenta);
    box-shadow: var(--glow-magenta);
}

/* ==========================================================================
   TIMELINE SECTION
   ========================================================================== */
.timeline-section {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
    position: relative;
}

.timeline-intro {
    text-align: center;
    max-width: 700px;
    margin: -40px auto 60px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.timeline-container {
    position: relative;
    margin-top: 50px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-amber), var(--accent-cyan), var(--accent-magenta));
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 80px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    margin-left: 50%;
}

.timeline-item:nth-child(odd) {
    margin-right: 50%;
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    right: -10px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 3px solid var(--accent-cyan);
    z-index: 10;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: var(--glow-cyan);
}

.timeline-item.theme-retro:hover .timeline-dot {
    border-color: var(--accent-amber);
    box-shadow: var(--glow-amber);
}

.timeline-item.theme-modern:hover .timeline-dot {
    border-color: var(--accent-magenta);
    box-shadow: var(--glow-magenta);
}

/* Timeline Card */
.timeline-card {
    width: 88%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    padding: 35px;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-cyan);
    opacity: 0.6;
}

.timeline-item.theme-retro .timeline-card::before { background: var(--accent-amber); }
.timeline-item.theme-modern .timeline-card::before { background: var(--accent-magenta); }

.timeline-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-premium);
}

.timeline-item.theme-retro:hover .timeline-card { box-shadow: 0 15px 30px rgba(255, 159, 0, 0.1); border-color: rgba(255, 159, 0, 0.3); }
.timeline-item.theme-real:hover .timeline-card { box-shadow: 0 15px 30px rgba(0, 240, 255, 0.1); border-color: rgba(0, 240, 255, 0.3); }
.timeline-item.theme-modern:hover .timeline-card { box-shadow: 0 15px 30px rgba(255, 0, 127, 0.1); border-color: rgba(255, 0, 127, 0.3); }

.timeline-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-cyan);
}

.timeline-item.theme-retro .timeline-year { color: var(--accent-amber); }
.timeline-item.theme-modern .timeline-year { color: var(--accent-magenta); }

.timeline-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-glass);
}

.timeline-card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.timeline-card-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   EXHIBITS GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--color-bg-deep);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-premium);
}

/* Card Image Wrapper */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #000;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(12, 14, 21, 0.9) 0%, rgba(12, 14, 21, 0.1) 60%);
    pointer-events: none;
}

.gallery-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-tag.retro { background: rgba(255, 159, 0, 0.2); border-color: rgba(255, 159, 0, 0.4); color: var(--accent-amber); }
.gallery-tag.real { background: rgba(0, 240, 255, 0.2); border-color: rgba(0, 240, 255, 0.4); color: var(--accent-cyan); }
.gallery-tag.modern { background: rgba(255, 0, 127, 0.2); border-color: rgba(255, 0, 127, 0.4); color: var(--accent-magenta); }

/* Card Content Details */
.gallery-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-meta {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-meta span:not(:last-child)::after {
    content: '|';
    margin-left: 8px;
    color: var(--color-border-glow);
}

.gallery-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gallery-description {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.gallery-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--color-border-glass);
}

.gallery-spec-item {
    font-size: 0.8rem;
}

.gallery-spec-label {
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 2px;
}

.gallery-spec-value {
    color: var(--color-text-bright);
    font-weight: 500;
}

/* ==========================================================================
   TICKETS BOOKING / CTA BANNER
   ========================================================================== */
.tickets-section {
    padding: 100px 0;
    position: relative;
    background: var(--color-bg-dark);
    overflow: hidden;
}

.tickets-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
    pointer-events: none;
    filter: grayscale(1) contrast(1.2);
}

.tickets-container {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(19, 22, 34, 0.7) 0%, rgba(6, 7, 10, 0.9) 100%);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    backdrop-filter: blur(16px);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-premium);
}

.tickets-text h2 {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tickets-text p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 650px;
}

.tickets-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight-icon-wrapper {
    color: var(--accent-cyan);
    display: flex;
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-text-bright);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.highlight-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Ticket Info Card */
.ticket-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ticket-card-title {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.ticket-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
}

.ticket-price span {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
}

.ticket-info {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.ticket-card .btn {
    width: 100%;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    position: relative;
    background-color: var(--color-bg-deep);
    border-top: 1px solid var(--color-border-glass);
    padding: 80px 0 0 0;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(0, 240, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.info-col {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--color-bg-card);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-text-bright);
    padding-left: 5px;
}

.footer-info-list {
    list-style: none;
    font-size: 0.9rem;
}

.footer-info-list li {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.footer-info-list .days {
    color: var(--color-text-bright);
    font-weight: 500;
}

.footer-info-list .hours {
    color: var(--color-text-muted);
}

.footer-info-list .hours.closed {
    color: var(--accent-magenta);
}

.footer-info-list .note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    font-style: italic;
}

.footer-contact-list {
    list-style: none;
    font-size: 0.9rem;
}

.footer-contact-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    color: var(--accent-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list a:hover {
    color: var(--color-text-bright);
}

.footer-bottom {
    border-top: 1px solid var(--color-border-glass);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-policy-links {
    display: flex;
    gap: 20px;
}

.footer-policy-links a:hover {
    color: var(--color-text-bright);
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .tickets-container {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    
    .timeline-card {
        width: 92%;
    }
}

@media (max-width: 768px) {
    /* Responsive Navigation Menu */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 350px;
        height: 100vh;
        background: rgba(12, 14, 21, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: right 0.4s ease;
        border-left: 1px solid var(--color-border-glass);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .cta-nav-mobile {
        display: inline-block;
        font-family: var(--font-heading);
        color: var(--accent-cyan) !important;
        border: 1px solid var(--accent-cyan);
        padding: 10px 20px !important;
        border-radius: var(--border-radius-sm);
        text-align: center;
        width: 100%;
        margin-top: 20px;
    }
    
    /* Carousel Adjustments */
    .hero-carousel {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .carousel-arrow {
        width: 44px;
        height: 44px;
    }
    
    .carousel-arrow.prev { left: 15px; }
    .carousel-arrow.next { right: 15px; }
    
    /* Timeline Mobile styling (convert to single column) */
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 45px;
        padding-bottom: 50px;
    }
    
    .timeline-item:nth-child(odd), 
    .timeline-item:nth-child(even) {
        margin-right: 0;
        margin-left: 0;
        align-self: flex-start;
    }
    
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
        top: 5px;
    }
    
    .timeline-card {
        width: 100%;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .tickets-highlights {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   COURSES PAGE CUSTOM STYLES
   ========================================================================== */
.courses-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(6, 7, 10, 0.9) 0%, rgba(12, 14, 21, 0.95) 100%);
    border-bottom: 1px solid var(--color-border-glass);
    text-align: center;
    overflow: hidden;
}

.courses-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.1;
    z-index: 1;
    filter: blur(4px);
}

.courses-hero .container {
    position: relative;
    z-index: 2;
}

.courses-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-cyan), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

.courses-hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.registration-section {
    padding: 100px 0;
    background-color: var(--color-bg-deep);
}

.registration-container {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    backdrop-filter: blur(12px);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.registration-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.registration-title-wrapper h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--color-text-bright);
}

.registration-title-wrapper p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.premium-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0; /* Prevents flex/grid item overflow */
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    color: var(--color-text-bright);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--glow-cyan);
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background-color: var(--color-bg-dark);
    color: var(--color-text-bright);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit-wrapper {
    grid-column: span 2;
    text-align: center;
    margin-top: 15px;
}

.form-submit-wrapper .btn {
    width: 100%;
    max-width: 300px;
}

@media (max-width: 768px) {
    .premium-form {
        grid-template-columns: 1fr;
    }
    .form-group-full, .form-submit-wrapper {
        grid-column: span 1;
    }
    .courses-hero h1 {
        font-size: 2.2rem;
    }
    .registration-container {
        padding: 30px 20px;
    }
}
