/*!
 * Live @ Union Lane Website Styles
 * Copyright (c) 2025 James Burke
 * All rights reserved.
 * 
 * This file contains the main stylesheet for the Live @ Union Lane website.
 * Built for Brampton and Beyond Community Trust.
 */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ef4444;
    --primary-dark: #dc2626;
    --secondary-color: #374151;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --background-warm: #fef7f0;
    --jazz-gold: #d97706;
    --jazz-dark: #292524;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Dark mode variables */
[data-theme="dark"] {
    --primary-color: #f87171;
    --primary-dark: #ef4444;
    --secondary-color: #9ca3af;
    --accent-color: #fbbf24;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --background: #111827;
    --background-alt: #1f2937;
    --background-warm: #1f2937;
    --jazz-gold: #fbbf24;
    --jazz-dark: #374151;
    --border-color: #374151;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.3), 0 1px 2px -1px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.4);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .header {
    background: rgba(17, 24, 39, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-secondary.coming-soon {
    cursor: default;
    opacity: 0.7;
}

.btn-secondary.coming-soon:hover {
    background: transparent;
    color: var(--primary-color);
    transform: none;
    box-shadow: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(41, 37, 36, 0.8), rgba(41, 37, 36, 0.8)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.1) 0%, transparent 50%, rgba(239, 68, 68, 0.05) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* About Section */
.about {
    background: var(--background-warm);
}

.award-highlight {
    text-align: center;
    margin-bottom: 3rem;
}

.award-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--jazz-gold) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.award-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.award-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.mission-statement {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(215, 119, 6, 0.08);
    border-radius: 0.75rem;
    border-left: 4px solid var(--jazz-gold);
}

.mission-statement h3 {
    color: var(--jazz-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.mission-statement p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mission-statement p:last-child {
    margin-bottom: 0;
}

.recent-highlights {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.recent-highlights h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.recent-highlights p {
    color: var(--text-secondary);
    font-style: italic;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.feature {
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-secondary);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.event-card:hover .event-img {
    transform: scale(1.05);
}

.event-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-date {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.event-artist {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.event-details {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-details p {
    margin-bottom: 0.5rem;
}

/* Ensure consistent card heights */
.event-content {
    min-height: 300px;
}

.event-content .btn {
    margin-top: auto;
    align-self: center;
    width: 85%;
    text-align: center;
}

/* On the Road Events */
.event-card.on-the-road {
    border: 2px solid var(--jazz-gold);
    position: relative;
}

.event-card.on-the-road .event-image {
    position: relative;
}

.on-the-road-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--jazz-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg) translate(25%, -25%);
    transform-origin: center;
    box-shadow: var(--shadow);
    z-index: 10;
    white-space: nowrap;
}

/* For cards without images, position badge on top-right of card */
.event-card.on-the-road:not(:has(.event-image)) .on-the-road-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    transform: rotate(45deg);
}

/* Featured Events */
.event-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(245, 158, 11, 0.02));
    position: relative;
    overflow: hidden;
}

.event-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--jazz-gold));
    z-index: 1;
}

.event-card.featured .event-image {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
    z-index: 10;
    white-space: nowrap;
}

/* For cards without images, position featured badge on top-left of card */
.event-card.featured:not(:has(.event-image)) .featured-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    transform: rotate(-45deg);
}

/* Placeholder image styling */
.event-img.placeholder {
    opacity: 0.6;
    filter: grayscale(20%);
}

