/* Font Face Declarations */
@font-face {
    font-family: 'Migra';
    src: url('assets/Migra-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Agrandir';
    src: url('assets/Agrandir-GrandLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Root Variables - Moody Speakeasy Palette */
:root {
    --color-primary: #D09831; /* Harvest Gold - Primary Action */
    --color-primary-dark: #B88528; /* Darker Gold for hover */
    --color-secondary: #96031A; /* Deep Crimson - Secondary accents, alerts */
    --color-accent: #365310; /* Olive Leaf */
    --color-dark: #000000; /* True Black */
    --color-dark-alt: #1A2608; /* Deep Olive for cards */
    --color-gray: #2a2a2a; /* Very dark grey */
    --color-gray-light: #666666;
    --color-text: #F1E9DB; /* Parchment/Off-white for headlines */
    --color-text-body: #e0d8c8; /* Slightly darker for body text */
    --color-text-muted: #b8b0a0; /* Muted text */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Migra', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.7);
    --border-radius: 4px; /* Classic, less tech feel */
    --border-radius-lg: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-dark);
    color: var(--color-text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%; /* Prevent iOS text size adjustment */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text); /* Parchment for headlines */
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.header .container {
    padding: 0;
    max-width: 100%;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--color-text); /* Parchment to match headlines */
    text-decoration: none;
}

.logo-img {
    height: auto;
    max-height: 60px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    color: var(--color-text); /* Parchment for nav links */
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--color-primary); /* Harvest Gold on hover */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    touch-action: manipulation; /* Better touch response */
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    min-height: 48px; /* Easy thumb-tapping on mobile */
    min-width: 44px; /* Minimum touch target */
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation; /* Better touch response */
    -webkit-tap-highlight-color: rgba(208, 152, 49, 0.3); /* Tap feedback */
}

.btn-primary {
    background-color: var(--color-primary); /* Harvest Gold */
    color: #000000; /* Black text */
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text); /* Parchment */
    border: 2px solid #3a3a3a; /* Dark gray/charcoal border */
}

.btn-secondary:hover {
    border-color: #4a4a4a; /* Lighter gray on hover */
    color: var(--color-text);
    background-color: rgba(58, 58, 58, 0.1); /* Subtle dark gray background on hover */
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn-ticket {
    background-color: var(--color-primary); /* Harvest Gold */
    color: #000000; /* Black text */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 48px;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        url('assets/5.png'),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 3px
        );
    background-color: #000000;
    background-size: cover, auto, auto;
    background-position: center, 0 0, 0 0;
    background-repeat: no-repeat, repeat, repeat;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Radial gradient overlay - black at edges, transparent in center for legibility */
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.03) 0px,
        transparent 1px,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 3px
    );
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text); /* Parchment color */
    text-align: center;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Agrandir', sans-serif;
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.badge-icon {
    font-size: 1.5rem;
}

/* Ticket Banner */
.ticket-banner {
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark), var(--color-primary));
    padding: 1rem 0;
}

.ticker-wrapper {
    text-align: center;
}

.ticker-content {
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #000000; /* Black text on Harvest Gold background */
}

/* Shows Section */
.shows-section {
    padding: 5rem 0;
    background-color: var(--color-dark);
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.02) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0px,
            transparent 1px,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 3px
        );
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
}

.show-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-gray);
    color: var(--color-text);
    border: none;
    border-radius: var(--border-radius); /* 4px for classic feel */
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    min-height: 44px; /* Touch target */
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(208, 152, 49, 0.3);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-primary); /* Harvest Gold */
    color: #000000; /* Black text */
    transform: translateY(-2px);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.show-card {
    background-color: var(--color-dark-alt); /* Deep Olive */
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--color-primary); /* Gold left border accent */
}

.show-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.show-card.featured {
    border-left-color: var(--color-secondary); /* Deep Crimson for featured shows */
}

.show-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #D4AF37; /* Gold badge */
    opacity: 0.9;
    color: #FFFFFF; /* White text */
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.show-day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-text); /* Parchment */
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.show-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.show-time,
.show-times {
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.show-price {
    color: var(--color-primary); /* Harvest Gold */
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.calendar-link {
    text-align: center;
    display: none; /* Hidden for now, can be restored later */
}

/* Calendar Modal Styles */
.calendar-modal-content {
    max-width: 600px;
    height: auto;
    max-height: 90vh;
}

.calendar-body {
    padding: 2rem;
    overflow-y: auto;
}

.calendar-widget {
    width: 100%;
}

.calendar-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendar-month-year {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark-alt);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    cursor: default;
}

.calendar-date.other-month {
    opacity: 0.3;
    cursor: default;
}

.calendar-date.has-show {
    cursor: pointer;
    border-color: var(--color-primary);
}

.calendar-date.has-show:hover {
    background-color: var(--color-primary);
    transform: scale(1.05);
}

.calendar-date.has-show:hover .date-number {
    color: #000000;
    font-weight: 700;
}

.calendar-date.today {
    background-color: var(--color-primary);
}

.calendar-date.today .date-number {
    color: #000000;
    font-weight: 700;
}

.calendar-date.featured {
    border-left: 4px solid var(--color-secondary);
}

.calendar-date.featured.has-show {
    border-left-color: var(--color-secondary);
}

.date-number {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .calendar-body {
        padding: 1.5rem;
    }

    .calendar-month-year {
        font-size: 1.5rem;
    }

    .calendar-weekday {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .date-number {
        font-size: 0.95rem;
    }

    .calendar-dates,
    .calendar-weekdays {
        gap: 0.3rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-alt) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.about-features {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.about-feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.about-feature p {
    margin-bottom: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-dark-alt) 100%);
    border-radius: var(--border-radius-lg); /* 8px for classic feel */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 3px solid var(--color-primary);
}

.about-image-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 3px solid var(--color-primary);
}

/* Venue Section */
.venue-section {
    padding: 5rem 0;
    background-color: var(--color-dark);
}

.venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.venue-info h3,
.venue-policies h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.venue-info h3:first-child,
.venue-policies h3:first-child {
    margin-top: 0;
}

.venue-address {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.venue-hours-title {
    margin-top: 2rem;
}

.venue-hours {
    list-style: none;
}

.venue-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray);
}

