/* ATX Comedy - Dark Theme Inspired by Modern Comedy Venues */

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

:root {
    /* FOE Brand Colors */
    --foe-orange: #FF6B35;
    --foe-orange-glow: rgba(255, 107, 53, 0.4);
    --foe-black: #0A0A0A;
    --foe-dark: #121212;
    --foe-card: #1A1A1A;
    --foe-white: #FFFFFF;
    --foe-gray: #888888;

    /* Legacy variables mapped to new palette */
    --primary-orange: #FF6B35;
    --primary-orange-hover: #ff7043;
    --teal-accent: #00d4aa;
    --dark-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --card-bg-hover: #1a1a1a;
    --border-color: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #ff7043 100%);
    --gradient-teal: linear-gradient(135deg, #00d4aa 0%, #00f5c4 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

section {
    padding: 80px 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

section h2 {
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-atx {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 2px;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-orange);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(240, 90, 40, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 90, 40, 0.5);
}

.btn-v2 {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-orange);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-v2:hover {
    background: var(--primary-orange-hover);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: var(--text-primary);
}

/* Hero Section with Animated Wavy Background */
.hero-animated {
    position: relative;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-wavy-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 8px,
            rgba(240, 90, 40, 0.20) 8px,
            rgba(240, 90, 40, 0.20) 16px,
            transparent 16px,
            transparent 24px,
            rgba(255, 255, 255, 0.10) 24px,
            rgba(255, 255, 255, 0.10) 32px
        );
    background-size: 64px 64px;
    filter: url(#wavy);
    animation: heroWavyFlow 5.2s linear infinite;
    z-index: 0;
}

.hero-wavy-bg-2 {
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 12px,
            rgba(240, 90, 40, 0.13) 12px,
            rgba(240, 90, 40, 0.13) 24px,
            transparent 24px,
            transparent 36px,
            rgba(255, 255, 255, 0.07) 36px,
            rgba(255, 255, 255, 0.07) 48px
        );
    background-size: 96px 96px;
    animation: heroWavyFlow2 7.8s linear infinite reverse;
    opacity: 0.8;
}

@keyframes heroWavyFlow {
    0% { background-position: 0 0; }
    100% { background-position: 64px 64px; }
}

@keyframes heroWavyFlow2 {
    0% { background-position: 0 0; }
    100% { background-position: 96px 96px; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.7) 60%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

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

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #f05a28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured Show Section */
.featured-show-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0f0f 100%);
    padding: 80px 5vw;
    border-top: 1px solid var(--border-color);
}

.featured-show-section h2 {
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.featured-show-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.featured-show-card:hover {
    transform: scale(1.02);
}

.featured-show-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.featured-show-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-show-info h3 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.featured-show-info .venue {
    font-size: 1.1rem;
    color: var(--teal-accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.featured-show-info .description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1rem;
}

.featured-show-info .show-meta {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Top Pick - Orange Border Effect */
.top-pick-section {
    position: relative;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
}

.top-pick-section .featured-show-card {
    border: 3px solid var(--foe-orange);
    box-shadow: 0 0 30px var(--foe-orange-glow);
}

.top-pick-card {
    position: relative;
    background: var(--card-bg);
    border: none;
    z-index: 1;
}

.top-pick-section h2 {
    color: var(--primary-orange);
    text-shadow: 0 0 20px rgba(240, 90, 40, 0.5);
    position: relative;
    z-index: 1;
}

/* Featured Shows Section - No special border */
.featured-shows-wrapper {
    position: relative;
    padding: 0;
    margin: 20px 0;
}

/* Ribbon Title Flourish */
.ribbon-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Smaller ribbon for h3 elements */
h3.ribbon-title::before,
h3.ribbon-title::after {
    max-width: 100px;
    height: 20px;
}

.ribbon-title::before,
.ribbon-title::after {
    content: '';
    flex: 1;
    max-width: 150px;
    height: 30px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 4px,
            var(--foe-orange) 4px,
            var(--foe-orange) 8px,
            transparent 8px,
            transparent 12px,
            #fff 12px,
            #fff 16px
        );
    background-size: 32px 100%;
    border-radius: 0 50px 50px 0;
    filter: url(#wavy);
    animation: ribbonFlow 1.5s linear infinite;
}

.ribbon-title::after {
    transform: scaleX(-1);
    animation: ribbonFlowReverse 1.5s linear infinite;
}

@keyframes ribbonFlow {
    0% { background-position: 0 0; }
    100% { background-position: 32px 0; }
}

@keyframes ribbonFlowReverse {
    0% { background-position: 32px 0; }
    100% { background-position: 0 0; }
}

.featured-section {
    position: relative;
}

/* Day badge - reusable */
.day-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Time text - orange subtle */
.time-text {
    color: var(--primary-orange);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Show item v2 day badge positioning */
.show-item-v2 .day-badge {
    margin-bottom: 10px;
}

/* Show List - Cards with Images */
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.show-item-v2 {
    position: relative;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.show-item-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
    transition: all 0.4s ease;
}

.show-item-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(240, 90, 40, 0.2);
}

.show-item-v2:hover::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(240, 90, 40, 0.2) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.show-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 1;
}

.show-overlay h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-overlay .venue {
    display: inline-block;
    color: var(--teal-accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding: 4px 12px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 20px;
}

.show-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.show-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.show-date-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.date-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Merch Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(240, 90, 40, 0.15);
}

.card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.card-meta .venue {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.card-meta .price {
    color: var(--teal-accent);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Email Subscribe Section */
.email-subscribe {
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
    text-align: center;
    border-radius: 20px;
    margin: 40px 5vw;
    padding: 60px 40px;
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.email-subscribe h2 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.email-subscribe p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
    padding: 15px 25px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-width: 300px;
    transition: border-color 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.subscribe-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

/* Belly Laughs Section */
.belly-laughs {
    text-align: center;
    background: var(--card-bg);
    border-radius: 20px;
    margin: 40px 5vw;
    padding: 60px;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.belly-laughs h2 {
    color: var(--teal-accent);
}

.belly-laughs p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 5vw;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange);
}

.faq-item h4 {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.questions-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px;
    max-width: 500px;
}

.questions-list li {
    color: var(--text-secondary);
    font-size: 1.1rem;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.questions-list li::before {
    content: "•";
    color: var(--primary-orange);
    font-size: 1.4rem;
    position: absolute;
    left: 0;
}

.questions-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
}

.inline-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #ff7043;
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #4285f4, #34a853, #4285f4);
    padding: 15px 35px;
    font-size: 1.2rem;
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.add-show-cta {
    text-align: center;
    padding: 50px 20px;
    background: rgba(20, 20, 20, 0.9);
    border-top: 1px solid #2a2a2a;
}

.add-show-cta p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 15px 35px;
    font-size: 1.2rem;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Visit Us Section */
.visit-us {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7043 100%);
    text-align: center;
    padding: 80px 5vw;
    margin: 0;
    max-width: none;
}

.visit-us-content {
    max-width: 600px;
    margin: 0 auto;
}

.visit-us h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.visit-us h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.visit-us p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.ymh-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: inherit;
    cursor: default;
}

.ymh-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background: #050505;
    text-align: center;
    padding: 50px 5vw;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 4vw;
    }

    .logo-img {
        height: 35px;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-atx {
        font-size: 0.7rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .featured-show-card {
        grid-template-columns: 1fr;
    }

    .featured-show-image {
        height: 250px;
    }

    .featured-show-info {
        padding: 30px;
    }

    .show-list {
        grid-template-columns: 1fr;
    }

    .show-item-v2 {
        height: 320px;
    }

    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    .subscribe-form input[type="email"] {
        min-width: 100%;
    }

    section {
        padding: 60px 5vw;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .belly-laughs,
    .email-subscribe {
        padding: 40px 25px;
        margin: 20px 15px;
    }
}

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

.show-item-v2,
.card,
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* Shows Page - Show Items as Clickable Image Cards */
.show-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.show-card {
    position: relative;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: block;
    text-decoration: none;
    color: inherit;
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    transition: all 0.3s ease;
}

.show-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(240, 90, 40, 0.3);
}

.show-card:hover::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(240, 90, 40, 0.3) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.show-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 1;
}

.show-card .day-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.show-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.show-card .venue {
    display: inline-block;
    color: var(--teal-accent);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 4px 10px;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 15px;
}

/* Fallback for shows without images */
.show-card.no-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.show-card.no-image::before {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* Hero section for shows page */
.hero {
    padding: 160px 5vw 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(240, 90, 40, 0.1) 0%, var(--dark-bg) 100%);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary-orange);
}

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

/* Responsive shows page */
@media (max-width: 768px) {
    .show-list {
        grid-template-columns: 1fr;
    }

    .show-card {
        height: 280px;
    }

    .show-card h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .show-card {
        height: 250px;
    }

    .show-card-content {
        padding: 20px;
    }
}

/* ============================================
   PREMIUM FEATURES - FOE WEBSITE UPGRADE
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--foe-orange), #ff7043);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--foe-orange-glow);
}

/* Scroll animations removed - content always visible */

/* Card Lift Effect */
.card-lift {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-lift:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Glow Effects */
.glow-hover {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.glow-hover:hover {
    box-shadow: 0 0 30px var(--foe-orange-glow);
    border-color: var(--foe-orange) !important;
}

/* Image Zoom on Hover */
.image-zoom {
    overflow: hidden;
}

.image-zoom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-image: inherit;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.show-card.image-zoom {
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.show-card.image-zoom:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--foe-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
    opacity: 0;
}

.custom-cursor.visible {
    opacity: 1;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.5);
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Infinite Marquee */
.marquee-container {
    overflow: hidden;
    background: var(--foe-dark);
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-content span {
    color: var(--foe-gray);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    padding: 0 30px;
}

.marquee-content span.highlight {
    color: var(--foe-orange);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Magnetic Button */
.magnetic-btn {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Button Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

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

.btn-ripple:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: 0s;
}

/* Enhanced Button Glow */
.btn-glow {
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px var(--foe-orange-glow), 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced Wavy Ribbon Glow */
.hero-wavy-bg {
    animation: heroWavyFlow 5.2s linear infinite, wavyGlow 3s ease-in-out infinite alternate;
}

@keyframes wavyGlow {
    0% { filter: url(#wavy) brightness(1); }
    100% { filter: url(#wavy) brightness(1.1); }
}

/* 3D Tilt Card Styles */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.tilt-card .show-card-content {
    transform: translateZ(30px);
}

/* Show card enhanced hover with glow border */
.show-card.glow-hover:hover {
    border: 1px solid var(--foe-orange);
}

/* Smooth scroll body class for Lenis */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

/* Hide custom cursor on mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .custom-cursor {
        display: none !important;
    }

    .marquee-content span {
        font-size: 0.85rem;
        padding: 0 20px;
    }
}
