/* Global Design System */
:root {
    /* Colors */
    --color-primary: #faa800;
    --color-dark: #000000; /* Adjusted for darker background */
    --color-light: #f4f4f4;
    --color-white: #fff;
    --color-transparent: rgba(0, 0, 0, 0);
    --color-gray: #6b7280;
    --color-header-bg: #758D9C;
    --color-hero-date: #bee1ef; /* Light blue for the date */
    --color-footer-bg: #758D9C;
    --color-social-icon-bg: #bee1ef;
    --color-social-icon: #5D7280;
    --color-info-header-blue: #ADD8E6; /* New blue for info block headers */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    /* Font Sizes */
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.75rem; /* Adjusted for h2 titles */
    --font-size-hero: 2.5rem; /* Adjusted for better mobile display */
    --font-size-hero-lg: 3.5rem; /* Increased for banner title */
    --font-size-xxl: 2.5rem; /* New size for larger titles */

    /* Other */
    --header-height: 4rem;
}

html {
    scroll-padding-top: 10rem; /* Offset for fixed header and sticky nav */
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--color-light); /* Default text color, will be overridden where needed, changed to light for readability on dark background */
    background: var(--color-dark); /* Changed to black */
    background-image: url("../images/Texture-Background.jpg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-attachment: fixed;
    padding-top: var(--header-height); /* Adjusted to match header height */
}

a {
    text-decoration: none;
    color: var(--color-primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding-bottom: var(--spacing-md);
    padding-top: var(--spacing-lg); /* Adding a default top padding for all sections, can be overridden */
}

.text-center {
    text-align: center;
}

.button {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.button:hover {
    background: var(--color-dark);
}

.button-secondary {
    background: var(--color-gray);
}

.button-secondary:hover {
    background: var(--color-dark);
}

.placeholder-image {
    background: var(--color-primary);
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-weight: bold;
    font-size: var(--font-size-lg);
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    border-radius: 5px;
}

.card-image {
    width: 100%;
    height: 100%; /* Fill the container, adjusted by aspect-ratio of parent */
    object-fit: cover; /* Change to cover to fill container */
    display: block; /* Remove extra space below image */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-header-bg);
    color: var(--color-white);
    z-index: 1000;
    padding: var(--spacing-md) 0;
}

/* .main-header.scrolled {
    background-color: var(--color-dark);
    color: var(--color-white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
} */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-and-title {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 30px; /* Adjust as needed */
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Makes the SVG white */
}

.header-logo {
    display: flex;
    align-items: center;
    color: inherit; /* Ensure link color is inherited */
}

.site-name {
    color: var(--color-white);
    font-size: var(--font-size-lg); /* Or adjust as needed */
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap; /* Prevent wrapping */
}

.event-date-header {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-md);
    margin-left: var(--spacing-xs); /* Adjust spacing from pipe */
    white-space: nowrap;
}

.main-nav .nav-list {
    display: none; /* Hidden by default on mobile */
}

.main-nav .nav-list li {
    margin-left: var(--spacing-md);
}

.main-nav .nav-list a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.main-nav .nav-list a:hover {
    color: var(--color-primary);
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-overlay .nav-list {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mobile-nav-overlay .nav-list li {
    margin: var(--spacing-sm) 0;
}

.mobile-nav-overlay .nav-list a {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: bold;
    padding: var(--spacing-xs) 0;
    display: block;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .hamburger-menu {
        display: none;
    }

    .main-nav .nav-list {
        display: flex;
    }

    .mobile-nav-overlay {
        display: none;
    }
}

.new-button {
    color: var(--color-white) !important; /* Force white text for readability */
}

/* Footer */
.main-footer {
    background-color: var(--color-footer-bg);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-xl) 0 calc(var(--spacing-md) + 20px) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--spacing-lg); /* Increased margin to separate from social links */
}

.footer-nav .footer-links li {
    margin: 0 var(--spacing-sm);
}

.footer-nav .footer-links a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.footer-nav .footer-links a:hover {
    color: var(--color-primary);
}

.social-links {
    margin-bottom: var(--spacing-lg); /* Increased margin to separate from Mailchimp */
}

.social-links a {
    margin: 0 var(--spacing-xs);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-social-icon-bg);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    background-color: var(--color-primary); /* Example hover color */
}

