/* ============================================
   ПАСХАЛЬНЫЙ КОНЦЕРТ — Concert Specific Styles
   Специфичные стили для Пасхального концерта
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    overflow: hidden;
    background: var(--bg-primary);
    z-index: 1;
    margin: 0;
}

/* Background Image Layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) saturate(1.15);
    display: block;
}

/* Cinematic Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(10, 6, 8, 0.7) 0%, transparent 30%),
        linear-gradient(to top, rgba(10, 6, 8, 0.95) 0%, rgba(10, 6, 8, 0.6) 40%, transparent 70%),
        linear-gradient(to right, rgba(10, 6, 8, 0.5) 0%, transparent 20%),
        linear-gradient(to left, rgba(10, 6, 8, 0.5) 0%, transparent 20%),
        radial-gradient(ellipse at center 40%, rgba(139, 41, 66, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated light rays effect */
.hero-rays {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    z-index: 2;
    background:
        conic-gradient(
            from 180deg at 50% 0%,
            transparent 0deg,
            rgba(255, 220, 180, 0.03) 10deg,
            transparent 20deg,
            transparent 40deg,
            rgba(255, 220, 180, 0.02) 50deg,
            transparent 60deg,
            transparent 80deg,
            rgba(255, 220, 180, 0.03) 90deg,
            transparent 100deg,
            transparent 180deg
        );
    opacity: 0.8;
    animation: raysRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes raysRotate {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}


/* Warm glow in center */
.hero-glow {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--gold-subtle) 0%, rgba(139, 41, 66, 0.2) 30%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    animation: pulseGlow 6s ease-in-out infinite;
    mix-blend-mode: soft-light;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 32px;
    opacity: 0;
    text-shadow: 0 0 30px var(--gold-glow);
    position: relative;
    top: -100px;
}

.hero-title {
    margin-bottom: 40px;
}

.hero-logo {
    display: block;
    max-width: min(700px, 90vw);
    height: auto;
    margin-top: 200px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.6))
            drop-shadow(0 0 60px rgba(139, 41, 66, 0.4));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.02);
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 32px;
    margin-top: -40px;
    opacity: 0;
}

.hero-info {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0;
}

.hero-info .separator {
    color: var(--gold);
    margin: 0 8px;
}

/* Hero ticket button — always filled gold */
.hero .btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
    animation: ctaPulse 3s ease-in-out infinite;
}

.hero .btn-primary::before {
    background: var(--gold-light);
}

.hero .btn-primary:hover {
    color: var(--bg-primary);
    box-shadow: 0 8px 40px rgba(212, 165, 116, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

@keyframes scrollArrow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   RESPONSIVE OVERRIDES FOR HERO
   ============================================ */

@media (max-width: 1024px) {
    .hero-glow {
        width: 600px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 24px 60px;
    }

    .hero-logo {
        max-width: 85vw;
    }

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

    .hero-rays {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 16px 40px;
    }

    .hero-logo {
        max-width: 90vw;
    }

    .hero-subtitle {
        font-size: 0.7rem;
    }

    .hero-divider {
        width: 60px;
    }

    .hero-info {
        font-size: 1rem;
    }

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

@media (max-width: 360px) {
    .hero-subtitle {
        font-size: 0.65rem;
    }
}

/* ============================================
   ATMOSPHERE SECTION
   ============================================ */
.atmosphere {
    padding: 40px 0;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    z-index: 20;
    width: 100%;
}

.atmosphere-bokeh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.atmosphere-bokeh::before,
.atmosphere-bokeh::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: bokehFloat 10s ease-in-out infinite;
}

.atmosphere-bokeh::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.atmosphere-bokeh::after {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 41, 66, 0.15) 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes bokehFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
        opacity: 0.5;
    }
    75% {
        transform: translate(-30px, -10px) scale(1.05);
        opacity: 0.7;
    }
}

.atmosphere::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.1) 0%, rgba(139, 41, 66, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: centralGlow 6s ease-in-out infinite;
}

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

.atmo-quote {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 40px;
    z-index: 10;
}

.quote-star {
    display: block;
    font-size: 1.5rem;
    color: var(--gold-light);
    opacity: 0;
    animation: starTwinkle 3s ease-in-out infinite;
}

.quote-star.top {
    margin-bottom: 24px;
}

.quote-star.bottom {
    margin-top: 24px;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.quote-line {
    font-family: var(--font-display);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin: 0;
    padding: 4px 0;
    opacity: 0;
    transform: translateY(20px);
    background: linear-gradient(135deg, #f5e1c8 0%, #f0d4a8 25%, #d4a574 50%, #e8c896 75%, #f0d4a8 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(212, 165, 116, 0.4));
    animation: textGlow 4s ease-in-out infinite;
}

.quote-line-1, .quote-line-3 {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
}

.quote-line-2, .quote-line-4 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    opacity: 0.9;
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.3));
        background-position: 0% 50%;
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212, 165, 116, 0.6));
        background-position: 100% 50%;
    }
}

