/* ============================================
   HOME PAGE — Main Landing Styles
   ============================================ */

/* ============================================
   CRITICAL FIXES - Override shared styles
   ============================================ */

/* Fix: Hero elements should be visible with their own animations */
.main-hero .btn-primary,
.main-hero .section-title,
.main-hero .glass-card {
    opacity: 1 !important; /* Override shared opacity: 0 */
}

/* Fix: Elements with inline animations should start from opacity 0 */
.orchestra-logo,
.hero-tagline,
.hero-divider,
.hero-cta,
.stat-item,
.scroll-indicator {
    opacity: 0; /* Will be animated by CSS keyframes */
}

/* Fix: Ensure hero content is visible */
.hero-content {
    z-index: 10;
}

/* ============================================
   STICKY NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease, border-bottom 0.3s ease;
    background: transparent;
}

.main-header.scrolled {
    background: rgba(10, 6, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.main-header.hidden {
    transform: translateY(-100%);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-logo:hover {
    color: var(--gold-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

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

.nav-cta {
    margin-left: 24px;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.toggle-line {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    transition: width 0.1s ease;
}

/* Mobile Menu Backdrop */
.nav-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.nav-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO: Театральный занавес
   ============================================ */

.main-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Фоновые слои */
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a0e12 50%, var(--bg-primary) 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 6, 8, 0.6) 100%);
    z-index: 1;
}

.hero-rays {
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(212, 165, 116, 0.03) 45deg,
        transparent 90deg,
        rgba(212, 165, 116, 0.03) 135deg,
        transparent 180deg,
        rgba(212, 165, 116, 0.03) 225deg,
        transparent 270deg,
        rgba(212, 165, 116, 0.03) 315deg,
        transparent 360deg
    );
    animation: raysRotate 30s linear infinite;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    animation: pulseGlow 6s ease-in-out infinite;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 24px 60px;
    max-width: 1200px;
}

.orchestra-logo {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 0s;
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    text-shadow: 0 2px 40px rgba(212, 165, 116, 0.4);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin: 0;
}

.hero-tagline {
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
}

.tagline-text {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-secondary);
    margin: 0;
}

.hero-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    margin: 0 auto 40px;
    opacity: 0;
    animation: expandDivider 0.8s ease forwards;
    animation-delay: 1.5s;
}