.social-links img {
    width: 28px; /* Adjust size of the icon inside the circle */
    height: 28px;
    filter: brightness(0) saturate(100%) invert(29%) sepia(13%) saturate(996%) hue-rotate(170deg) brightness(88%) contrast(90%); /* This filter should approximate #5D7280 */
    /* Original: filter: brightness(0) invert(1); for white */
}

.social-links img:hover {
    transform: scale(1.1);
}

.mailchimp-signup-placeholder {
    margin-top: var(--spacing-xs);
    margin-bottom: calc(var(--spacing-xl) + 20px);
    padding: var(--spacing-md);
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    color: var(--color-white);
}

.mailchimp-signup-placeholder h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
}

.mailchimp-signup-placeholder p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* Mailchimp Embed Styling */
#mc_embed_signup {
    background: none; /* Remove Mailchimp´s default background */
    color: var(--color-white);
    font-size: var(--font-size-md);
    text-align: center;
    padding: 0; /* Adjust padding as needed, or remove */
}

#mc_embed_signup h2 {
    color: var(--color-white); /* Match site´s white text */
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: bold;
}

#mc_embed_signup .mc-field-group {
    margin-bottom: var(--spacing-sm);
}



#mc_embed_signup input[type="email"] {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid rgba(255, 255, 255, 0.3); /* Lighter border */
    background-color: rgba(0, 0, 0, 0.2); /* Slightly transparent background */
    color: var(--color-white);
    font-size: var(--font-size-md);
    box-shadow: none; /* Remove default Mailchimp shadow */
    -webkit-appearance: none; /* For consistent styling across browsers */
}

#mc_embed_signup input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#mc_embed_signup .button {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 5px;
    border: none; /* Remove Mailchimp´s default border */
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    width: 100%; /* Make button full width */
    margin-top: var(--spacing-sm); /* Space above button */
}

#mc_embed_signup .button:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}



/* Hide Mailchimp branding */
#mc_embed_signup #mc_embed_signup_scroll .mc-recaptcha,
#mc_embed_signup .mc-powered-by {
    display: none !important;
}

#mc_embed_signup_scroll p {
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

#mc_embed_signup_scroll {
    padding: 0;
}

.footer-contact {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.footer-contact p {
    font-size: var(--font-size-md);
    color: var(--color-white);
    margin-bottom: 0;
}

.footer-contact a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.copyright {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-xs); /* Reduced space above copyright since contact info is there now */
}



/* Hero Section */
.hero-section {
    position: relative; /* Ensure proper stacking context for children */
    overflow: hidden;
    background-color: var(--color-dark); /* Fallback background for when video isn\`t loading */
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-xl) var(--spacing-sm); /* Added bottom padding */
    min-height: 500px;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;

}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Hide overflowing video parts */
    z-index: 1; /* Below hero-content, above other background elements if any */
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Ensure video stays behind the container */
    transform: translate(-50%, -50%);
    object-fit: cover; /* Cover the entire container, maintaining aspect ratio */
    filter: brightness(0.6); /* Slightly darken the video for better text readability */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay */
    z-index: 2; /* Above video, below hero-content */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.hero-logo {
    filter: brightness(0) invert(1); /* Makes SVG white */
    margin-bottom: var(--spacing-sm);
}

.vinyl-summit-logo {
    max-width: 60%;
    height: auto;
    margin-bottom: var(--spacing-xs);
}

.acoustic-sounds-logo,
.anniversary-logo {
    filter: brightness(0) invert(1);
}

.acoustic-sounds-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.acoustic-sounds-logo {
    max-width: 70%;
    height: auto;
    margin-bottom: var(--spacing-xs);
}

.anniversary-logo {
    max-width: 40%;
    height: auto;
}

.event-date {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
    color: var(--color-hero-date);
    font-weight: bold;
}

.event-tagline {
    font-size: var(--font-size-md);
    max-width: 500px;
    margin: 0 auto var(--spacing-xs) auto;
}

.hero-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-sm);
    background-color: #6a7a85;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-sm);
}

.hero-button:hover {
    background-color: var(--color-primary);
}

