/* ═══════════════════════════════════════════════════════════════════
   FOXTROT ZULU - Official Band Website Theme
   Based on original EPK styling with gold accents
   ═══════════════════════════════════════════════════════════════════ */

/* CSS Variables - Matching Original EPK */
:root {
    /* Colors - Black backgrounds with gold accents */
    --color-bg-deep: #0a0a0a;
    --color-bg-primary: #0a0a0a;
    --color-bg-elevated: #1a1a1a;
    --color-bg-card: #111111;

    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #666666;

    /* Primary - Gold (from original EPK) */
    --color-primary-50: #fff9e6;
    --color-primary-100: #ffedb3;
    --color-primary-200: #ffe080;
    --color-primary-300: #ffd24d;
    --color-primary-400: #C9A227;
    --color-primary-500: #C9A227;
    --color-primary-600: #a8871f;
    --color-primary-700: #876c19;
    --color-primary-800: #665113;
    --color-primary-900: #45360d;

    /* Secondary - Warm gold tones */
    --color-secondary-400: #d4af37;
    --color-secondary-500: #C9A227;
    --color-secondary-600: #a8871f;

    /* Gold accent - the main accent color */
    --color-gold: #C9A227;

    --color-border: rgba(201, 162, 39, 0.2);
    --color-border-accent: rgba(201, 162, 39, 0.4);

    /* Typography - Serif display (light weight), sans body */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    /* Font weights matching EPK */
    --font-weight-display: 400;
    --font-weight-body: 300;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container-width: 1280px;
    --container-padding: clamp(1rem, 5vw, 2rem);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-deep);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--color-gold);
    color: var(--color-bg-deep);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-elevated);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */

.gradient-text {
    color: var(--color-gold);
    background: none;
    -webkit-text-fill-color: var(--color-gold);
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.backdrop-blur-custom {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.container-custom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--space-3xl) 0;
}

/* ═══════════════════════════════════════════════════════════════════
   CARD COMPONENT
   ═══════════════════════════════════════════════════════════════════ */

.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.card-hover {
    transition: all var(--transition-base);
}

.card-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    border-color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--container-padding);
    transition: all var(--transition-base);
}

.main-nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo-icon {
    width: 2rem;
    height: 2rem;
    background: var(--color-gold);
    color: var(--color-bg-deep);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold);
}

.nav-logo-subtitle {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.nav-toggle:hover {
    color: var(--color-text-primary);
    background: var(--color-bg-elevated);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition-fast);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
    background: rgba(201, 162, 39, 0.1);
}

.nav-links a.active {
    background: rgba(201, 162, 39, 0.15);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-3xl) var(--container-padding);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.7) 100%),
        url('../assets/hero/hero.jpg') center bottom / cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeIn 0.5s ease-in-out;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 9999px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    animation: slideUp 0.5s ease-out;
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.02em;
    animation: slideUp 0.5s ease-out;
}

.title-foxtrot {
    font-size: clamp(3.5rem, 12vw, 8rem);
    color: var(--color-text-primary);
    animation-delay: 0.1s;
}

.title-zulu {
    font-size: clamp(3.5rem, 12vw, 8rem);
    color: var(--color-gold);
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.5s ease-out;
    animation-delay: 0.3s;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.5s ease-out;
    animation-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-bg-deep), 0 0 0 4px var(--color-gold);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-bg-deep);
    font-weight: 500;
}

.btn-primary:hover {
    background: #d4af37;
}

.btn-secondary {
    background: var(--color-bg-elevated);
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg-deep);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════════ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: transparent;
    border-radius: 0;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-lg);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin-top: var(--space-md);
    margin-left: auto;
    margin-right: auto;
}

.section-header.centered .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-title .gradient-text {
    display: inline;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURED / RELEASE SECTION
   ═══════════════════════════════════════════════════════════════════ */

.featured {
    padding: var(--space-3xl) 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-xl);
    border: 1px solid var(--color-border-accent);
    background: var(--color-bg-elevated);
    border-radius: var(--radius-lg);
}

