/*
 * Jazz Design System
 * A sophisticated black/white/#9b111e palette for Mike Rubini
 * ============================================================
 */

/* ==========================================================================
   CSS Variables - Design Tokens
   ========================================================================== */
:root {
    /* Colors */
    --jazz-accent: #9b111e;
    --jazz-accent-dark: #7a0d17;
    --jazz-accent-light: #c41426;
    --jazz-black: #0a0a0a;
    --jazz-dark: #1a1a1a;
    --jazz-gray-dark: #2a2a2a;
    --jazz-gray: #888888;
    --jazz-gray-light: #e5e5e5;
    --jazz-cream: #faf9f7;
    --jazz-white: #ffffff;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--jazz-dark);
    background-color: var(--jazz-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headlines - Elegant Serif */
h1, h2, h3, h4, h5, h6,
.title {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--jazz-black);
    letter-spacing: -0.02em;
}

.title.is-1 { font-size: 4rem; font-weight: 600; }
.title.is-2 { font-size: 3rem; font-weight: 600; }
.title.is-3 { font-size: 2.25rem; }
.title.is-4 { font-size: 1.75rem; }
.title.is-5 { font-size: 1.25rem; }
.title.is-6 { font-size: 1rem; }

.subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.02em;
    font-size: 0.875rem;
    color: var(--jazz-gray);
}

/* Hero specific typography */
.hero .title.is-2 {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero .subtitle.is-4 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    margin-top: 1.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero .title.is-2 {
        font-size: 2.5rem;
    }
    .hero .subtitle.is-4 {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
    }
}

/* Section titles */
.section-feature-description {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--jazz-dark);
}

/* ==========================================================================
   Color Overrides - Black/White/#9b111e Palette
   ========================================================================== */

/* Links */
a {
    color: var(--jazz-accent);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--jazz-accent-dark);
}

/* Accent color replacements */
.title-divider {
    display: block;
    background: var(--jazz-accent) !important;
    width: 60px;
    height: 3px;
    margin: 1rem auto !important;
}

/* Page header - unified styling */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header .title {
    margin-bottom: 0;
}

.page-header .page-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--jazz-gray);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tables */
.flex-card.is-pricing-card {
    border-color: var(--jazz-accent) !important;
}

/* Scroll button */
.scroll-button {
    background-color: var(--jazz-accent) !important;
}

/* ==========================================================================
   Buttons - Refined Jazz Style
   ========================================================================== */

.button.button-cta {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: all var(--transition-medium);
}

.button.button-cta.secondary-btn {
    background-color: var(--jazz-accent);
    border-color: var(--jazz-accent);
    color: var(--jazz-white);
}

.button.button-cta.secondary-btn:hover {
    background-color: var(--jazz-accent-dark);
    border-color: var(--jazz-accent-dark);
    transform: translateY(-2px);
}

.button.button-cta.btn-outlined {
    background-color: transparent;
    border: 2px solid var(--jazz-white);
    color: var(--jazz-white);
}

.button.button-cta.btn-outlined:hover {
    background-color: var(--jazz-white);
    color: var(--jazz-black);
}

/* Dark background button variants */
.jazz-dark-section .button.button-cta.btn-outlined {
    border-color: var(--jazz-white);
    color: var(--jazz-white);
}

.jazz-dark-section .button.button-cta.btn-outlined:hover {
    background-color: var(--jazz-white);
    color: var(--jazz-black);
}

/* ==========================================================================
   Hero Section - Atmospheric Jazz Club Vibe
   ========================================================================== */

.hero.is-wavy {
    background: var(--jazz-black);
    position: relative;
    overflow: visible;
}

/* Full-screen hero background image */
.hero.hero-with-bg {
    background: var(--jazz-black);
}

.hero.hero-with-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: 30% 35%;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    opacity: 0.8;
    z-index: 0;
}

.hero.is-wavy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.hero.is-wavy .hero-body {
    position: relative;
    z-index: 2;
}

.hero.is-wavy .title,
.hero.is-wavy .subtitle {
    color: var(--jazz-white);
}

.hero.is-wavy .is-hero-caption {
    padding: var(--space-lg) 0;
}