.event-overview-button,
.music-preview-button,
.shop-button {
    background-color: #6a7a85; /* A blue-gray, similar to other buttons */
    border: 1px solid var(--color-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    display: block;
    margin: var(--spacing-sm) auto;
    max-width: 200px;
    text-align: center; /* Center the text inside the button */
}

.event-overview-button:hover,
.music-preview-button:hover,
.shop-button:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Global styles for music listing items */
.music-preview-section .music-listings {
    margin-bottom: var(--spacing-sm); /* Space below the list of music items */
}

.music-preview-section .music-listing-item {
    display: block;
    margin-bottom: 0.25rem; /* Space between each music item */
    color: var(--color-white);
}

.music-preview-section .music-listing-item:hover {
    color: var(--color-primary);
}

.music-preview-section .music-listing-item .music-date {
    display: block;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.music-preview-section .music-listing-item .music-artist {
    display: block;
    font-size: var(--font-size-md);
    font-weight: bold;
    color: var(--color-white);
}

.hero-sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.hero-sponsor-logos a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 60px;
    flex-shrink: 0;
    flex-grow: 0;
}

.hero-sponsor-logos a img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: invert(50%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Light gray filter */
    transition: filter 0.3s ease;
}

.hero-sponsor-logos a img:hover {
    filter: brightness(0) invert(1);
}

/* Desktop adjustments for Hero Section */
@media (min-width: 768px) {
    .hero-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    .hero-background-left,
    .hero-background-right {
        display: block;
    }

    .hero-background-left {
        width: 30%;
        max-width: 300px;
    }

    .hero-background-right {
        width: 30%;
        max-width: 300px;
    }

    .hero-content {
        flex: 2;
        max-width: 600px;
    }

    .vinyl-summit-logo {
        max-width: 300px;
        margin-bottom: var(--spacing-xs);
    }

    .acoustic-sounds-group {
        flex-direction: row;
        gap: var(--spacing-md);
    }

    .acoustic-sounds-logo {
        max-width: 220px;
        margin-bottom: 0;
    }

    .anniversary-logo {
        max-width: 120px;
    }
}

/* Sponsors Section */
.sponsors-section {
    background-color: var(--color-header-bg);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-sm) 0;
}

.sponsors-section h2 {
    color: #B9C6CC;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.2em;
    font-size: var(--font-size-lg);
    font-weight: normal;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Generic styles for sections with images */
.image-section {
    background-color: transparent;
    color: var(--color-white);
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}
.image-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-sm);
}
.image-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}
.image-section-text {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-xs);
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}
.image-section-text h2,
.image-section-text p,
.image-section-text ul li {
    color: var(--color-white);
}
.image-wrapper {
    position: relative;
    width: 100%;
    min-height: 250px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}
.image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
    z-index: 2;
}

