:root {
    /* Primary Brand Colors */
    --primary: #FFCC00;
    --primary-hover: #FFD633;
    --primary-active: #E6B800;
    --primary-glow: rgba(255, 204, 0, 0.4);

    /* Secondary Colors */
    --secondary: #FFFAB3;
    --secondary-glow: rgba(255, 250, 179, 0.4);

    /* Accent Colors */
    --accent-blue: #00D9FF;
    --accent-purple: #9747FF;

    /* Semantic Colors */
    --success: #22C55E;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;

    /* Surface Colors */
    --dark-bg: #0a0a0a;
    --card-bg: #161616;
    --surface-elevated: #242424;
    --surface-hover: #2e2e2e;

    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #b8b8b8;

    /* Gradient Presets */
    --gradient-gold: linear-gradient(135deg, #FFCC00 0%, #FFD633 50%, #FFCC00 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(255, 204, 0, 0.2), transparent 70%);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
}

/* Focus management */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Enhanced button focus */
.btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(255, 204, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: #000;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
}

.text-gradient {
    background: linear-gradient(135deg,
            var(--primary) 0%,
            var(--secondary) 50%,
            var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.text-highlight {
    color: var(--secondary);
    text-shadow: 0 0 30px var(--secondary-glow);
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e6b800);
    color: #000;
    box-shadow: 0 4px 20px var(--primary-glow);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

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

.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-main);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    animation: headerSlideDown 0.8s ease-out;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header.scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    animation: logoFadeIn 1s ease-out 0.3s backwards;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.3));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.6));
    }
}

.logo:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px var(--primary-glow));
    animation: none;
}

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

.nav-links li {
    animation: navItemFadeIn 0.6s ease-out backwards;
}

.nav-links li:nth-child(1) {
    animation-delay: 0.4s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.5s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.6s;
}

.nav-links li:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes navItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a:not(.btn) {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

/* Animated underline effect */
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

/* Enhanced Buy Tickets button in nav */
.nav-links .btn-primary {
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 4px 35px var(--primary-glow), 0 0 50px rgba(255, 204, 0, 0.3);
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-main);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 100px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 204, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 250, 179, 0.08) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite alternate;
    z-index: 2;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 2rem;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.95;
    animation: heroTitleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    text-shadow: 0 0 80px rgba(255, 204, 0, 0.3);
}

@keyframes heroTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Glowing text effect on hero title */
.hero-title .text-gradient,
.hero-title span {
    animation: textGlowPulse 3s ease-in-out infinite alternate;
}

@keyframes textGlowPulse {
    0% {
        text-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
    }

    100% {
        text-shadow: 0 0 60px rgba(255, 204, 0, 0.8), 0 0 100px rgba(255, 204, 0, 0.4);
    }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    animation: heroSubtitleReveal 1s ease-out 0.5s backwards;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@keyframes heroSubtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}

@keyframes heroBtnsReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero button enhanced hover */
.hero-btns .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.hero-btns .btn-outline:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary);
    background: rgba(255, 204, 0, 0.1);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    filter: saturate(0.8) brightness(0.7);
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

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

/* Sections */
.section {
    padding: clamp(4rem, 10vh, 8rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vh, 5rem);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

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

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}



/* Lifestyle Section Styles */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lifestyle-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lifestyle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: white;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.card-tag {
    display: inline-block;
    background: var(--primary-color);
    color: black;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.card-desc {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.card-link:hover {
    color: white;
}

.card-link .arrow {
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.card-link:hover .arrow {
    transform: translateX(5px);
}

.card-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-features li {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    color: var(--primary-color);
    font-weight: bold;
}

/* Featured Dining Cards (Main Page) */
.featured-dining-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.featured-dining-card .card-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    width: 100%;
}

.featured-logo-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    margin-bottom: 1rem;
}

.featured-logo-holder img {
    max-height: 70px;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0.95);
}