/* Hero buttons alignment */
.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero .is-hero-caption.has-text-right {
        text-align: center !important;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero .is-hero-caption,
    .hero .is-hero-caption * {
        background: transparent !important;
        -webkit-tap-highlight-color: transparent;
    }
    /* Keep buttons same as desktop on mobile */
    .hero .button.button-cta.secondary-btn {
        background-color: var(--jazz-accent) !important;
        border-color: var(--jazz-accent) !important;
        color: var(--jazz-white) !important;
    }
    .hero .button.button-cta.btn-outlined {
        background-color: transparent !important;
        border: 2px solid var(--jazz-white) !important;
        color: var(--jazz-white) !important;
    }
}

/* Hero image with spotlight effect */
.hero-image {
    position: relative;
    border-radius: 0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

/* Scroll indicator */
.scroll-button {
    background-color: var(--jazz-accent) !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
}

.scroll-button i {
    color: var(--jazz-white) !important;
    font-size: 1.25rem;
}

.scroll-button:hover {
    transform: translateY(5px);
    background-color: var(--jazz-accent-light) !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(155, 17, 30, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(155, 17, 30, 0);
    }
}

/* ==========================================================================
   Testimonials Section - Redesigned with Visual Weight
   ========================================================================== */

.jazz-testimonials {
    background: var(--jazz-white);
    position: relative;
    padding: var(--space-xl) 0;
    overflow: hidden;
    border-top: 4px solid var(--jazz-accent);
    border-bottom: 4px solid var(--jazz-accent);
}

.jazz-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.testimonial-card {
    background: transparent;
    padding: var(--space-lg);
    position: relative;
    text-align: center;
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--jazz-accent);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--jazz-black);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--jazz-gray);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: var(--jazz-accent);
}

.testimonial-link {
    display: inline-block;
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    color: var(--jazz-gray);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.testimonial-link:hover {
    color: var(--jazz-accent);
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--jazz-gray-light);
    border: 2px solid var(--jazz-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--jazz-accent);
    border-color: var(--jazz-accent);
}

/* Side image for testimonials */
.testimonials-side-image {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(50%);
}

@media (max-width: 1024px) {
    .testimonials-side-image {
        display: none;
    }
}

/* ==========================================================================
   Press Strip - "As Featured In"
   ========================================================================== */

.press-strip {
    background: var(--jazz-cream);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--jazz-gray-light);
    border-bottom: 1px solid var(--jazz-gray-light);
}

.press-strip-title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: var(--jazz-gray);
    text-align: center;
    margin-bottom: var(--space-md);
}

.press-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

.press-logo {
    max-height: 40px;
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-medium);
}

.press-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .press-logos {
        gap: var(--space-md);
    }
    .press-logo {
        max-height: 30px;
        max-width: 80px;
    }
}

/* ==========================================================================
   Audio Preview Section
   ========================================================================== */

.audio-preview-section {
    background: var(--jazz-black);
    padding: var(--space-xl) 0;
    position: relative;
}

.audio-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.audio-preview-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--jazz-white);
    text-align: center;
    margin-bottom: var(--space-xs);
}

.audio-preview-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: var(--jazz-gray);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.audio-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.audio-track {
    background: var(--jazz-gray-dark);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all var(--transition-medium);
    border-left: 3px solid transparent;
}

.audio-track:hover {
    background: rgba(155, 17, 30, 0.1);
    border-left-color: var(--jazz-accent);
}

.audio-track-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--jazz-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.audio-track-play:hover {
    transform: scale(1.1);
    background: var(--jazz-accent-light);
}

.audio-track-play i {
    color: var(--jazz-white);
    font-size: 1.25rem;
    margin-left: 3px;
}

.audio-track-info {
    flex: 1;
}

.audio-track-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--jazz-white);
    margin-bottom: 0.25rem;
}

.audio-track-artist {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--jazz-gray);
    letter-spacing: 0.02em;
}

.audio-track-waveform {
    height: 30px;
    background: linear-gradient(90deg,
        var(--jazz-accent) 0%,
        var(--jazz-gray-dark) 30%,
        var(--jazz-gray-dark) 100%
    );
    border-radius: 2px;
    opacity: 0.3;
}

/* ==========================================================================
   Bands Page - Visual Cards
   ========================================================================== */

.band-card {
    background: var(--jazz-white);
    border: 1px solid var(--jazz-gray-light);
    border-top: 4px solid var(--jazz-accent);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.band-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    transform: translateY(-5px);
}

/* Bands page background for contrast */
.bands-page-section {
    background: var(--jazz-cream);
}

.band-card > .columns {
    min-height: 100%;
}

.band-card > .columns > .column {
    display: flex;
}