/* Mobile-specific adjustments for Swiper (max-width: 767px) */
@media (max-width: 767px) {
    .sponsor-swiper {
        width: 100%;
        overflow: hidden;
        padding: var(--spacing-xs) 0;
    }

    .sponsor-swiper .swiper-wrapper {
        align-items: center;
        box-sizing: border-box;
        transform: translate3d(0, 0, 0);
        height: auto;
        min-height: 100px;
    }


    /* Adjustments for individual logo slides on mobile */
    .sponsor-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 120px;
        height: 80px;
    }

    .sponsor-swiper .swiper-slide img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        height: auto;
        width: auto;
        filter: invert(86%) sepia(8%) saturate(302%) hue-rotate(170deg) brightness(97%) contrast(89%); /* Apply sponsor text color filter */
    }

    .sponsor-swiper .swiper-slide img.large-logo {
        max-width: 100%;
        max-height: 100%;
    }

    /* Style for swiper pagination dots */
    .sponsor-swiper .swiper-pagination {
        display: none;
    }

    .sponsor-swiper .swiper-pagination-bullet {
        background-color: var(--color-white);
        opacity: 0.5;
    }

    .sponsor-swiper .swiper-pagination-bullet-active {
        background-color: var(--color-primary);
        opacity: 1;
    }
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    /* Desktop-specific layout for image sections */
    .image-section-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .image-section-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    .image-section-text {
        text-align: left;
        padding-right: var(--spacing-lg);
        margin-bottom: 0;
        flex: 1;
        color: var(--color-white);
    }
    
    .image-section-text h2,
    .image-section-text p,
    .image-section-text ul li {
        color: var(--color-white);
    }

    /* Desktop-specific centering for event, music and shop sections */
    .music-preview-section .image-section-text,
    .shop-section .image-section-text {
        text-align: center;
        color: var(--color-white);
    }
    .event-overview-section .image-section-text {
        text-align: left;
        color: var(--color-white);
    }

    .image-wrapper {
        position: relative;
        width: 100%;
        min-height: 250px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        overflow: hidden;
        flex: 0 0 50%;
        min-height: unset;
    }

    .image-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%);
    }

    .event-overview-section .event-overview-features {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-md);
    }
    .event-overview-section .feature-list-col-1 li,
    .event-overview-section .feature-list-col-2 li {
        color: var(--color-hero-date);
        font-size: var(--font-size-sm);
        margin-bottom: 0.25rem;
    }

    .event-overview-section .image-section-text h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-xs);
    }

    .event-overview-section .image-section-text p {
        font-size: var(--font-size-md);
        margin-bottom: var(--spacing-xs);
    }

    .music-preview-section .image-section-text h2 {
        font-size: var(--font-size-xl);
        font-weight: bold;
        color: var(--color-white);
        margin-bottom: var(--spacing-xs);
    }



    .shop-section .image-section-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .shop-section .image-section-text h2 {
        font-size: var(--font-size-xl);
        font-weight: bold;
        color: var(--color-white);
        margin-bottom: var(--spacing-xs);
    }



    /* Desktop-specific adjustments for Swiper-based Sponsors Section */
    .sponsor-swiper {
        max-width: 1000px;
        margin: 0 auto;
        overflow: visible;
        padding: 0;
        display: block;
    }

    .sponsor-swiper .swiper-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: var(--spacing-md);
        width: 100%;
        transform: none !important;
        height: auto !important;
    }

    .sponsor-swiper .swiper-slide {
        height: auto;
        margin: 0;
        opacity: 1 !important;
        flex-shrink: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Wilson Audio (first logo) - large and on its own line */
    .sponsor-swiper .swiper-slide:nth-child(1) {
        flex: 0 0 100%;
        margin-bottom: var(--spacing-lg);
    }

    .sponsor-swiper .swiper-slide:nth-child(1) img {
        max-width: 350px;
        filter: invert(86%) sepia(8%) saturate(302%) hue-rotate(170deg) brightness(97%) contrast(89%);
    }
    
    /* Universal Music Group to Tracking Angle (next 6 logos) */
    .sponsor-swiper .swiper-slide:nth-child(n+2):nth-child(-n+7) {
        width: calc((100% / 6) - (var(--spacing-md) * 5 / 6));
        max-width: 160px; /* Increased from 120px */
        margin-bottom: var(--spacing-md);
    }

    /* Neotech to Axpona (last 5 logos) */
    .sponsor-swiper .swiper-slide:nth-child(n+8) {
        width: calc((100% / 5) - (var(--spacing-md) * 4 / 5));
        max-width: 160px;
    }

    .sponsor-swiper .swiper-slide img {
        max-width: 100%;
        height: auto;
        min-width: unset;
        filter: invert(86%) sepia(8%) saturate(302%) hue-rotate(170deg) brightness(97%) contrast(89%); /* Apply sponsor text color filter */
    }

    .sponsor-swiper .swiper-pagination {
        display: none;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
}

/* Explore Teaser Section */
.explore-teaser-section {
    background-image: url("../images/Explore-Salina-Kansas.png"); /* Using path relative to CSS file */
    background-size: cover; /* Fill the section, maintain aspect ratio, crop if necessary */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: var(--spacing-xxl) var(--spacing-sm);
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

/* Overlay for better text readability */
.explore-teaser-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.explore-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    width: 100%;
    padding: 0 var(--spacing-sm);
}

.explore-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #cad1d5;
    margin-bottom: var(--spacing-xs);
    letter-spacing: 2px;
}

.explore-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: var(--spacing-xl);
    font-weight: normal;
}

.explore-submenu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-xl);
}

.explore-submenu li {
    margin: 0 var(--spacing-xs);
    position: relative;
}

.explore-submenu li:not(:last-child)::after {
    content: "|";
    color: #aeb6bc;
    margin-left: var(--spacing-xs);
}

.explore-submenu a {
    color: #aeb6bc;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: normal;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.explore-submenu a:hover {
    color: var(--color-white);
}

.see-salina-button {
    background-color: #6b7a85;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-md);
    margin-top: var(--spacing-md);
}

.see-salina-button:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

@media (min-width: 768px) {
    .explore-title {
        font-size: 4rem;
    }

    .explore-subtitle {
        font-size: 2rem;
    }

    .explore-submenu a {
        font-size: 1rem;
    }
}

/* Ticket Page Specific Styles */

.hero-banner-image {
    width: 100%;
    height: 250px; /* Default height for mobile */
    object-fit: cover; /* Cover the area, crop if necessary */
    display: block;
    /* margin-top adjusted for full-bleed banner */
}