.featured-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-2xl);
    color: var(--color-text-muted);
}

.featured-loading a {
    color: var(--color-gold);
}

.featured-image {
    position: relative;
    width: 100%;
    max-width: 450px;
    min-width: 280px;
    justify-self: center;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.image-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.featured-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    justify-content: center;
}

.featured-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

.featured-desc {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.featured-meta {
    display: flex;
    gap: var(--space-xl);
    margin: var(--space-md) 0;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.meta-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.meta-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* Featured story content with scroll */
.featured-story-content {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-height: 280px;
    overflow-y: auto;
    padding-right: var(--space-sm);
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-bg-elevated);
}

.featured-story-content::-webkit-scrollbar {
    width: 6px;
}

.featured-story-content::-webkit-scrollbar-track {
    background: var(--color-bg-elevated);
    border-radius: 3px;
}

.featured-story-content::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

.featured-story-content p {
    margin-bottom: var(--space-md);
}

.featured-story-content p:last-child {
    margin-bottom: 0;
}

.featured-story-content strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.featured-story-content em {
    color: var(--color-gold);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   SHOWS / TOUR SECTION
   ═══════════════════════════════════════════════════════════════════ */

.shows-preview {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-deep);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.shows-loading,
.no-shows-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    color: var(--color-text-muted);
}

.no-shows-message p:first-child {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.show-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.show-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    background: var(--color-gold);
    border-radius: var(--radius-lg);
    min-width: 70px;
}

.date-day {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-bg-deep);
}

.date-month {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--color-bg-deep);
    text-transform: uppercase;
}

.show-info {
    flex: 1;
}