.quote-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 28px 0;
    opacity: 0;
    transform: scaleX(0);
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-heart {
    font-size: 1.25rem;
    color: var(--gold-light);
    filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}


.atmo-quote.active .quote-star {
    opacity: 0.4;
}

.atmo-quote.active .quote-line {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.atmo-quote.active .quote-line-1 { transition-delay: 0.1s; }
.atmo-quote.active .quote-line-2 { transition-delay: 0.25s; }
.atmo-quote.active .quote-line-3 { transition-delay: 0.55s; }
.atmo-quote.active .quote-line-4 { transition-delay: 0.7s; }

.atmo-quote.active .quote-divider {
    opacity: 1;
    transform: scaleX(1);
    transition: opacity 0.6s ease 0.4s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}


/* ============================================
   RESPONSIVE OVERRIDES FOR ATMOSPHERE
   ============================================ */

@media (max-width: 768px) {
    .atmosphere {
        padding: 48px 0;
    }

    .atmo-quote {
        padding: 20px 28px;
    }

    .atmosphere-bokeh::before {
        width: 200px;
        height: 200px;
    }

    .atmosphere-bokeh::after {
        width: 180px;
        height: 180px;
    }

    .quote-divider {
        gap: 12px;
        margin: 20px 0;
    }

    .divider-line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .atmosphere {
        padding: 32px 0;
    }

    .atmo-quote {
        padding: 16px 20px;
    }

    .quote-star {
        font-size: 1.25rem;
    }

    .quote-star.top {
        margin-bottom: 16px;
    }

    .quote-star.bottom {
        margin-top: 16px;
    }

    .quote-divider {
        gap: 10px;
        margin: 16px 0;
    }

    .divider-line {
        width: 30px;
    }

    .divider-heart {
        font-size: 1rem;
    }

    /* Отключить bokeh на мобилках */
    .atmosphere-bokeh::before,
    .atmosphere-bokeh::after {
        display: none;
    }

    .atmosphere::before {
        width: 400px;
        height: 200px;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    width: 100%;
    overflow: hidden;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   RESPONSIVE OVERRIDES FOR CARDS
   ============================================ */

@media (max-width: 1024px) {
    .cards-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        gap: 16px;
    }

    .glass-card--large {
        padding: 32px 24px;
    }
}

@media (max-width: 360px) {
    .glass-card {
        padding: 20px;
    }

    .glass-card--large {
        padding: 28px 20px;
    }
}


/* ============================================
   PROGRAM SECTION
   ============================================ */
.program {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    width: 100%;
    overflow: hidden;
}

.program-list {
    max-width: 800px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    cursor: default;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(-20px);
}

.program-item:last-child {
    border-bottom: none;
}

.program-item:hover {
    padding-left: 16px;
}

.program-item:hover .program-number {
    color: var(--gold);
    transform: scale(1.2);
}

.program-item:hover .program-name {
    color: var(--gold);
}

.program-item:hover .program-line {
    background: var(--gold);
    width: 40px;
}

.program-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-muted);
    min-width: 40px;
    transition: all var(--transition-fast);
}

.program-line {
    flex-shrink: 0;
    width: 24px;
    height: 1px;
    background: var(--glass-border);
    transition: all var(--transition-fast);
}

.program-name {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.program-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Program Description (текстовый формат) */
.program-description {
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
    padding: 0 24px;
}

.program-heading {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--gold);
    margin-bottom: 40px;
}

.program-text {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.program-text:last-child {
    margin-bottom: 0;
}

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

/* ============================================
   RESPONSIVE OVERRIDES FOR PROGRAM
   ============================================ */

@media (max-width: 768px) {
    .program-description {
        margin-top: 32px;
        padding: 0 20px;
    }

    .program-heading {
        margin-bottom: 28px;
        line-height: 1.4;
    }

    .program-text {
        margin-bottom: 20px;
        line-height: 1.7;
    }

    .program-cta {
        margin-top: 36px;
    }

    .program-note {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .program-description {
        padding: 0 16px;
    }

    .program-heading {
        margin-bottom: 24px;
    }

    .program-text {
        margin-bottom: 16px;
        font-size: clamp(1rem, 2.5vw, 1.125rem);
    }

    .program-cta {
        margin-top: 28px;
    }

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

/* ============================================
   PERFORMERS SECTION
   ============================================ */
.performers {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    width: 100%;
    overflow: hidden;
}

.performers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin: 64px auto 0;
    max-width: 900px;
    width: 100%;
    padding: 0 16px;
}

/* 2 columns only on large screens */
@media (min-width: 900px) {
    .performers-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px;
    }
}

.performer-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(40px);
}

.performer-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-subtle);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.performer-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-secondary));
}

.performer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

.performer-card:hover .performer-image img {
    transform: scale(1.05);
}

.performer-info {
    padding: 28px;
}