@media (min-width: 768px) {
    .hero-banner-image {
        height: 400px; /* Taller on desktop */
    }
}

.ticket-category-nav {
    background-color: var(--color-header-bg); /* Dark background for the nav */
    padding: var(--spacing-sm) 0;
    text-align: center;
    position: sticky;
    top: var(--header-height); /* Stick below the main header */
    z-index: 900;
}

.ticket-category-nav .container ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.ticket-category-nav .container ul li a {
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 20px; /* Pill shape */
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    font-size: var(--font-size-md);
}

.ticket-category-nav .container ul li a:hover,
.ticket-category-nav .container ul li a.active {
    background-color: rgba(0, 0, 0, 0.2); /* Darker grey for hover/active */
    color: var(--color-white);
}

.ticket-category-nav .container ul li span {
    color: rgba(255, 255, 255, 0.5); /* Separator color */
    font-size: var(--font-size-md);
}

/* Section headings */
.section-heading {
    font-size: var(--font-size-xl);
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-white);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.section-subheading {
    font-size: var(--font-size-lg);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
}

/* Ticket Cards */
.ticket-card-row {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-sm);
}

.ticket-card {
    background-color: var(--color-white); /* White background for the card */
    padding: var(--spacing-sm); /* Padding for the white border effect */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit; /* Inherit text color */
    display: flex;
    flex-direction: column;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.ticket-card .card-image-placeholder {
    width: 100%;
    /* aspect-ratio: 1 / 1; Removed to prevent excess whitespace */
    /* height: 180px; Removed fixed height */
    /* border-radius: 0; Removed to inherit from parent */
}

.ticket-card .card-info-panel {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    color: var(--color-dark); /* Dark text on white panel */
    border-radius: 0; /* Removed bottom rounded corners to blend with parent */
    flex-grow: 1;
}

.ticket-card .card-info-panel h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark);
}

.ticket-card .card-info-panel p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
    color: var(--color-gray);
    line-height: 1.2; /* Adjusted line-height */
}

.ticket-card .card-info-panel .price {
    font-weight: bold;
    color: var(--color-dark); /* Changed from primary to dark */
    font-size: var(--font-size-md);
}

/* VIP and Deluxe Packages */
.package-row {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-sm);
}

.package-card-large {
    background-color: var(--color-white); /* White background for the card */
    padding: var(--spacing-sm); /* Padding for the white border effect */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit; /* Inherit text color */
    display: flex;
    flex-direction: column;
}

.package-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.package-card-large .card-image-placeholder {
    width: 100%;
    /* aspect-ratio: 1 / 1; Removed to prevent excess whitespace */
    /* height: 250px; Removed fixed height */
    /* border-radius: 0; Removed to inherit from parent */
}

.package-card-large .card-info-panel {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    color: var(--color-dark);
    border-radius: 0; /* Removed bottom rounded corners to blend with parent */
    flex-grow: 1;
}

.package-card-large .card-info-panel .price {
    font-weight: bold;
    color: var(--color-dark); /* Changed from primary to dark */
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.package-card-large .card-info-panel p {
    font-size: var(--font-size-md);
    color: var(--color-gray);
    line-height: 1.2; /* Adjusted line-height */
}

.package-details {
    color: var(--color-white);
    padding: var(--spacing-md);
    background-color: rgba(0, 0, 0, 0.3); /* Slightly transparent dark background for details */
    border-radius: 10px;
}

.package-details h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.package-details ul {
    list-style: disc; /* Added bullets */
    padding-left: var(--spacing-lg); /* Adjusted padding for bullets */
}

.package-details ul li {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2; /* Adjusted line-height */
}

/* Other Options - Wide Card */
.wide-ticket-card {
    background-color: var(--color-white); /* White background for the card */
    padding: var(--spacing-sm); /* Re-added padding */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column; /* Stack image and text on mobile */
    max-width: 400px;
    margin: 0 auto var(--spacing-xl) auto;
}

.wide-ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.wide-ticket-card .card-image-placeholder {
    position: relative; /* For text overlay */
    /* width: 100%; Removed to allow padding */
    height: 180px; /* Set a fixed height */
    /* border-radius: 0; Removed to inherit from parent */
    overflow: hidden; /* Ensure content is clipped */
}

.wide-ticket-card .card-image-placeholder::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
    z-index: 1; /* Ensure it\`s above the image but below the text */
}

.image-text-overlay {
    position: absolute;
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 2;
    padding: 0.5rem; /* Added padding */
}