.venue-hours li:last-child {
    border-bottom: none;
}

.policy-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #141A05; /* Darkened Deep Olive */
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        );
    border-radius: 12px;
    border-left: 4px solid var(--color-primary); /* Gold left border */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.policy-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text); /* Parchment */
}

.policy-item p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--color-dark-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--color-dark-alt); /* Deep Olive */
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--color-primary); /* Gold accent */
}

.stars {
    color: var(--color-primary); /* Harvest Gold for stars */
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-time {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    opacity: 0.7;
}

.testimonials-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
}

.testimonials-loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-gray);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.google-reviews-link {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    background-color: var(--color-gray);
    border-radius: var(--border-radius-lg);
    color: var(--color-text-muted);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--color-dark);
}

.contact-content {
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.contact-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-item a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-item p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-gray);
    border-radius: 50%;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background-color: var(--color-dark-alt);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--color-gray);
}

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

.footer-logo .logo-img {
    max-height: 90px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: none;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background-color: var(--color-dark);
    border-radius: var(--border-radius-lg); /* 8px for classic feel */
    width: 90%;
    max-width: 900px;
    height: 80vh;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-primary);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background-color: var(--color-primary); /* Harvest Gold */
    border: none;
    border-radius: 50%;
    color: #000000; /* Black text */
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

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

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--color-gray);
    background: linear-gradient(135deg, var(--color-dark-alt), var(--color-dark));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0; /* 8px for classic feel */
}

.modal-header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.modal-body {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg); /* 8px for classic feel */
}

.modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#eventbrite-widget-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--color-dark);
}

#eventbrite-widget-container iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
    display: block;
}

.modal-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    z-index: 1;
}

.modal-loading.hidden {
    display: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-gray);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.modal-loading p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        line-height: 1.6; /* Better readability on mobile */
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .container {
        padding: 0 15px;
    }

    .nav {
        padding: 1rem 15px;
    }

    .logo-img {
        max-height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--color-dark-alt);
        width: 100%;
        padding: 2rem;
        gap: 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        color: var(--color-text);
        display: block;
        padding: 1rem;
        min-height: 48px; /* Touch target size */
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a.btn {
        margin-top: 1rem;
        text-align: center;
        border-bottom: none;
    }

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

    .mobile-menu-toggle {
        display: flex;
        min-width: 44px; /* Touch target */
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .hero {
        min-height: 80vh;
        padding-top: 70px;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 10px;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .ticket-banner {
        padding: 0.75rem 0;
    }

    .ticker-content {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .shows-section,
    .about-section,
    .venue-section,
    .testimonials-section,
    .contact-section {
        padding: 3rem 0;
    }

    .show-filters {
        gap: 0.5rem;
        padding: 0 15px;
    }

    .filter-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-height: 44px; /* Touch target */
    }

    .shows-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .show-card {
        padding: 1.5rem;
    }

    .show-day {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .about-image-img {
        max-width: 100%;
    }

    .about-text {
        font-size: 1rem;
        padding: 0 15px;
    }

    .about-features {
        gap: 1.5rem;
    }

    .about-feature h3 {
        font-size: 1.2rem;
    }

    .venue-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        text-align: center;
        align-items: center;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .sticky-cta {
        display: block;
        padding: 1rem 15px;
    }

    /* Hide sticky CTA when at top of page */
    body.at-top .sticky-cta {
        display: none;
    }

    /* Modal responsive */
    .modal-content {
        width: 95%;
        height: 90vh;
        max-height: none;
        margin: 5vh auto;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 44px; /* Touch target */
        height: 44px;
        font-size: 1.5rem;
    }
}

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

    .nav {
        padding: 0.75rem 12px;
    }

    .logo-img {
        max-height: 45px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

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

    .section-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        min-height: 44px; /* Ensure touch target */
    }

    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .show-card {
        padding: 1.25rem;
    }

    .show-day {
        font-size: 1.75rem;
    }

    .show-times,
    .show-price {
        font-size: 1rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-feature h3 {
        font-size: 1.1rem;
    }

    .ticker-content {
        font-size: 0.85rem;
    }

    .filter-btn {
        padding: 0.65rem 0.9rem;
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .sticky-cta,
    .ticket-banner,
    .hero-cta,
    .btn {
        display: none;
    }
}