.band-card-image {
    min-height: 300px;
    height: 100%;
    overflow: hidden;
    position: relative;
    flex: 1;
    width: 100%;
}

.band-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    position: absolute;
    top: 0;
    left: 0;
}

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

.band-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.band-card-content {
    padding: var(--space-md);
}

.band-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--jazz-black);
    margin-bottom: var(--space-xs);
}

.band-card-project {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--jazz-accent);
    margin-bottom: var(--space-sm);
}

.band-card-personnel {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--jazz-gray);
    margin-bottom: var(--space-sm);
}

.band-card-description {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--jazz-dark);
}

/* ==========================================================================
   Mobile Navigation - Full Screen Overlay
   ========================================================================== */

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--jazz-black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.mobile-nav-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--jazz-gray);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 1;
}

.mobile-nav-close:hover {
    border-color: var(--jazz-accent);
}

.mobile-nav-close::before,
.mobile-nav-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--jazz-white);
}

.mobile-nav-close::before {
    transform: rotate(45deg);
}

.mobile-nav-close::after {
    transform: rotate(-45deg);
}

.mobile-nav-logo {
    margin-bottom: var(--space-lg);
    z-index: 1;
}

.mobile-nav-logo img {
    max-width: 150px;
    filter: brightness(0) invert(1);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    z-index: 1;
}

.mobile-nav-links li {
    margin-bottom: var(--space-sm);
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--jazz-white);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: var(--jazz-accent);
    transform: translateX(10px);
}

.mobile-nav-links a.is-active {
    color: var(--jazz-accent);
}

.mobile-nav-social {
    position: absolute;
    bottom: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    z-index: 1;
}

.mobile-nav-social a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--jazz-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jazz-white);
    transition: all var(--transition-fast);
}

.mobile-nav-social a:hover {
    background: var(--jazz-accent);
    border-color: var(--jazz-accent);
}

/* ==========================================================================
   Footer - Enhanced with Newsletter
   ========================================================================== */

.jazz-footer {
    background: var(--jazz-black);
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
}

.jazz-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.jazz-footer .container {
    position: relative;
    z-index: 1;
}

.footer-newsletter {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--jazz-gray-dark);
}

.footer-newsletter-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--jazz-white);
    margin-bottom: var(--space-xs);
}

.footer-newsletter-subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--jazz-gray);
    margin-bottom: var(--space-md);
}

.footer-newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
}

.footer-newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    border: 1px solid var(--jazz-gray-dark);
    background: var(--jazz-dark);
    color: var(--jazz-white);
    outline: none;
    transition: border-color var(--transition-fast);
}

.footer-newsletter-input::placeholder {
    color: var(--jazz-gray);
}

.footer-newsletter-input:focus {
    border-color: var(--jazz-accent);
}

.footer-newsletter-btn {
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: var(--jazz-accent);
    color: var(--jazz-white);
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.footer-newsletter-btn:hover {
    background: var(--jazz-accent-light);
}

@media (max-width: 768px) {
    .footer-newsletter-form {
        flex-direction: column;
    }
    .footer-newsletter-input,
    .footer-newsletter-btn {
        width: 100%;
    }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--jazz-gray);
}

.footer-copyright i {
    color: var(--jazz-accent);
}

.footer-links {
    display: flex;
    gap: var(--space-md);
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--jazz-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--jazz-white);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--jazz-gray-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--jazz-gray);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--jazz-accent);
    border-color: var(--jazz-accent);
    color: var(--jazz-white);
}

/* ==========================================================================
   Photo Gallery with Lightbox
   ========================================================================== */

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-sm);
    padding: var(--space-md) 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition-medium);
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.3);
}

.gallery-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--jazz-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.gallery-item:hover .gallery-item-icon {
    opacity: 1;
}

.gallery-item-icon i {
    color: var(--jazz-white);
    font-size: 1.25rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--jazz-white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    border-color: var(--jazz-accent);
    background: var(--jazz-accent);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--jazz-white);
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

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

/* ==========================================================================
   News Section Refinements
   ========================================================================== */

.main-post .post-content h3,
.side-post .post-content h3 {
    font-family: var(--font-display);
}