.image-text-overlay--top-left {
    top: 1rem;
    left: 1rem;
    text-align: left;
    width: auto;
}

.image-text-overlay--center-vertical {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    font-size: 1.5rem;
}

.image-text-overlay--top-right {
    top: 1rem;
    right: 1rem;
    text-align: right;
    left: auto;
}

.ticket-card .card-image-placeholder, 
.package-card-large .card-image-placeholder, 
.wide-ticket-card .card-image-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.wide-ticket-card .card-image-placeholder img {
    width: 100%;
    height: 100%; /* Fill the container\'s height */
    object-fit: cover; /* Cover the container, cropping if necessary */
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.wide-ticket-card .card-content {
    padding: var(--spacing-md); /* Added padding */
    color: var(--color-dark); /* Changed from white to dark */
    flex-grow: 1;
}

.wide-ticket-card .card-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
    color: var(--color-dark); /* Changed from white to dark */
}

.wide-ticket-card .card-content p {
    font-size: var(--font-size-md);
    color: var(--color-gray); /* Changed from rgba to gray */
    margin-bottom: var(--spacing-sm);
    line-height: 1.2; /* Adjusted line-height */
}

.wide-ticket-card .card-content .price {
    font-weight: bold;
    color: var(--color-dark); /* Changed from white to dark */
    font-size: var(--font-size-lg);
}

/* Desktop adjustments for Ticket Page */
@media (min-width: 768px) {
    .ticket-card-row {
        flex-direction: row;
        justify-content: space-around;
    }

    .ticket-card {
        flex: 1;
        max-width: 30%;
    }

    .package-row {
        flex-direction: row;
        align-items: flex-start;
    }

    .package-card-large {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .package-details {
        flex: 1;
        padding-left: var(--spacing-lg);
    }

    .wide-ticket-card {
        flex-direction: column; /* Stacks image and content vertically */
        align-items: center; /* Center content horizontally */
    }

    .wide-ticket-card .card-image-placeholder {
        /* Removed specific flex width */
        height: 220px; /* Adjusted height for desktop */
        border-radius: 0;
    }

    .wide-ticket-card .card-content {
        flex: 1; /* Content takes remaining width */
        padding-left: 0; /* Removed padding-left for column layout */
    }
}

/* Google Map Specific Styles */
gmp-map {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: var(--spacing-md);
}

/* REMOVED: #map-controls styles */

/* Specific styling for map container within explore-section to ensure it fills available space */
.explore-section .map-container {
    width: 100%;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0; /* No top margin */
}
/* Venue Navigation Links */
.venue-navigation {
    margin-top: 0; /* No top margin */
    margin-bottom: var(--spacing-xs); /* Even more reduced margin */
    text-align: center;
}

/* REMOVED: .venue-navigation h3 styles */

.venue-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.venue-navigation li {
    list-style: none;
}

.venue-navigation a {
    display: inline-block;
    background-color: var(--color-header-bg);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    font-size: var(--font-size-md);
    text-decoration: none;
}

.taxes-asterisk-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    padding: 0 2px;
    cursor: pointer;
}

.taxes-asterisk-link:hover {
    text-decoration: underline;
}

.orange-asterisk {
    color: var(--color-primary);
    font-weight: bold;
}

.taxes-footnote {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    text-align: center;
    margin-top: var(--spacing-md);
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure price text in cards can handle the sup */
.price sup {
    top: -0.5em;
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    pointer-events: auto; /* Ensure the sup itself is clickable even if its parent link has issues */
}

/* Background for Header and Submenu */
.main-header,
.ticket-category-nav {
    /* background removed */
}
/* Background for Sponsors Section on index.html */
.sponsors-section {
    /* background removed */
}

.hero-banner {
    position: relative;
    height: 400px; /* Adjust as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-md);
}



.content-section {
    color: var(--color-white);
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}

.content-section .section-title,
.dealer-slots-section .section-title {
    font-size: var(--font-size-xxl);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.content-section p {
    color: var(--color-white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left; /* Ensure all paragraphs are left-aligned */
}

.intro-paragraph {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
}

.info-block {
    background-color: transparent; /* Removed background color */
    border-radius: 0; /* Removed border radius */
    padding: 0; /* Removed padding */
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    text-align: left; /* Left align text */
    max-width: 800px; /* Wider for left-aligned content */
    margin-left: auto;
    margin-right: auto;
}

.content-section .info-block-title {
    color: var(--color-info-header-blue) !important; /* Force blue color based on user feedback */
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    font-weight: bold;
}

.info-block p {
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
    font-weight: bold;
}

.dealer-slots-section {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xxl);
    color: var(--color-white);
}