.venue-info {
    background: rgba(215, 119, 6, 0.1);
    border: 1px solid rgba(215, 119, 6, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.venue-name {
    font-weight: 600;
    color: var(--jazz-gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.venue-address {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.venue-note {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    font-style: italic;
}

.events-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--background-warm) 0%, var(--background-alt) 100%);
    border-radius: 0.75rem;
    border: 2px solid var(--primary-color);
}

.events-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.booking-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0 !important;
}

.booking-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.booking-note a:hover {
    text-decoration: underline;
}

/* Getting Here Section */
.getting-here {
    background: var(--background);
    padding: 2rem 0;
}

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

.getting-here-header .section-title {
    margin-bottom: 1rem;
}

.toggle-btn {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

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

.toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.getting-here-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.getting-here-content.expanded {
    max-height: 2000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
    padding-top: 2rem;
}

.venue-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.venue-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

.transport-option {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.transport-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.transport-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-option h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.transport-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.highlight-box {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.highlight-box .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-box span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.journey-options {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.journey-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background-alt);
    border-radius: 0.5rem;
}

.journey-option .icon {
    font-size: 1.1rem;
}

.venue-address {
    display: flex;
    justify-content: center;
}

.address-card {
    background: var(--background-warm);
    border: 2px solid var(--jazz-gold);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    box-shadow: var(--shadow);
}

.address-card h3 {
    color: var(--jazz-gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.address-card address {
    font-style: normal;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accessibility-note {
    border-top: 1px solid rgba(215, 119, 6, 0.2);
    padding-top: 1.5rem;
}

.accessibility-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--background-warm);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info p strong a {
    color: inherit !important;
    text-decoration: none !important;
}

.contact-info p strong a:hover {
    text-decoration: none !important;
    color: inherit !important;
}

.what3words {
    color: var(--jazz-gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0.5rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 100px;
    flex: 1;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

.social-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-submit-area {
    margin-top: auto;
    padding-top: 1rem;
}

/* Footer */
.footer {
    background: var(--jazz-dark);
    color: white;
    padding: 1rem 0 0.75rem;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

.charity-info {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.4;
    margin-bottom: 0 !important;
}

.design-credit {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 4rem;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease-in-out;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - 4rem);
        overflow-y: auto;
    }

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

    .nav-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .theme-toggle {
        display: flex;
        order: -1;
    }

    .hero-logo-img {
        max-width: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .social-links {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .social-link {
        width: 100px;
        max-width: 100px;
        min-width: 100px;
        justify-content: center;
        flex-shrink: 0;
        flex-grow: 0;
        align-self: center;
        display: inline-flex;
    }
    
    .social-icon {
        width: 12px;
        height: 12px;
    }

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

    .transport-option {
        padding: 1.5rem;
    }

    .address-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }

}

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

    .hero {
        padding: 6rem 0 3rem;
        background-attachment: scroll;
    }

    .hero-logo-img {
        max-width: 200px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .nav-logo {
        height: 35px;
    }

    .contact-form {
        padding: 1rem;
        margin: 0 -0.25rem;
    }

    .contact-grid {
        gap: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .hero {
        background-attachment: scroll;
    }
}

/* Cookie Consent Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--jazz-dark);
    color: white;
    z-index: 10000;
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-consent-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.btn-link {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    text-decoration: underline;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: white;
    background: transparent;
    transform: none;
    box-shadow: none;
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-content {
    background: white;
    border-radius: 0.75rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--text-primary);
}

.cookie-modal-body {
    padding: 1.5rem 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cookie-category h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.cookie-category p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: var(--primary-color);
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem 0.75rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .cookie-consent-actions {
        margin-left: 0;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .cookie-consent-actions .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .cookie-modal-content {
        margin: 0.75rem;
        max-height: 85vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .cookie-category-header {
        gap: 1rem;
    }
    
    .cookie-toggle {
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
}

/* Prevent auto-detection styling */
.no-detect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    color: inherit;
    text-decoration: none;
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 0.75rem 0.5rem;
    }
    
    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-consent-text p {
        font-size: 0.85rem;
    }
    
    .cookie-consent-actions .btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .cookie-modal-content {
        margin: 0.5rem;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .cookie-modal-header {
        padding-top: 1.5rem;
    }
    
    .cookie-category {
        margin-bottom: 1.5rem;
    }
    
    .cookie-category-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .cookie-category h3 {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cookie-toggle {
        margin-left: 0;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
    }
    
    .theme-toggle svg {
        width: 16px;
        height: 16px;
    }
}

/* Dark Mode Toggle */
.theme-toggle {
    background: none;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--background-alt);
    transform: scale(1.1);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: rotate(20deg);
}

/* Smooth transitions for theme changes */
*, *::before, *::after {
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Dark mode hero adjustments */
[data-theme="dark"] .hero {
    background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('../images/hero-background.jpg');
}

[data-theme="dark"] .hero::before {
    background: linear-gradient(45deg, rgba(248, 113, 113, 0.1) 0%, transparent 50%, rgba(248, 113, 113, 0.05) 100%);
}

/* Dark mode mobile menu */
[data-theme="dark"] .nav-menu {
    background-color: var(--background);
}

/* Dark mode navigation links */
[data-theme="dark"] .nav-link {
    color: var(--text-primary);
}

/* Dark mode cookie consent banner */
[data-theme="dark"] .cookie-consent-banner {
    background: var(--background-alt);
    border-top: 1px solid var(--border-color);
}

/* Dark mode cookie modal */
[data-theme="dark"] .cookie-modal-content {
    background: var(--background);
    color: var(--text-primary);
}

[data-theme="dark"] .cookie-modal-header {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .cookie-modal-footer {
    border-top-color: var(--border-color);
}

/* Dark mode about section features */
[data-theme="dark"] .feature {
    background: var(--background-alt);
    color: var(--text-primary);
}

[data-theme="dark"] .feature h3 {
    color: var(--primary-color);
}

[data-theme="dark"] .feature p {
    color: var(--text-secondary);
}

/* Dark mode events cards */
[data-theme="dark"] .event-card {
    background: var(--background-alt);
    color: var(--text-primary);
}

[data-theme="dark"] .event-title {
    color: var(--text-primary);
}

[data-theme="dark"] .event-artist {
    color: var(--primary-color);
}

[data-theme="dark"] .event-details {
    color: var(--text-secondary);
}

[data-theme="dark"] .venue-info {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
}

[data-theme="dark"] .venue-name {
    color: var(--jazz-gold);
}

[data-theme="dark"] .venue-address {
    color: var(--text-secondary);
}

/* Dark mode contact form */
[data-theme="dark"] .contact-form {
    background: var(--background-alt);
    color: var(--text-primary);
}

[data-theme="dark"] .contact-form h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .form-group label {
    color: var(--text-primary);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: var(--background);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--background);
}

/* Dark mode social links */
[data-theme="dark"] .social-link {
    background: var(--background);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

[data-theme="dark"] .social-link:hover {
    background: var(--primary-color);
    color: var(--background);
}