/* ============================================
   DŘENICE SOUND EVENTS - Stylesheet
   ============================================ */

/* --- Ticket Popup --- */
.ticket-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.ticket-popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.ticket-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0.82);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.ticket-popup-inner {
    position: relative;
    z-index: 1;
    background: #12121a;
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 420px;
    width: calc(100% - 32px);
    box-shadow: 0 0 80px rgba(230, 57, 70, 0.12), 0 30px 80px rgba(0,0,0,0.6);
    text-align: center;
    animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popupIn {
    from { transform: scale(0.88) translateY(20px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}

.ticket-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}

.ticket-popup-close:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.ticket-popup-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-primary);
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.25);
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.ticket-popup-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.1;
}

.ticket-popup-date {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
}

.ticket-popup-waves {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.ticket-popup-wave {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 8px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
}

.tpw-door {
    opacity: 0.6;
}

.tpw-name {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.tpw-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-primary);
    font-family: var(--font-primary);
}

.ticket-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--clr-gradient);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 24px rgba(230, 57, 70, 0.35);
    width: 100%;
    justify-content: center;
}

.ticket-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(230, 57, 70, 0.5);
}

/* --- CSS Custom Properties --- */
:root {
    --clr-bg: #0a0a0f;
    --clr-bg-dark: #050508;
    --clr-surface: #12121a;
    --clr-surface-light: #1a1a28;
    --clr-surface-hover: #22223a;

    --clr-primary: #e63946;
    --clr-primary-light: #ff4d5a;
    --clr-accent-pink: #d63384;
    --clr-accent-purple: #7b2d8e;
    --clr-accent-violet: #6f42c1;

    --clr-text: #f0f0f5;
    --clr-text-muted: #8a8a9e;
    --clr-text-dim: #55556a;

    --clr-gradient: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent-pink) 40%, var(--clr-accent-purple) 70%, var(--clr-accent-violet) 100%);
    --clr-gradient-subtle: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(214, 51, 132, 0.15), rgba(123, 45, 142, 0.15));

    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Space Grotesk', monospace;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-glow: 0 0 40px rgba(230, 57, 70, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.5);

    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

::selection {
    background: var(--clr-primary);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Particle Canvas --- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.5));
    transition: transform var(--transition-spring);
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(360deg) scale(1.1);
}

.nav-logo-text {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    background: var(--clr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
    color: var(--clr-text-muted);
}

.nav-links a:hover {
    color: var(--clr-text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-social {
    display: flex !important;
    align-items: center;
    gap: 6px;
    background: var(--clr-gradient) !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
}

.nav-social svg {
    stroke: white;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.3) saturate(1.3);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 10, 15, 0.4) 0%,
            rgba(10, 10, 15, 0.2) 30%,
            rgba(10, 10, 15, 0.6) 70%,
            rgba(10, 10, 15, 1) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 15, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-banner {
    margin-bottom: 32px;
}

.hero-banner-img {
    max-width: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.3));
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 30px rgba(230, 57, 70, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 50px rgba(214, 51, 132, 0.4));
    }
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.hero-title-line {
    display: block;
}