.show-venue {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.show-location {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.show-support {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.show-action {
    flex-shrink: 0;
}

.show-status {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.show-status.sold-out {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.show-status.on-sale {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.shows-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ═══════════════════════════════════════════════════════════════════
   STATEMENT / QUOTE SECTION
   ═══════════════════════════════════════════════════════════════════ */

.statement {
    position: relative;
    padding: var(--space-3xl) var(--container-padding);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at center, rgba(201, 162, 39, 0.03) 0%, transparent 70%);
}

.statement-quote {
    max-width: 800px;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    color: var(--color-gold);
    opacity: 0.2;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.statement-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.quote-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.quote-line {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 9999px;
}

.quote-footer cite {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */

.main-footer {
    background: var(--color-bg-deep);
    border-top: 1px solid var(--color-border);
    padding: var(--space-3xl) var(--container-padding) var(--space-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--space-2xl);
    max-width: var(--container-width);
    margin: 0 auto var(--space-2xl);
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-gold);
    color: var(--color-bg-deep);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--color-gold);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg-deep);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
    max-width: var(--container-width);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Loading shimmer */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, var(--color-bg-elevated) 25%, #4b5563 50%, var(--color-bg-elevated) 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* ═══════════════════════════════════════════════════════════════════
   PARALLAX EFFECTS
   ═══════════════════════════════════════════════════════════════════ */

/* Parallax container setup */
.parallax-container {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Parallax background layers */
.hero-bg,
.page-header-bg {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Parallax scroll elements - fade and move on scroll */
[data-parallax] {
    will-change: transform, opacity;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid items */
.scroll-reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.scroll-reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.5s; }

.scroll-reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax floating elements */
.parallax-float {
    animation: parallaxFloat 6s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Subtle scale on scroll */
.parallax-scale {
    transition: transform 0.3s ease-out;
}

/* Hero parallax depth effect */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    will-change: transform;
    pointer-events: none;
    z-index: -2;
}

/* Section divider with parallax */
.section-divider {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        var(--color-bg-deep) 0%,
        transparent 30%,
        transparent 70%,
        var(--color-bg-deep) 100%);
    pointer-events: none;
}

/* Parallax text shadow depth */
.parallax-text {
    text-shadow:
        0 1px 0 rgba(0,0,0,0.1),
        0 2px 0 rgba(0,0,0,0.1),
        0 3px 0 rgba(0,0,0,0.1),
        0 4px 0 rgba(0,0,0,0.1),
        0 5px 10px rgba(0,0,0,0.2);
}

/* Disable parallax on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal-stagger > *,
    [data-parallax],
    .parallax-float {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .featured-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        transition: right var(--transition-base);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: var(--space-md) var(--space-xl);
    }

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

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

    .featured-meta {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    /* Disable parallax on mobile - prevents jitter with touch scrolling */
    .hero-bg,
    .page-header-bg,
    .epk-hero-bg,
    [data-parallax] {
        transform: none !important;
        transition: none;
        will-change: auto;
    }
}

@media (max-width: 480px) {
    .show-card {
        flex-direction: column;
        text-align: center;
    }

    .show-info {
        text-align: center;
    }
}

/* Wide viewport - keep band visible during parallax scroll */
@media (min-width: 1400px) {
    .hero-bg,
    .page-header-bg {
        background-position: center bottom;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════════════════════════ */

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

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

/* ═══════════════════════════════════════════════════════════════════
   VIDEO RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ═══════════════════════════════════════════════════════════════════
   STORY MODAL
   ═══════════════════════════════════════════════════════════════════ */

.story-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 1000;
    overflow-y: auto;
    padding: var(--space-xl);
    align-items: flex-start;
    justify-content: center;
}

.story-modal.active {
    display: flex;
}

.story-modal-content {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    max-width: 800px;
    width: 100%;
    margin: var(--space-2xl) auto;
    position: relative;
    overflow: hidden;
}

.story-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-modal-close:hover {
    background: var(--color-gold);
    color: var(--color-bg-deep);
    border-color: var(--color-gold);
}

.story-modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.story-modal-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    padding: var(--space-xl) var(--space-xl) var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.story-modal-body {
    padding: var(--space-xl);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.story-modal-body p {
    margin-bottom: var(--space-md);
}

.story-modal-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .story-modal {
        padding: var(--space-md);
    }

    .story-modal-content {
        margin: var(--space-md) auto;
    }

    .story-modal-title {
        padding: var(--space-lg);
    }

    .story-modal-body {
        padding: var(--space-lg);
    }
}

/* ═══════════════════════════════════════════════════════════════════
   Quill Rich Text Editor - Frontend Styles
   These classes render content created in the CMS editor
   ═══════════════════════════════════════════════════════════════════ */

/* Font sizes from Quill editor
   NOTE: The CMS now uses inline styles (style="font-size: 16px") for numeric sizes.
   These class rules are kept for legacy content using small/large/huge keywords. */
.ql-size-small {
    font-size: 0.75em;
}

.ql-size-large {
    font-size: 1.5em;
}

.ql-size-huge {
    font-size: 2em;
}

/* Headers from Quill editor */
.ql-editor h1,
.story-text h1,
#bioText h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: var(--font-weight-display);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.ql-editor h2,
.story-text h2,
#bioText h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: var(--font-weight-display);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.ql-editor h3,
.story-text h3,
#bioText h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: var(--font-weight-display);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

/* Alignment from Quill editor */
.ql-align-center {
    text-align: center;
}

.ql-align-right {
    text-align: right;
}

.ql-align-justify {
    text-align: justify;
}

/* CMS Content Color Classes - Use these for consistent styling */
.text-gold,
.ql-color-gold {
    color: var(--color-gold) !important;
}

.text-muted,
.ql-color-muted {
    color: var(--color-text-muted) !important;
}

.text-secondary,
.ql-color-secondary {
    color: var(--color-text-secondary) !important;
}

/* Ensure italic text in story content shows as gold (site design choice) */
.story-text em,
#bioText em {
    color: var(--color-gold);
    font-style: italic;
}