.dealer-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.dealer-slot {
    background-color: var(--color-gray);
    border-radius: 10px;
    padding: var(--spacing-xl);
    text-align: center;
    font-size: var(--font-size-xxl);
    font-weight: bold;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.dealer-slot p {
    margin: 0;
}

@media (max-width: 767px) {
    .hero-banner {
        height: 300px;
    }

    .hero-banner-title {
        font-size: var(--font-size-xl);
    }

    .info-block {
        padding: var(--spacing-sm);
    }

    .dealer-slot {
        padding: var(--spacing-lg);
        font-size: var(--font-size-lg);
    }
}


.content-section {
    color: var(--color-white);
    padding-top: var(--spacing-xxl);
}

.content-section h1,
.content-section h2,
.content-section h3,
.content-section p,
.content-section ul li {
    color: var(--color-white);
}

.content-section a {
    color: var(--color-primary); /* Keep links primary color */
}

/* FAQ styles */
.content-section dt {
    font-weight: bold;
    color: var(--color-primary);
    margin-top: var(--spacing-md);
    font-size: var(--font-size-lg);
}

.content-section dd {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.content-section dd ul {
    list-style: disc;
    padding-left: var(--spacing-md);
    margin-top: var(--spacing-xs);
}

.btn-secondary {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    background-color: #758D9C;
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* About Page Styles */
.about-page {
    color: var(--color-white);
}

.about-page h1, 
.about-page h2 {
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.about-page h1 {
    font-size: var(--font-size-xxl);
    margin-bottom: var(--spacing-lg);
}

.about-page h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

/* About Page Refined Intro */
.about-intro {
    padding: 0; /* Removed all padding to make it flush with header and next section */
}

.about-intro-content-wrapper {
    background-color: #000;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.about-hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

.about-hero-image-wrapper img {
    width: 100%;
    display: block;
}

.about-hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md) var(--spacing-md);
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 100%);
    text-align: center;
}

.about-hero-caption h1 {
    margin-bottom: 0;
    color: var(--color-white);
    font-size: var(--font-size-xxl);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-intro-text {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
}

.about-intro-text p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-md);
    line-height: 1.6;
}

/* Facility Tours */
.facility-tours {
    padding: var(--spacing-xl) 0 0 0; /* Removed bottom padding */
    background-color: #758D9C; /* Blue-gray from the mockup */
}

.tour-images {
    display: flex;
    justify-content: center;
    gap: 0; /* Removed gap so images touch */
    margin-bottom: 0; /* Removed bottom margin */
    flex-wrap: nowrap; /* Keep them in a row */
}

.tour-images img {
    width: 33.333%;
    height: auto;
    object-fit: cover;
    border-radius: 0; /* Removed border radius for seamless look */
}

.tour-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0; /* Moved padding here since images are flush */
}

/* Musical Performances Refined */
.musical-performances-refined {
    padding: 0;
}

.performances-content-wrapper {
    background-color: #000;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.performances-hero-image-wrapper {
    position: relative;
    display: grid;
    grid-template-areas: "content";
    overflow: hidden;
}

@media (min-width: 768px) {
    .performances-hero-image-wrapper {
        max-height: 500px; /* Constrain height to reduce whitespace on desktop */
    }
}

.performances-hero-image-wrapper img {
    grid-area: content;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay for the whole image */
.performances-hero-image-wrapper::before {
    content: "";
    grid-area: content;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Add a gradient overlay at the bottom to fade to black */
.performances-hero-image-wrapper::after {
    content: "";
    grid-area: content;
    align-self: end;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    z-index: 2;
}

.performances-overlay-content {
    grid-area: content;
    z-index: 3;
    padding: var(--spacing-md); /* Reduced from spacing-lg */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically within the constrained height */
    align-items: center;
}

.performances-overlay-content h2 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.performances-text-overlay {
    max-width: 900px;
    margin: 0 auto;
}

.performances-text-overlay p {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-md);
    line-height: 1.4;
    color: var(--color-white);
}

.cta-container {
    margin: var(--spacing-xs) 0;
}

/* Record Show & Notable Guests Refined */
.about-footer-sections {
    padding: 0;
}

.footer-sections-wrapper {
    background-color: #000;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.record-show-refined {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: center;
}

.record-show-refined h2 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 var(--spacing-sm) 0; /* Tight margins */
}