.lifestyle-card .dining-followers {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Events Loading/Empty/Error States */
.events-loading,
.events-empty,
.events-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.events-loading .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.events-error {
    color: #f87171;
}

.event-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 204, 0, 0.03) 0%,
            transparent 50%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.event-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 204, 0, 0.1);
}

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

.event-card:focus-within {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 204, 0, 0.1);
}

.event-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.event-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
    pointer-events: none;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.event-card:hover .event-image img,
.event-card:hover .img-placeholder {
    transform: scale(1.08);
}

.event-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 204, 0, 0.3);
    z-index: 10;
    transition: var(--transition);
}

.event-card:hover .event-date {
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.event-date .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.event-date .day {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-main);
}

/* Multi-date badge */
.event-date-multi {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(255, 204, 0, 0.2));
    border-color: var(--primary);
    padding: 0.5rem 0.75rem;
    min-width: 80px;
}

.event-date-multi .month {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: -0.2rem;
    color: var(--text-main);
}

.event-date-multi .day {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
}

/* Ticket date selector */
.ticket-selector {
    position: relative;
    flex: 1;
}

.ticket-selector .date-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.ticket-selector .btn {
    width: 100%;
    pointer-events: none;
}

.ticket-selector:hover .btn {
    background: var(--primary-hover);
}

.event-details {
    padding: 2rem;
    background: linear-gradient(to bottom, var(--card-bg), rgba(22, 22, 22, 0.95));
}