.hero-title-line.accent {
    background: var(--clr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.55em;
    letter-spacing: 8px;
    font-weight: 700;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--clr-text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Audio Bars */
.audio-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    height: 60px;
    padding: 0 20%;
    z-index: 1;
    opacity: 0.4;
}

.bar {
    flex: 1;
    background: var(--clr-gradient);
    border-radius: 2px 2px 0 0;
    animation: audioBar 1.2s ease-in-out infinite;
}

.bar:nth-child(1) {
    animation-delay: 0.0s;
}

.bar:nth-child(2) {
    animation-delay: 0.1s;
}

.bar:nth-child(3) {
    animation-delay: 0.2s;
}

.bar:nth-child(4) {
    animation-delay: 0.15s;
}

.bar:nth-child(5) {
    animation-delay: 0.3s;
}

.bar:nth-child(6) {
    animation-delay: 0.05s;
}

.bar:nth-child(7) {
    animation-delay: 0.25s;
}

.bar:nth-child(8) {
    animation-delay: 0.35s;
}

.bar:nth-child(9) {
    animation-delay: 0.1s;
}

.bar:nth-child(10) {
    animation-delay: 0.4s;
}

.bar:nth-child(11) {
    animation-delay: 0.2s;
}

.bar:nth-child(12) {
    animation-delay: 0.15s;
}

.bar:nth-child(13) {
    animation-delay: 0.3s;
}

.bar:nth-child(14) {
    animation-delay: 0.05s;
}

.bar:nth-child(15) {
    animation-delay: 0.25s;
}

.bar:nth-child(16) {
    animation-delay: 0.35s;
}

.bar:nth-child(17) {
    animation-delay: 0.1s;
}

.bar:nth-child(18) {
    animation-delay: 0.0s;
}

.bar:nth-child(19) {
    animation-delay: 0.2s;
}

.bar:nth-child(20) {
    animation-delay: 0.15s;
}

@keyframes audioBar {

    0%,
    100% {
        height: 8px;
    }

    50% {
        height: 45px;
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--clr-text-dim);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--clr-gradient);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary {
    background: var(--clr-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--clr-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--clr-primary);
    background: rgba(230, 57, 70, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 0.95rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    position: relative;
    padding: 120px 0;
    z-index: 1;
}

.section-dark {
    background: var(--clr-bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--clr-primary);
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.gradient-text {
    background: var(--clr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--clr-text);
    margin-bottom: 16px;
}

.about-text p {
    color: var(--clr-text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--clr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--clr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-float);
}

.about-image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.about-image-tag {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--clr-primary);
    font-weight: 600;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 10px 18px;
    background: rgba(18, 18, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
    box-shadow: var(--shadow-card);
}

.badge-1 {
    top: -10px;
    right: -10px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    left: -20px;
    animation-delay: 1.3s;
}

.badge-3 {
    bottom: -10px;
    right: 20%;
    animation-delay: 2.6s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    gap: 24px;
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--clr-gradient);
    border-radius: 4px;
}

.event-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.event-card.past {
    opacity: 0.7;
}

.event-card.past:hover {
    opacity: 1;
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    text-align: center;
}

.event-month {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 2px;
}

.event-year {
    font-size: 0.7rem;
    color: var(--clr-text-dim);
    letter-spacing: 1px;
}

.event-content {
    flex: 1;
}

.event-status {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.event-status.upcoming {
    background: rgba(230, 57, 70, 0.15);
    color: var(--clr-primary);
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.event-status.past-status {
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-text-dim);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--clr-text-dim);
}

.event-detail svg {
    stroke: var(--clr-primary);
    flex-shrink: 0;
}

.event-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Event Image */
.event-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    max-height: 400px;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-image:hover img {
    transform: scale(1.03);
}

/* Event Features */
.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.event-feature {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    background: var(--clr-gradient-subtle);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: var(--radius-full);
    color: var(--clr-text-muted);
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.event-feature:hover {
    border-color: rgba(230, 57, 70, 0.4);
    color: var(--clr-text);
    background: rgba(230, 57, 70, 0.1);
}

/* Event Lineup */
.event-lineup {
    margin-bottom: 16px;
    padding: 14px 16px;
    background: rgba(230, 57, 70, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-md);
}

.event-lineup-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--clr-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.event-lineup-names {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.event-lineup-names span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text);
}

.event-lineup-names span::after {
    content: '≈';
    margin-left: 12px;
    color: var(--clr-primary);
    opacity: 0.5;
}

.event-lineup-names span:last-child::after {
    display: none;
}

/* Ticket waves */
.event-tickets {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ticket-wave {
    flex: 1;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    transition: all var(--transition-fast);
}

.ticket-wave:hover {
    border-color: rgba(230, 57, 70, 0.35);
    background: rgba(230, 57, 70, 0.06);
}

.ticket-wave-door {
    border-color: rgba(255, 255, 255, 0.06);
    opacity: 0.7;
}

.ticket-wave-name {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
}

.ticket-wave-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-primary);
    font-family: var(--font-primary);
}

.events-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.events-cta p {
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-years {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-year-card {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.gallery-year-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--clr-gradient);
    border-radius: 4px;
}

.gallery-year-card:hover {
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.gallery-year-badge {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.gallery-year-number {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--clr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.gallery-year-label {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--clr-text-dim);
}

.gallery-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 8px;
    margin-bottom: 24px;
}

.gallery-photo-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    will-change: transform;
    display: block;
}

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

.gallery-photo-main {
    grid-column: 1 / -1;
    max-height: 340px;
}

.gallery-photo-main img {
    height: 340px;
}

.gallery-photo-item:not(.gallery-photo-main) img {
    height: 140px;
}

.gallery-btn {
    font-size: 0.9rem;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.location-address {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.location-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-gradient-subtle);
    border-radius: var(--radius-md);
}

.location-icon svg {
    stroke: var(--clr-primary);
}

.location-address h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.location-address p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.location-subtext {
    font-size: 0.8rem !important;
    color: var(--clr-text-dim) !important;
    margin-top: 2px;
}

.location-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-links .btn {
    justify-content: flex-start;
}

.map-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-wrapper iframe {
    display: block;
}

.map-overlay-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.map-badge-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    position: relative;
    background: var(--clr-bg);
    padding-top: 0;
    z-index: 1;
}

.footer-wave {
    overflow: hidden;
    opacity: 0.15;
    max-height: 60px;
    margin-bottom: 40px;
}

.footer-wave-img {
    width: 100%;
    object-fit: cover;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
}

.footer-name {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    background: var(--clr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--clr-text-dim);
    font-size: 0.85rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--clr-text-dim);
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-primary);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
    color: var(--clr-text-muted);
}

.social-icon:hover {
    background: var(--clr-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.social-icon:hover svg {
    stroke: white;
}

.footer-address {
    font-size: 0.85rem;
    color: var(--clr-text-dim);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--clr-text-dim);
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.75rem !important;
}

.footer-credit a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--clr-primary);
}

/* ============================================
   SCROLL ANIMATIONS (AOS-like)
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    will-change: opacity, transform;
}

[data-aos="fade-up"].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-down"].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-60px);
}

[data-aos="fade-right"].aos-visible {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(60px);
}

[data-aos="fade-left"].aos-visible {
    opacity: 1;
    transform: translateX(0);
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        transition: right var(--transition-smooth);
        gap: 4px;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .nav-links a {
        font-size: 1rem;
        padding: 12px 16px;
        width: 100%;
    }

    .hero-banner-img {
        max-width: 300px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .event-card {
        flex-direction: column;
        gap: 16px;
    }

    .event-date-badge {
        flex-direction: row;
        gap: 8px;
        justify-content: flex-start;
    }

    .gallery-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-photo-main img {
        height: 220px;
    }

    .gallery-photo-item:not(.gallery-photo-main) img {
        height: 110px;
    }

    .gallery-year-card {
        padding: 20px;
    }

    .section {
        padding: 80px 0;
    }

    .audio-bars {
        padding: 0 10%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

    .hero-banner-img {
        max-width: 240px;
    }

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

    .location-address {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .location-icon {
        margin: 0 auto;
    }
}