.record-show-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.record-show-text p {
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.notable-guests-refined {
    margin-top: 0;
}

.guests-hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .guests-hero-image-wrapper {
        max-height: 350px; /* Constrain height to reduce whitespace on desktop */
    }
}

.guests-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guests-hero-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.guests-hero-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    z-index: 2;
}

.guests-hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 3;
    padding: 0 var(--spacing-md);
}

.guests-hero-caption h2 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.guests-hero-caption p {
    color: var(--color-white);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}

.guest-grid-wrapper {
    padding: var(--spacing-xs) var(--spacing-md) var(--spacing-xl) var(--spacing-md);
    background-color: #000;
}

.performances-content-wrapper {
    background-color: #000;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.performances-hero-image-wrapper {
    position: relative;
    display: grid; /* Use grid for reliable responsive overlay */
    grid-template-areas: "content";
    overflow: hidden;
}

.performances-hero-image-wrapper img {
    grid-area: content;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark overlay for the whole image */
.performances-hero-image-wrapper::before {
    content: "";
    grid-area: content;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Add a gradient overlay at the bottom to fade to black */
.performances-hero-image-wrapper::after {
    content: "";
    grid-area: content;
    align-self: end;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    z-index: 2;
}

.performances-overlay-content {
    grid-area: content;
    z-index: 3;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.performances-overlay-content h2 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-lg);
}

.performances-text-overlay {
    max-width: 900px;
    margin: 0 auto;
}

.performances-text-overlay p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: var(--color-white);
}

/* Record Show & Notable Guests Refined */
.about-footer-sections {
    padding: 0; /* Removed bottom padding to reduce desktop gap */
}

.footer-sections-wrapper {
    background-color: #000;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.record-show-refined {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) var(--spacing-md); /* Greatly reduced top padding */
    text-align: center;
}

.record-show-refined h2 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md); /* Reduced from lg */
}

.record-show-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.record-show-text p {
    margin-bottom: var(--spacing-sm); /* Reduced from md */
}

.notable-guests-refined {
    margin-top: 0;
}

.guests-hero-image-wrapper {
    position: relative;
    display: grid;
    grid-template-areas: "content";
    overflow: hidden;
}

@media (min-width: 768px) {
    .guests-hero-image-wrapper {
        max-height: 280px;
    }
}

.guests-hero-image-wrapper img {
    grid-area: content;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guests-hero-image-wrapper::before {
    content: "";
    grid-area: content;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.guests-hero-image-wrapper::after {
    content: "";
    grid-area: content;
    align-self: end;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    z-index: 2;
}

.guests-hero-caption {
    grid-area: content;
    z-index: 3;
    text-align: center;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.guests-hero-caption h2 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.guests-hero-caption p {
    color: var(--color-white);
    font-size: var(--font-size-sm);
    margin-top: 5px;
}

.guest-grid-wrapper {
    padding: 0 var(--spacing-md) var(--spacing-xl) var(--spacing-md);
    background-color: #000;
}

.guests-hero-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.guests-hero-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    z-index: 2;
}

.guests-hero-image-wrapper img {
    width: 100%;
    display: block;
}

.guests-hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 3;
    padding: 0 var(--spacing-md);
}

.guests-hero-caption h2 {
    color: var(--color-white);
    font-size: var(--font-size-xl);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-xs); /* Reduced from sm */
}

.guests-hero-caption p {
    color: var(--color-white);
    font-size: var(--font-size-sm);
}

.guest-grid-wrapper {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-xl) var(--spacing-md); /* Reduced top padding from lg */
    background-color: #000;
}

.guest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.guest-card {
    background-color: var(--color-white);
    border-radius: 15px;
    padding-bottom: var(--spacing-xs);
    overflow: hidden;
    color: var(--color-dark);
    text-align: center;
}

.guest-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: var(--spacing-xs);
}

.guest-name {
    font-weight: bold;
    font-size: var(--font-size-sm);
    padding: 0 var(--spacing-xs) var(--spacing-xs) var(--spacing-xs);
}

@media (max-width: 768px) {
    .tour-images {
        flex-wrap: wrap;
    }
    .tour-images img {
        width: 100%;
    }
    
    .hero-text, 
    .tour-content, 
    .performance-content, 
    .record-show-content {
        text-align: center;
    }
}