.performer-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.performer-role {
    font-size: 0.875rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.performer-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE OVERRIDES FOR PERFORMERS
   ============================================ */

/* Override animations.css that forces 2 columns at 1024px */
@media (max-width: 1024px) {
    .performers-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 899px) {
    .performers-grid {
        gap: 32px;
        margin-top: 48px;
    }

    .performer-card {
        max-width: none !important;
        width: 100%;
    }
}

/* ============================================
   VENUE SECTION
   ============================================ */
.venue {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    width: 100%;
    overflow: hidden;
}

.venue-image {
    width: 100%;
    max-width: 1000px;
    margin: 48px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.venue-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Venue Carousel */
.venue-carousel {
    width: 100%;
    max-width: 1000px;
    margin: 48px auto 0;
}

.carousel-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    touch-action: pan-y pinch-zoom;
}

.carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 16px;
}

.carousel-btn-next {
    right: 16px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 8px;
    }

    .carousel-btn-next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn-prev {
        left: 8px;
    }

    .carousel-btn-next {
        right: 8px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-indicators {
        margin-top: 16px;
        gap: 10px;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
    }

    .carousel-indicator.active {
        width: 28px;
    }

    .venue-content {
        margin-top: 36px;
    }

    .venue-name {
        font-size: 1.5rem;
    }

    .venue-address {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
}


.venue-name-top {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 48px;
    opacity: 0;
}

.venue-content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 64px;
    opacity: 0;
    transform: translateY(40px);
}

.venue-info {
    text-align: center;
}

.venue-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.venue-address {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
}

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

.venue-link svg {
    transition: transform var(--transition-fast);
}

.venue-link:hover svg {
    transform: translateY(-2px);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
    text-align: center;
    width: 100%;
    overflow: hidden;
}

.cta-content {
    opacity: 0;
    transform: translateY(40px);
}

.cta-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.cta-price-large {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.final-cta .btn-secondary {
    background: linear-gradient(135deg, var(--gold) 0%, #c4955a 100%);
    border: none;
    color: var(--bg-primary);
    font-weight: 600;
    box-shadow:
        0 4px 20px rgba(212, 165, 116, 0.4),
        0 0 60px rgba(212, 165, 116, 0.2);
    animation: ctaPulse 3s ease-in-out infinite;
}

.final-cta .btn-secondary::before {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.final-cta .btn-secondary:hover {
    color: var(--bg-primary);
    box-shadow:
        0 8px 40px rgba(212, 165, 116, 0.6),
        0 0 80px rgba(212, 165, 116, 0.4);
    transform: translateY(-2px) scale(1.02);
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow:
            0 4px 20px rgba(212, 165, 116, 0.4),
            0 0 60px rgba(212, 165, 116, 0.2);
    }
    50% {
        box-shadow:
            0 4px 30px rgba(212, 165, 116, 0.6),
            0 0 80px rgba(212, 165, 116, 0.35);
    }
}

/* ============================================
   RESPONSIVE OVERRIDES FOR FINAL CTA
   ============================================ */

@media (max-width: 768px) {
    .final-cta {
        padding: 64px 0;
    }

    .cta-text {
        margin-bottom: 36px;
    }

    .cta-price-large {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 48px 0;
    }

    .cta-text {
        margin-bottom: 28px;
        line-height: 1.3;
    }

    .cta-price-large {
        margin-bottom: 20px;
    }

    .final-cta .btn-secondary.btn-large {
        width: 100%;
        padding: 20px 32px;
        font-size: 0.875rem;
    }
}


/* ============================================
   LARGE SCREENS OPTIMIZATION (1440px+)
   ============================================ */

@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }

    .performers-grid {
        gap: 56px;
        max-width: 1000px;
    }

    .hero-logo {
        max-width: 800px;
    }

    .hero-glow {
        width: 1000px;
        height: 750px;
    }

    .program-description {
        max-width: 900px;
    }

    .venue-carousel {
        max-width: 1200px;
    }

    .glass-card {
        padding: 40px;
    }

    .glass-card--large {
        padding: 56px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }

    .hero-logo {
        max-width: 900px;
    }
}

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

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

    .hero-subtitle {
        top: 0;
        margin-bottom: 12px;
        font-size: 0.7rem;
    }

    .hero-logo {
        margin-top: 40px;
        max-width: min(400px, 50vw);
    }

    .hero-divider {
        margin-top: 0;
        margin-bottom: 16px;
    }

    .hero-info {
        margin-bottom: 24px;
        flex-direction: row;
    }

    .hero-info .separator {
        display: inline;
    }

    .scroll-indicator {
        display: none;
    }

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

    .hero-rays {
        display: none;
    }

    .atmosphere {
        padding: 24px 0;
    }

    .atmo-quote {
        padding: 12px 24px;
    }

    .quote-star.top {
        margin-bottom: 12px;
    }

    .quote-star.bottom {
        margin-top: 12px;
    }

    .quote-divider {
        margin: 12px 0;
    }

    /* Sections compact */
    :root {
        --section-padding: 48px;
    }
}
