@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@600;700;800&family=Rajdhani:wght@300;400;600;700&display=swap');

:root {
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    background: #000000;
    color: #ffffff;
    scroll-behavior: smooth;
}

body.page-home {
    overflow-x: hidden;
    max-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

body.page-home .logo-hero {
    flex-shrink: 0;
}

body.page-home .shows-section,
body.page-home .why-book-section,
body.page-home .trust-section {
    flex-shrink: 0;
}

body.page-home .cta-section {
    flex-shrink: 0;
}

body.page-home footer {
    flex-shrink: 0;
    margin-top: auto;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

header.site-header {
    background: #000000;
    border-bottom: 1px solid #333;
    padding: 2px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo img {
    height: 60px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links a {
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00E5FF;
    border-color: #00E5FF;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.header-icons {
    display: flex;
    gap: 1rem;
    color: #00E5FF;
    font-size: 1.25rem;
}

.header-icons span:hover {
    color: #FFD700;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: #0a0a0a;
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 2000;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1500;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Tonight's Performances CTA bar – above logo/header – logo purple */
.tonight-cta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(90deg, rgba(226, 0, 255, 0.15) 0%, rgba(226, 0, 255, 0.08) 100%);
    border-bottom: 1px solid rgba(226, 0, 255, 0.4);
    color: #E200FF;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.2s, color 0.2s;
}
.tonight-cta-bar:hover {
    background: rgba(226, 0, 255, 0.2);
    color: #fff;
}
.tonight-cta-bar-btn {
    padding: 4px 12px;
    border: 1px solid #E200FF;
    border-radius: 6px;
    font-size: 0.85rem;
}
.tonight-cta-bar:hover .tonight-cta-bar-btn {
    background: rgba(226, 0, 255, 0.2);
}

/* Next performance bar – SCS: white text on purple, centered, sized to fit */
.show-card-next-performance {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    padding: 0.4rem 0.75rem;
    background: rgba(226, 0, 255, 0.85);
    font-size: clamp(0.75rem, 1.8vw, 0.95rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(226, 0, 255, 0.5);
}
.venue-sidebar-show-card .show-card-next-performance {
    min-height: 2rem;
    padding: 0.35rem 0.75rem;
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
}

.logo-hero {
    min-height: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 2rem 2rem;
}

/* Homepage desktop: single black masthead with logo + nav under it, no top header bar */
.page-home .logo-hero {
    background: #000000;
}

.page-home .logo-hero-nav {
    display: none;
}

@media (min-width: 769px) {
    .page-home .site-header {
        display: none;
    }

    .page-home .logo-hero-nav {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        width: 100%;
    }

    .page-home .logo-hero-nav .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 2rem;
    }
}

.logo-hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Hamburger in hero: hidden on desktop, shown on mobile home */
.hamburger-hero {
    display: none;
}

.logo-hero-mobile-row {
    display: block;
}

.logo-hero-image {
    width: 80%;
    height: auto;
    max-width: 80%;
    display: block;
    margin: 0 auto;
}

.shows-section {
    padding: 2rem 0;
}

.shows-contact-link {
    margin: 2rem 0 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.shows-contact-link a {
    color: #ffffff;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, text-shadow 0.2s ease;
}

.shows-contact-link a:hover {
    color: #00E5FF;
    border-color: #00E5FF;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.why-book-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 0;
}
.why-book-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-book-list {
    max-width: 720px;
    margin: 0;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0da;
}

.why-book-list li {
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #00E5FF;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.show-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.show-card-link {
    color: inherit;
}

.show-card-link:hover .card-button {
    background: #00E5FF;
    color: #000000;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}
.show-card-link:hover .card-button .card-button-icon {
    color: #000000;
}

.show-card:hover {
    transform: translateY(-8px);
    border-color: #00E5FF;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.show-card-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #252530 0%, #1a1a24 100%);
}

.show-card-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.show-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Show cards without .show-card-img-wrap (legacy): keep img aspect ratio */
.show-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: -0.05rem;
    text-align: center;
}

.card-venue {
    font-size: 0.875rem;
    color: #9fa0ad;
}

.card-cta-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: -0.35rem;
    text-align: center;
}
/* CTA highlights – SCS logo palette */
.card-cta-highlight--sold-out { color: #FFD700; }
.card-cta-highlight--available { color: #00E5FF; }
.card-cta-highlight--accent { color: #E200FF; }
/* Cycle CTA colors from SCS logo: magenta, cyan, gold */
.shows-grid .show-card:nth-child(4n+1) .card-cta-text { color: #E200FF; }
.shows-grid .show-card:nth-child(4n+2) .card-cta-text { color: #00E5FF; }
.shows-grid .show-card:nth-child(4n+3) .card-cta-text { color: #FFD700; }
.shows-grid .show-card:nth-child(4n+4) .card-cta-text { color: #00FFFF; }
/* Subtle pulse animation on 4n+2 CTA */
.shows-grid .show-card:nth-child(4n+2) .card-cta-text {
    animation: card-cta-pulse 2s ease-in-out infinite;
}
@keyframes card-cta-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.card-description {
    font-size: 0.875rem;
    color: #d0d0da;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFD700;
    margin: 0 0 0.25rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    text-align: center;
}

.card-button-icon {
    font-size: 1.1rem;
    vertical-align: middle;
    margin-left: 0.4rem;
    color: #ffffff;
}
.card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 2px solid #00E5FF;
    color: #00E5FF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    margin-top: auto;
}

.card-button:hover {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.trust-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #9fa0ad;
}

.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-top: 2px solid #00E5FF;
    border-bottom: 2px solid #00E5FF;
}

.cta-section-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
    color: #d0d0da;
}

.cta-section-content p {
    margin: 0 0 1.25rem;
}

.cta-section-content p:last-child {
    margin-bottom: 0;
}

footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 3rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-grid h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-grid p,
.footer-grid a {
    font-size: 0.95rem;
    color: #9fa0ad;
    display: block;
    margin-bottom: 0.4rem;
}

.footer-grid a:hover {
    color: #00E5FF;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #9fa0ad;
}

.footer-legal {
    width: 100%;
    margin: 1rem 0 0;
    padding: 0;
    font-size: 0.7rem;
    line-height: 1.4;
    color: #6b7280;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {

    /* Hide header bar on mobile home; menu is opened via hamburger next to logo */
    .page-home .site-header {
        display: none;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo-hero {
        min-height: 0;
        padding: 1.25rem 1rem;
        position: relative;
    }

    .logo-hero-content {
        max-width: 100%;
    }

    .logo-hero-mobile-row {
        display: block;
        text-align: center;
    }

    .page-home .hamburger-hero {
        display: block;
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-size: 1.5rem;
        cursor: pointer;
        color: #fff;
        background: transparent;
        border: none;
        padding: 0.25rem;
        line-height: 1;
    }

    .page-home .hamburger-hero:hover {
        color: #00E5FF;
    }

    .logo-hero-image {
        max-height: 144px;
        width: auto;
        height: auto;
        max-width: 80%;
        object-fit: contain;
        margin-left: auto;
        margin-right: auto;
    }

    .shows-section {
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
    }

    .shows-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .show-card {
        border-radius: 12px;
    }

    .show-card img {
        aspect-ratio: 16 / 10;
    }

    .card-content {
        padding: 1rem 1.25rem 1.25rem;
        gap: 0.25rem;
    }

    .card-title {
        font-size: 1.35rem;
        line-height: 1.25;
        margin: 0 0 0.05em;
    }

    .card-description {
        font-size: 1rem;
        line-height: 1.3;
        -webkit-line-clamp: 3;
        margin: 0;
    }

    .card-price {
        font-size: 1.35rem;
        margin: 0.25em 0 0.2em;
        line-height: 1.2;
    }

    .card-button {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
        margin-top: 0.25rem;
    }

    .trust-section {
        padding: 2rem 1rem;
    }

    .trust-grid {
        gap: 1.5rem;
    }

    .trust-item h3 {
        font-size: 1.1rem;
    }

    .trust-item p {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section .section-title {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        font-size: 0.8rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media (max-width: 480px) {
    .logo-hero-image {
        max-height: 112px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-section .section-title {
        font-size: 1.25rem;
    }
}
