:root {
    --primary-bg: #000912;
    /* User Specified Dark */
    --accent-color: transparent;
    /* Red line removed (transparent) */
    --text-color: #ffffff;
    --box-border-color: transparent;
    /* Green guide lines removed */

    /* Fonts */
    /* Fallback stack for Bambino: Poppins, Impact, or broad sans-serif */
    --font-heading: 'Bambino-Bold', 'Poppins', 'Impact', sans-serif;
    --font-body: 'Cambria', serif;

    --header-height: 140px;
    /* Adjust based on logo+nav height */
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;

    /* Background Image Settings */
    background-image: url('../assets/background.jpg');
    background-size: cover;
    /* Scale to cover entire screen */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax effect: Image stays still while content scrolls */
}

/* Custom Font Declarations */
@font-face {
    font-family: 'Bambino-Bold';
    src: url('../assets/BambinoBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cambria';
    src: url('../assets/cambria.ttc') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-bg);
    border-bottom: 3px solid var(--accent-color);
    z-index: 1000;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styling */
.brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list li a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: #ccc;
    /* Hover state */
}

/* Main Content Wrapper */
main {
    margin-top: var(--header-height);
    /* Push content down below fixed header */
    padding: 2rem 0;
    min-height: 100vh;
}

/* Container Strategy: Keeps content centered in 1200px equivalent */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* For narrower text content like the bio */
.container-narrow {
    max-width: 900px;
}

.content-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

/* Design Elements / Placeholders */
h2 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.video-placeholder {
    /* Removed fixed height and borders, use .video-responsive instead */
    margin-bottom: 2rem;
}

/* Responsive Video Container */
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    position: relative;
    height: 0;
    border-radius: 8px;
    /* Optional: Soften edges */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    /* Lift it off the page */
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.text-content {
    border: 1px solid var(--box-border-color);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
}

/* Widgets */
.widget-box {
    border: 2px solid var(--box-border-color);
    padding: 1.5rem;
    text-align: center;
    /* background: rgba(0, 255, 0, 0.05); Removed debug tint */
    margin: 2rem auto;
}

.bit-widget {
    min-height: 200px;
}

#tickets h2 {
    color: #000000;
    /* Black Header Text */
}

.social-widget {
    max-width: 600px;
}

/* Invert Social Icons to Black */
.social-links img {
    filter: brightness(0);
    /* Turns white icons to black */
}

/* Footer Styling - Switch to Black */
footer h3 {
    color: #000000;
}

.epk-link {
    text-align: center;
    margin-top: 1rem;
}

.epk-link a {
    color: #000000;
    /* Black Link */
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.epk-link a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
    color: #000000;
    /* Black Text */
}

/* Global Responsive Reset */
img,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    :root {
        --header-height: 180px;
        /* Header gets taller when items wrap */
    }

    /* Mobile Background Fix: Use pseudo-element for stable "fixed" behavior */
    body {
        background-image: none;
        /* Disable default image on mobile */
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;

        background-image: url('../assets/background-mobile.jpg');
        /* Dedicated Mobile Image */
        background-size: cover;
        /* scaling to fill screen */
        background-position: center;
        /* centered as requested */
        background-repeat: no-repeat;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .brand-logo img {
        max-height: 80px;
        /* Smaller logo on mobile */
    }

    /* Mobile Text Visibility Fixes */
    #tickets h2,
    #subscribe h2,
    .content-section h2 {
        color: #ffffff !important;
    }

    /* Target the mailing list form injected text */
    #subscribe div,
    #subscribe p,
    #subscribe label,
    #subscribe span {
        color: #ffffff !important;
    }

    /* Force input fields to have black text for readability */
    #subscribe input,
    #subscribe textarea,
    #subscribe select {
        color: #000000 !important;
        background-color: #ffffff !important;
        /* Ensure background is white for contrast */
    }

    /* Force BandsInTown widget text to white on mobile */
    .bit-widget * {
        color: #ffffff !important;
    }

    /* Force Social Icons back to white on mobile */
    .social-links img {
        filter: none !important;
        /* Removes the brightness(0) filter */
    }

    /* Force Footer Text to white on mobile */
    footer h3,
    .social-widget h3,
    .epk-link a,
    .copyright {
        color: #ffffff !important;
    }

    .container,
    .header-container {
        padding: 0 15px;
        /* Prevent horizontal overflow */
    }
}

/* Store Product Layout */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    /* High opacity white for visibility */
    padding: 20px;
    border-radius: 4px;
    /* Slight rounding */
    border: 1px solid #333;
    /* Dark subtle border */
    text-decoration: none;
    /* Remove underline from anchor wrap */
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.product-thumb {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 1px solid #ccc;
    flex-shrink: 0;
    display: block;
    background-color: #eee;
    /* Placeholder grey */
}

.product-info {
    flex-grow: 1;
    text-align: left;
    color: #000000;
    /* Requested Black Text */
    font-family: 'Cambria', serif;
    /* Requested Font */
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #000000;
}

.product-info p {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.more-info {
    font-weight: bold;
    color: #000000;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Mobile Store Adjustments */
@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
        text-align: center;
    }

    .product-info {
        text-align: center;
    }
}

.product-price {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Mission Page Typography */
.mission-intro {
    font-size: 1.3rem;
    /* Slightly larger lead paragraph */
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.4;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
}

.mission-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ddd;
    /* Slightly softer white for reading */
    line-height: 1.8;
    /* Better readability */
    text-align: left;
    /* Easier to read blocks of text */
    font-family: 'Cambria', serif;
    /* Explicitly requested */
}

.mission-highlight {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin: 3rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 1.4;
}

.mission-closing {
    margin-top: 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}