@keyframes expandDivider {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

.hero-cta {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.8s;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 2.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 2.3s;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 2.5s;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   КАЛЕНДАРЬ КОНЦЕРТОВ: Living Grid
   ============================================ */

.concerts-calendar {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    position: relative;
}

.calendar-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.filter-chip {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-chip:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-subtle);
}

.filter-chip.active {
    color: var(--bg-primary);
    background: var(--gold);
    border-color: var(--gold);
}

/* Concerts Grid (Bento Layout) */
.concerts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.concert-card--featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Concert Card */
.concert-card {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.concert-card.active {
    opacity: 1;
    transform: translateY(0);
}

.card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.concert-card:not(.concert-card--placeholder) .card-link {
    cursor: pointer;
}

.concert-card:not(.concert-card--placeholder) .card-link:hover .card-3d-container {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

.concert-card:not(.concert-card--placeholder) .card-link:hover .card-hologram {
    opacity: 1;
}

.concert-card:not(.concert-card--placeholder) .card-link:hover .card-hover-cta {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Container */
.card-3d-container {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
}

.card-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0e12 0%, var(--bg-primary) 100%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.concert-card:not(.concert-card--placeholder) .card-link:hover .card-poster img {
    transform: scale(1.05);
}

.card-poster--placeholder {
    background: linear-gradient(135deg, rgba(26, 14, 18, 0.3) 0%, rgba(10, 6, 8, 0.3) 100%);
    border: 1px dashed rgba(212, 165, 116, 0.2);
}

.coming-soon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    opacity: 0.5;
    margin: 0;
}

/* Holographic Overlay */
.card-hologram {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.08) 0%,
        rgba(139, 41, 66, 0.08) 50%,
        rgba(212, 165, 116, 0.08) 100%
    );
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    animation: hologramShift 3s linear infinite;
}

@keyframes hologramShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Card Info */
.card-info {
    padding: 24px 8px 0;
    flex-grow: 1;
    padding-bottom: 80px;
}

.date-chip {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.card-description {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0;
    margin-bottom: 0;
}

/* Hover CTA */
.card-hover-cta {
    position: absolute;
    bottom: 24px;
    left: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Featured card - button after meta info */
.concert-card--featured .card-hover-cta {
    position: static;
    opacity: 1;
    transform: translateY(0);
    margin-top: 8px;
    pointer-events: auto;
}

.concert-card--featured .card-info {
    flex-grow: 0;
    padding-bottom: 24px;
}

.card-hover-cta .btn-secondary {
    pointer-events: auto;
}

/* Show CTA on hover for desktop only (except featured) */
@media (min-width: 769px) {
    .concert-card:not(.concert-card--placeholder):not(.concert-card--featured) .card-link:hover .card-hover-cta {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* ============================================
   ИСТОРИЯ ОРКЕСТРА: Timeline
   ============================================ */

.orchestra-story {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.story-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 41, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 48px;
    padding: 64px 0;
    margin-top: 64px;
    /* Hide scrollbar but keep functionality */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.timeline-container::-webkit-scrollbar {
    display: none;
}

.timeline-milestone {
    scroll-snap-align: center;
    min-width: min(400px, 85vw);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-milestone.active {
    opacity: 1;
    transform: translateY(0);
}

.milestone-card {
    padding: 48px;
    text-align: center;
}

.milestone-year {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0.9;
}

.milestone-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

.milestone-description {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.milestone-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.stat {
    text-align: center;
}

.stat .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat .stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Timeline Navigation */
.timeline-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.timeline-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--gold);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-arrow:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

/* ============================================
   ВИДЕО / ГАЛЕРЕЯ: Media Showcase
   ============================================ */

.media-showcase {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.featured-media {
    margin-top: 64px;
}

.media-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.media-card:hover {
    transform: translateY(-4px);
}

.media-card--large {
    aspect-ratio: 21 / 9;
}

.media-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 14, 18, 0.5) 0%, rgba(10, 6, 8, 0.5) 100%);
    border: 1px dashed rgba(212, 165, 116, 0.2);
}

.media-placeholder p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gold-light);
    opacity: 0.5;
    text-align: center;
    margin: 0;
}

.video-player {
    position: absolute;
    inset: 0;
}

.video-player iframe {
    width: 100%;
    height: 100%;
}

/* Media Grid Wrapper with Navigation */
.media-grid-wrapper {
    position: relative;
    margin-top: 32px;
    overflow: clip;
}

/* Media Grid - Horizontal Scroll */
.media-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 0 24px;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.media-grid::-webkit-scrollbar {
    height: 8px;
}

.media-grid::-webkit-scrollbar-track {
    background: rgba(212, 165, 116, 0.1);
    border-radius: 4px;
}

.media-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.media-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.media-grid .media-card {
    flex: 0 0 400px;
    min-width: 400px;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
}

/* Navigation Arrows */
.media-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(10, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-arrow:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-50%) scale(1.1);
}

.media-arrow--prev {
    left: -28px;
}

.media-arrow--next {
    right: -28px;
}

.media-grid .media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-grid .media-card:hover img {
    transform: scale(1.05);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 6, 8, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-card:hover .media-overlay {
    opacity: 1;
}

.media-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

/* Video Styles */
.media-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 6, 8, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.media-card:hover .video-overlay {
    opacity: 1;
}

.video-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.media-card--large .video-overlay,
.media-card--large .video-label {
    font-size: 1rem;
    padding: 32px;
}

.media-cta {
    text-align: center;
    margin-top: 48px;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* ============================================
   NEWSLETTER + SOCIAL
   ============================================ */

.newsletter-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 32px auto 48px;
    max-width: 600px;
}

.newsletter-form {
    margin-bottom: 64px;
}

.form-group {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.form-input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 16px 24px;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-note {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    transform: translateY(-4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .concerts-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .concert-card--featured {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .media-grid .media-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 250px;
    }

    .media-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .media-arrow--prev {
        left: -24px;
    }

    .media-arrow--next {
        right: -24px;
    }

    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* CSS Variables for mobile */
    :root {
        --section-padding: 80px;
    }

    /* Navigation */
    .main-nav {
        padding: 16px 24px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 32px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--glass-border);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-content {
        padding: 80px 20px 40px;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .scroll-indicator {
        bottom: 24px;
        font-size: 0.6875rem;
    }

    .scroll-line {
        height: 32px;
    }

    /* Concerts Grid */
    .concerts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .concert-card--featured {
        grid-column: 1;
    }

    .card-poster {
        aspect-ratio: 16 / 10;
    }

    /* Disable 3D effects on touch devices */
    .card-3d-container {
        transform: none !important;
    }

    .card-hologram {
        display: none;
    }

    /* Always show CTA on mobile */
    .card-hover-cta {
        opacity: 1;
        transform: translateY(0);
        position: static;
        margin-top: 16px;
    }

    .card-hover-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Calendar Filters */
    .calendar-filters {
        gap: 12px;
    }

    .filter-chip {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }

    /* Timeline */
    .timeline-milestone {
        min-width: 90vw;
    }

    .timeline-nav {
        margin-top: 32px;
    }

    .timeline-arrow {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .timeline-arrow:active {
        transform: scale(0.95);
    }

    .milestone-card {
        padding: 32px;
    }

    .milestone-year {
        font-size: 3rem;
    }

    .milestone-stats {
        flex-direction: column;
        gap: 24px;
    }

    /* Media Grid - Vertical layout for mobile */
    .media-grid {
        display: block;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
    }

    .media-grid .media-card {
        flex: none;
        min-width: 100%;
        width: 100%;
        aspect-ratio: 16 / 9;
        margin-bottom: 24px;
        scroll-snap-align: none;
    }

    .media-grid .media-card:last-child {
        margin-bottom: 0;
    }

    /* Hide navigation arrows on mobile */
    .media-arrow {
        display: none;
    }

    .media-overlay,
    .video-overlay {
        padding: 16px;
    }

    /* Newsletter */
    .form-group {
        flex-direction: column;
        max-width: 100%;
    }

    .form-input {
        padding: 18px 24px;
        font-size: 1rem;
    }

    .form-input::placeholder {
        font-size: 0.9375rem;
    }

    .newsletter-form .btn-secondary {
        padding: 18px 24px;
        width: 100%;
        justify-content: center;
    }

    .social-links {
        gap: 16px;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer-content {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    /* CSS Variables for small mobile */
    :root {
        --section-padding: 60px;
    }

    /* Hero */
    .hero-content {
        padding: 70px 16px 30px;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .milestone-year {
        font-size: 2.5rem;
    }

    .milestone-title {
        font-size: 1.5rem;
    }

    /* Calendar Filters */
    .calendar-filters {
        gap: 8px;
    }

    .filter-chip {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    /* Timeline */
    .timeline-milestone {
        min-width: 95vw;
    }

    .timeline-arrow {
        width: 52px;
        height: 52px;
    }

    /* Navigation */
    .nav-logo {
        font-size: 0.9375rem;
        max-width: 200px;
    }

    .logo-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.2;
    }

    /* Footer */
    .footer-org,
    .footer-address,
    .footer-legal,
    .footer-email,
    .footer-copyright {
        max-width: 90%;
        word-wrap: break-word;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes raysRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   PHOTOS GRID (Concert Photos Gallery) - Horizontal Scroll
   ============================================ */

/* ==========================================
   PHOTOS GALLERY - Horizontal Scroll
   ========================================== */

/* Wrapper for navigation arrows */
.photos-grid-wrapper {
    position: relative;
    margin-top: 32px;
    overflow: clip;
}

/* Photos Grid - Horizontal Scroll */
.photos-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.photos-grid::-webkit-scrollbar {
    height: 8px;
}

.photos-grid::-webkit-scrollbar-track {
    background: rgba(212, 165, 116, 0.1);
    border-radius: 4px;
}

.photos-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.photos-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Photo Cards */
.photo-card {
    position: relative;
    flex: 0 0 450px;
    min-width: 450px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
@media (hover: hover) {
    .photo-card:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 16px 40px rgba(212, 165, 116, 0.2);
        z-index: 10;
    }

    .photo-card:hover img {
        transform: scale(1.08);
    }
}

/* Navigation Arrows */
.photos-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(10, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photos-arrow:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-50%) scale(1.1);
}

.photos-arrow--prev {
    left: -28px;
}

.photos-arrow--next {
    right: -28px;
}

/* Tablet */
@media (max-width: 1024px) {
    .photo-card {
        flex: 0 0 380px;
        min-width: 380px;
    }

    .photos-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .photos-arrow--prev {
        left: -24px;
    }

    .photos-arrow--next {
        right: -24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .photos-grid::-webkit-scrollbar {
        display: none;
    }

    .photos-grid {
        scrollbar-width: none;
    }

    .photo-card {
        flex: 0 0 calc(85vw);
        min-width: 280px;
        aspect-ratio: 16 / 9;
    }

    .photos-arrow {
        display: none;
    }

    .photos-grid-wrapper {
        margin-top: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .photo-card {
        flex: 0 0 calc(90vw);
        min-width: 260px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .photos-grid {
        scroll-behavior: auto;
    }

    .photo-card,
    .photo-card img {
        transition: none;
    }
}

.photo-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

/* ============================================
   LANDSCAPE MODE
   ============================================ */

@media (orientation: landscape) and (max-height: 500px) {
    .main-hero {
        min-height: auto;
        padding: 0;
    }

    .hero-content {
        padding: 60px 24px 24px;
    }

    .hero-main-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        margin-bottom: 0;
    }

    .hero-tagline {
        margin-bottom: 16px;
    }

    .hero-divider {
        margin-bottom: 20px;
    }

    .hero-cta {
        margin-bottom: 24px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 32px;
        margin-top: 20px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-glow {
        width: 400px;
        height: 300px;
    }

    /* Compact sections */
    :root {
        --section-padding: 48px;
    }

    .concerts-grid {
        gap: 24px;
        margin-top: 32px;
    }

    .timeline-container {
        padding: 32px 0;
        margin-top: 32px;
    }
}