.main-post .post-content h3 a,
.side-post .post-content h3 a {
    color: var(--jazz-black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.main-post .post-content h3 a:hover,
.side-post .post-content h3 a:hover {
    color: var(--jazz-accent);
}

/* ==========================================================================
   Sections Spacing
   ========================================================================== */

.section.is-medium {
    padding: var(--space-xl) var(--space-md);
}

.section.is-small {
    padding: var(--space-lg) var(--space-md);
}

/* ==========================================================================
   Misc Overrides
   ========================================================================== */

/* Navbar styling */
.navbar.navbar-wrapper {
    border-bottom: 1px solid var(--jazz-gray-light);
}

/* Navbar active state */
.navbar-brand a.navbar-item,
.navbar-brand a.navbar-item:hover {
    border-bottom: none !important;
    margin-bottom: 0;
}

a.navbar-item.is-active {
    color: var(--jazz-accent) !important;
    border-bottom: 2px solid var(--jazz-accent) !important;
    margin-bottom: -1px;
}

a.navbar-item:hover:not(.navbar-brand a) {
    color: var(--jazz-accent) !important;
    border-bottom: 2px solid var(--jazz-accent) !important;
    margin-bottom: -1px;
}

/* Card styling */
.flex-card {
    border-radius: 0;
}

/* Hide old testimonial carousel styling */
.css-carousel .fa-quote-left {
    color: var(--jazz-accent);
    opacity: 0.3;
}

.css-carousel q {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--jazz-white);
}

.css-carousel .text {
    font-family: var(--font-body);
    color: var(--jazz-gray);
}

.css-carousel .author {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--jazz-accent);
}

.carousel-dots label {
    background: var(--jazz-gray-dark);
    border: 2px solid var(--jazz-gray);
}

/* Override old testimonial section background */
.section.is-medium[style*="background-color: #363636"] {
    background-color: var(--jazz-dark) !important;
}

/* Research publication cards */
.publication-card {
    border-left: 4px solid var(--jazz-accent);
    padding-left: var(--space-md);
    margin-bottom: var(--space-md);
}

/* Embed container refinements */
.embed-container {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Table refinements */
.table thead th {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    color: var(--jazz-gray);
}

.table tbody td {
    font-family: var(--font-body);
}

/* Icon styling */
.icon-subtitle i {
    color: var(--jazz-accent);
}

/* Next show image */
.featured-svg {
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Booking Page
   ========================================================================== */

.booking-image {
    display: none;
}

.booking-content {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .booking-image {
        display: block;
        position: relative;
        overflow: hidden;
        min-height: 300px;
        margin-bottom: var(--space-lg);
    }

    .booking-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
    }
}

.booking-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--jazz-gray);
    margin: var(--space-md) 0 var(--space-lg);
}

.booking-cards {
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .booking-cards {
        flex-direction: column;
    }
}

.booking-card {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--jazz-white);
    border: 1px solid var(--jazz-gray-light);
    border-top: 4px solid var(--jazz-accent);
    transition: all var(--transition-medium);
}

.booking-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.booking-card-icon {
    width: 60px;
    height: 60px;
    background: var(--jazz-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: var(--space-sm);
}

.booking-card-icon i {
    color: var(--jazz-white);
    font-size: 1.5rem;
}

.booking-card-content {
    flex: 1;
}

.booking-card-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--jazz-gray);
    margin-bottom: var(--space-sm);
}

.booking-card-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--jazz-black);
    margin-bottom: 0.25rem;
}

.booking-card-company {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--jazz-gray);
    margin-bottom: var(--space-sm);
}

.booking-card-email {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--jazz-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.booking-card-email:hover {
    color: var(--jazz-accent-dark);
    text-decoration: underline;
}

/* ==========================================================================
   Discography Page
   ========================================================================== */

.discography-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

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

@media (max-width: 768px) {
    .discography-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .discography-grid {
        grid-template-columns: 1fr;
    }
}

.album-card {
    background: var(--jazz-white);
    transition: all var(--transition-medium);
}

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

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

.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--jazz-gray-light);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.album-info {
    padding: var(--space-sm) 0;
}

.album-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--jazz-black);
    margin-bottom: 0.25rem;
}

.album-artist {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--jazz-dark);
    margin-bottom: 0.25rem;
}

.album-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--jazz-gray);
}

.album-link {
    display: inline-flex;
    align-items: center;
    color: #1DB954;
    text-decoration: none;
    margin-left: 0.35rem;
    transition: all var(--transition-fast);
}

.album-link:hover {
    color: #1ed760;
}

.album-link i {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section.is-medium {
        padding: var(--space-lg) var(--space-sm);
    }

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

    .title.is-3 {
        font-size: 1.5rem;
    }
}