.event-venue {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-venue::before {
    content: '📍';
    font-size: 1rem;
}

.event-artist {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.event-info {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.event-details .btn {
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 700;
}

.event-card:hover .event-details .btn {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}


/* Contact */
.contact {
    background: linear-gradient(to bottom,
            var(--dark-bg) 0%,
            #1a1508 50%,
            #2e260b 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at 50% 0%,
            rgba(255, 204, 0, 0.1),
            transparent 70%);
    pointer-events: none;
}

.contact-container {
    text-align: center;
    max-width: 600px;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    animation: fadeInUp 0.3s ease-out;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.newsletter-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Event Schedule */
.event-schedule {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    gap: 1rem;
}

.schedule-item .time {
    color: var(--primary);
    font-weight: 700;
    min-width: 80px;
}

.schedule-item .desc {
    color: var(--text-main);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .logo-img {
    max-height: 55px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

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

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

    body.menu-open {
        overflow: hidden;
    }


    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* ========================================
   SKELETON LOADING STATES
   ======================================== */
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.skeleton-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skeleton-image {
    height: 280px;
    background: linear-gradient(90deg, #1a1a1a 0%, #242424 50%, #1a1a1a 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-content {
    padding: 2rem;
}

.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #1a1a1a 0%, #242424 50%, #1a1a1a 100%);
    background-size: 200% 100%;
    border-radius: 4px;
    margin-bottom: 1rem;
    animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-line-sm {
    width: 60%;
}

.skeleton-line-lg {
    width: 80%;
    height: 24px;
}

.skeleton-line-md {
    width: 70%;
}

.skeleton-button {
    height: 48px;
    background: linear-gradient(90deg, #1a1a1a 0%, #242424 50%, #1a1a1a 100%);
    background-size: 200% 100%;
    border-radius: 50px;
    margin-top: 1.5rem;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ========================================
   BUTTON LOADING STATE
   ======================================== */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Button with icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-icon:hover svg {
    transform: translateX(4px);
}

/* External link indicator */
.btn[target="_blank"]::after {
    content: '↗';
    margin-left: 0.5rem;
    display: inline-block;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.btn[target="_blank"]:hover::after {
    transform: translate(2px, -2px);
}

/* ========================================
   MOBILE MENU BACKDROP
   ======================================== */
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

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

/* Staggered menu animation */
.nav-links.active li {
    animation: slideInRight 0.4s ease backwards;
}

.nav-links.active li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links.active li:nth-child(2) {
    animation-delay: 0.15s;
}

.nav-links.active li:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-links.active li:nth-child(4) {
    animation-delay: 0.25s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   ENHANCED EVENT CARD WITH GRADIENT BORDER
   ======================================== */
.event-card .card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 204, 0, 0.4) 25%,
            transparent 50%,
            rgba(255, 204, 0, 0.4) 75%,
            transparent 100%);
    background-size: 200% 200%;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    animation: borderRotate 3s linear infinite paused;
    transition: opacity 0.3s ease;
}

.event-card:hover .card-glow {
    opacity: 1;
    animation-play-state: running;
}

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

    100% {
        background-position: 200% 50%;
    }
}

/* ========================================
   COUNTDOWN TIMER
   ======================================== */
.event-countdown {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 204, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.event-starting {
    color: var(--success);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SOCIAL MEDIA ICONS
   ======================================== */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-social a:hover svg {
    fill: #000;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: var(--transition);
}

/* ========================================
   THREE.JS HERO CANVAS
   ======================================== */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* ========================================
   REDUCED MOTION SUPPORT
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .event-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .hero-canvas {
        display: none;
    }

    .video-bg {
        animation: none;
    }

    .card-glow {
        display: none;
    }
}

/* ========================================
   GSAP ANIMATION PREP CLASSES
   ======================================== */
.gsap-hidden {
    opacity: 0;
    visibility: hidden;
}

.gsap-reveal {
    opacity: 1;
    visibility: visible;
}

/* Split text character styling */
.char {
    display: inline-block;
}

/* Safety: ensure critical sections are visible even if JS animations fail */
@keyframes ensureVisible {
    to {
        opacity: 1;
        transform: none;
    }
}

.section-header,
.contact-content {
    animation: ensureVisible 0s 3s forwards;
}

/* ========================================
   FORM ENHANCEMENTS
   ======================================== */
.form-field {
    position: relative;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.form-error {
    font-size: 0.85rem;
    color: var(--error);
    margin-top: 0.5rem;
    display: none;
}

.form-error.visible {
    display: block;
}

input:invalid:not(:placeholder-shown)+.form-error {
    display: block;
}

/* ========================================
   EVENT DETAIL MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-container {
    background: var(--card-bg);
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 24px;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 204, 0, 0.2);
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 204, 0, 0.1);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    color: black;
    transform: rotate(90deg);
}

.modal-hero {
    height: 350px;
    position: relative;
    overflow: hidden;
}

.modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, var(--card-bg), transparent);
}

.modal-content {
    padding: 2.5rem;
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-event-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.modal-event-date {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-onsale {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.badge-presale {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-soldout {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.badge-price {
    background: rgba(255, 204, 0, 0.2);
    color: var(--primary);
    border: 1px solid rgba(255, 204, 0, 0.4);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.modal-section-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.modal-info-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.seatmap-container {
    background: #000;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

.seatmap-container img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.venue-info-item {
    display: flex;
    gap: 1rem;
}

.venue-info-item .icon {
    font-size: 1.25rem;
    color: var(--primary);
}

.venue-info-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.venue-info-item p {
    font-size: 1rem;
    color: var(--text-main);
}

.presale-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.presale-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.presale-item h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.presale-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

/* Multi-date styles */
.modal-dates-multi {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-dates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-date-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.modal-date-row:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 204, 0, 0.3);
}

.modal-date-row .date-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.modal-date-row .date-day {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.modal-date-row .date-time {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-date-row .btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

/* Ticket selector in grid */
.ticket-selector {
    position: relative;
    flex: 1;
}

.ticket-selector select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.ticket-selector .btn {
    pointer-events: none;
    width: 100%;
}

.ticket-selector:hover .btn {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* Enhanced event card elements */
.event-price-range {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 204, 0, 0.4);
    z-index: 10;
}

.event-status-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

/* Interactive card */
.event-card {
    cursor: pointer;
}

@media (max-width: 900px) {
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-event-name {
        font-size: 2rem;
    }

    .modal-hero {
        height: 250px;
    }

    .modal-content {
        padding: 1.5rem;
    }
}