/* Modern CSS for Wallingford Winter Blues & Jazz */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

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

/* Container */
.container {
    display: grid;
    grid-template-columns: 1fr min(1200px, calc(100% - 2rem)) 1fr;
    margin: 0 auto;
}

/* Default: all container children go in center column */
.container > * {
    grid-column: 2;
}

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

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #34495e;
    text-align: center;
    margin: 2rem 0 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header {
    background: #1F4A8F;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
    max-width: 100vw;
}

@media (max-width: 768px) {
    .site-header {
        overflow: visible;
    }
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    gap: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 80px;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.site-banner {
    height: 80px;
    width: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

/* Navigation wrapper */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Navigation */
.main-nav {
    position: relative;
    background-color: #1F4A8F;
    border-radius: 0;
    padding: 0;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: white;
}

.nav-toggle-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    position: relative;
    transition: background-color 0.3s ease;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    position: absolute;
    transition: transform 0.3s ease;
}

.nav-toggle-icon::before {
    top: -8px;
}

.nav-toggle-icon::after {
    top: 8px;
}

.nav-toggle.active .nav-toggle-icon {
    background-color: transparent;
}

.nav-toggle.active .nav-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .nav-toggle-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Menu-only items (hidden when banner is visible) */
.menu-only {
    display: none;
}

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

.nav-menu a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    background-color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

/* Book Tickets Button */
.book-tickets-link {
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.book-tickets-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.book-tickets-banner {
    height: 80px;
    width: auto;
    display: block;
}

/* Year Selector */
.year-selector {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #eee;
}

.year-selector select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 1rem;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    baackground: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #1F4A8F 75%, #90C9EA 100%);
    color: white;
    margin-bottom: 3rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Hero with background image */
.hero-section.has-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add overlay for better text readability when background image is present */
.hero-section.has-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Video Hero Section */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin-bottom: 3rem;
    background: #000;
    grid-column: 1 / -1;  /* Span all columns for full-width */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

.video-overlay-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.video-overlay-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.video-overlay-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Archive Notice */
.archive-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Programme Section */
.programme-section {
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.programme-note {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

.toggle-all-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-all-btn:hover {
    background: #2980b9;
}

/* Day Sections */
.day-section {
    margin-bottom: 3rem;
}

.day-title {
    text-align: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    color: white;
    font-weight: 600;
}

.day-title.friday {
    background: #f39c12;
}

.day-title.saturday {
    background: #e74c3c;
}

.day-title.sunday {
    background: #9b59b6;
}

/* Performance Tables */
.performances-table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.performances-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.performances-table th {
    background: #f8f9fa;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.performances-table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
}

.performance-row.even-row {
    background: #fff;
}

.performance-row.odd-row {
    background: #f8f9fa;
}

.time-cell {
    width: 120px;
    font-weight: 500;
    white-space: nowrap;
}

.artist-cell {
    width: 40%;
}

.venue-cell {
    width: 35%;
}

.artist-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.artist-name a {
    font-weight: 600;
    color: #2c3e50;
}

.more-info-btn {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: left;
    padding: 0;
}

.more-info-btn:hover {
    text-decoration: underline;
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.venue-link {
    font-weight: 500;
    color: #2c3e50;
}

.ticket-info {
    font-size: 0.9rem;
}

.ticket-link {
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.ticket-link:hover {
    background: #c0392b;
    text-decoration: none;
}

.ticket-action {
    margin-left: 0.5rem;
}

.ticket-price {
    background: #f39c12;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

/* Description Rows */
.description-row {
    background: #f8f9fa !important;
}

.description-image {
    width: 120px;
    text-align: center;
}

.artist-thumb {
    max-width: 100px;
    height: auto;
    border-radius: 4px;
}

.image-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.description-content {
    padding: 1.5rem 1rem;
}

.description-paragraph {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Sponsors Section */
.sponsors-section {
    background: #f8f9fa;
    padding: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sponsor-item:hover {
    transform: translateY(-2px);
}

.sponsor-logo {
    max-width: 150px;
    max-height: 80px;
    height: auto;
}

.sponsor-name {
    font-weight: 600;
    color: #2c3e50;
}

.sponsors-note {
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section a {
    color: #bdc3c7;
}

.footer-section a:hover {
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 1rem;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .hero-section {
        padding: 2rem 0;
    }

    .video-hero-section {
        height: 50vh;
        min-height: 400px;
        max-height: 600px;
    }

    .video-overlay-content h1 {
        font-size: 2rem;
    }

    .video-overlay-subtitle {
        font-size: 1.2rem;
    }

    .video-overlay-description {
        font-size: 1rem;
    }

    .performances-table th,
    .performances-table td {
        padding: 0.5rem;
    }
    
    .time-cell {
        width: 80px;
        font-size: 0.9rem;
    }
    
    .artist-cell {
        width: 45%;
    }
    
    .venue-cell {
        width: 35%;
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-banner {
        max-height: 80px;
    }
    
    .hero-section {
        padding: 1.5rem 0;
    }

    .video-hero-section {
        height: 40vh;
        min-height: 300px;
        max-height: 400px;
        border-radius: 0;
    }

    .video-overlay-content {
        padding: 1rem;
    }

    .video-overlay-content h1 {
        font-size: 1.5rem;
    }

    .video-overlay-subtitle {
        font-size: 1rem;
    }

    .video-overlay-description {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .performances-table th,
    .performances-table td {
        padding: 0.25rem;
        font-size: 0.9rem;
    }
    
    .day-title {
        font-size: 1.2rem;
        padding: 0.75rem;
    }
}

/* Performance Page - Artist Cards */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.artist-card {
    text-align: center;
}

.artist-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.artist-card-link:hover {
    transform: translateY(-5px);
}

.artist-card-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-card-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.artist-initials {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    letter-spacing: 0.1em;
}

.artist-card-name h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Performance Gallery Styles */
.performance-gallery-section {
    padding: 3rem 0;
}

.performance-gallery-section h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-link {
    display: block;
    position: relative;
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Tickets Banner Section */
.tickets-banner-section {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.tickets-banner-link {
    display: block;
    transition: opacity 0.3s ease;
}

.tickets-banner-link:hover {
    opacity: 0.95;
}

.tickets-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Featured Images Section */
.featured-images-section {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.featured-image-link {
    display: block;
    transition: opacity 0.3s ease;
}

.featured-image-link:hover {
    opacity: 0.9;
}

.featured-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* Print Styles */
@media print {
    .noprint {
        display: none !important;
    }
    
    .site-header,
    .site-footer,
    .year-selector,
    .archive-notice {
        display: none !important;
    }
    
    .main-content {
        padding: 0;
    }
    
    .hero-section {
        background: none !important;
        color: black !important;
        padding: 1rem 0;
    }

    .video-hero-section {
        display: none !important;
    }
    
    .day-title {
        background: none !important;
        color: black !important;
        border: 2px solid black;
    }
    
    .performances-table {
        border: 1px solid black;
    }
    
    .performances-table th,
    .performances-table td {
        border: 1px solid black;
    }
    
    .description-row {
        background: none !important;
    }
}

/* Medium screen adjustments */
@media (max-width: 1024px) {
    .header-content {
        max-width: 100%;
    }

    .book-tickets-banner {
        max-height: 60px;
        max-width: 150px;
        height: auto;
    }

    .nav-menu a {
        padding: 0.75rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Mobile/Responsive Styles */
@media (max-width: 768px) {
    .site-header {
        position: relative;
        z-index: 10000;
    }

    video {
        position: relative;
        z-index: 1;
    }

    .tickets-banner-section,
    .sponsors-section {
        position: relative;
        z-index: 1;
    }

    .header-content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 0;
    }

    .logo-link {
        padding: 0.5rem;
        padding-right: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }

    .site-banner {
        height: 50px;
        max-width: 100%;
        object-fit: contain;
    }

    .nav-wrapper {
        position: static;
        width: 100%;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .main-nav {
        width: 100%;
        height: auto;
        border-radius: 0;
        position: relative;
        background-color: transparent;
        z-index: 999;
    }

    .nav-toggle {
        position: absolute;
        top: -50px;
        right: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.75rem;
        z-index: 10001;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        gap: 0;
        padding-top: 60px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        background-color: rgba(31, 74, 143, 0.98);
        overflow-y: auto;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu li:first-child {
        border-top: none;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }

    .menu-only {
        display: list-item;
        border-top: 2px solid rgba(255, 255, 255, 0.3);
        margin-top: 1rem;
    }

    .menu-only a {
        background-color: rgba(255, 255, 255, 0.15);
        font-weight: 600;
    }

    .book-tickets-link {
        display: none;
    }

    .book-tickets-banner {
        display: none;
    }
}

/* Book Tickets Page Styles */
.ticket-banners-section {
    padding: 2rem 0;
}

.no-tickets-message {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: #666;
}

.ticket-banners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.ticket-banner-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ticket-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}

.ticket-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay for images WITHOUT text (has_text_overlay = FALSE) */
.ticket-banner-card.no-text .ticket-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(31, 74, 143, 0.85), rgba(31, 74, 143, 0.6));
    color: white;
    padding: 1.5rem;
    transform: translateY(0);
    transition: background 0.3s ease, padding 0.3s ease;
}

.ticket-banner-link:hover .ticket-banner-card.no-text .ticket-banner-overlay {
    background: linear-gradient(to top, rgba(31, 74, 143, 0.95), rgba(31, 74, 143, 0.8));
    padding: 2rem 1.5rem;
}

/* For images WITH text (has_text_overlay = TRUE), no overlay - just hover effect */
.ticket-banner-card.has-text {
    /* No overlay element, image speaks for itself */
}

.ticket-banner-link:hover .ticket-banner-card.has-text {
    /* Could add subtle filter or glow effect if desired */
    filter: brightness(1.05);
}

.ticket-banner-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    color: white;
}

.ticket-banner-venue,
.ticket-banner-time,
.ticket-banner-price {
    margin: 0.25rem 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.ticket-banner-cta {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: #90C9EA;
    color: #1F4A8F;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.ticket-banner-link:hover .ticket-banner-cta {
    background: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ticket-banners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ticket-banner-card.no-text .ticket-banner-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(31, 74, 143, 0.95), rgba(31, 74, 143, 0.85));
        position: relative;
        padding: 1rem;
    }

    .ticket-banner-title {
        font-size: 1.25rem;
    }

    .ticket-banner-venue,
    .ticket-banner-time,
    .ticket-banner-price {
        font-size: 0.9rem;
    }
}
