/* ============================================
   THRIFTED TEASE - Clean & Refactored CSS
   ============================================

   STRUCTURE:
   1. CSS Variables (easy color changes)
   2. Global Reset & Base Styles
   3. Typography
   4. Navbar
   5. Hero Section
   6. Buttons
   7. Sections (Listen, Media, Contact)
   8. Footer
   9. Animations
   10. Responsive Design

   To change colors: Update :root variables only
   ============================================ */

/* ========== 1. CSS VARIABLES ========== */
:root {
    /* Primary Colors */
    --primary-color: #0a0e27;      /* Dark navy background */
    --secondary-color: #d4a574;    /* Gold accent */
    --accent-color: #e8d4c0;       /* Cream/light accent */

    /* Text Colors */
    --text-color: #e0e0e0;         /* Light gray for readability */
    --text-dark: #2a2a2a;          /* Dark text on light backgrounds */

    /* Background Colors */
    --dark-bg: #1a1f3a;            /* Slightly lighter than primary */
    --light-bg: #f5f5f5;           /* Light background */

    /* Accent Colors */
    --highlight: #ff6b6b;          /* Red/pink for urgent CTAs */
    --success: #51cf66;            /* Green for success states */

    /* Transitions & Animations */
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== 2. GLOBAL RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ========== 3. TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 1px;
    color: white;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

/* ========== 4. NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-weight: 900;
    margin: 0;
}

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

.nav-menu a {
    color: var(--text-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.nav-menu a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Hamburger Menu - Hidden by default, shown on mobile */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ========== 5. HERO SECTION ========== */
.hero {
    position: relative;
    min-height: calc(100svh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(10, 14, 39, 0.25) 0%,
            rgba(10, 14, 39, 0.44) 52%,
            rgba(10, 14, 39, 0.74) 100%
        ),
        url("../images/optimized/homepage/hero-home.jpg") center 32% / cover no-repeat;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7) saturate(0.95);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero.hero--video-ready .hero-video {
    opacity: 1;
}

.hero.hero--video-failed .hero-video {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            180deg,
            rgba(10, 14, 39, 0.45) 0%,
            rgba(10, 14, 39, 0.72) 55%,
            rgba(10, 14, 39, 0.88) 100%
        );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    animation: fadeInUp 1.1s ease-out;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 0.75rem;
    letter-spacing: 4px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.55);
    font-weight: 900;
    line-height: 1;
}

.hero-tagline {
    font-size: 1.55rem;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.hero-ctas .btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* ========== 6. BUTTONS (Reusable throughout site) ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border: 2px solid transparent;
    border-radius: 40px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    backdrop-filter: blur(4px);
}

/* icon styling inside buttons */
.btn i {
    font-size: 0.9rem;
    transition: var(--transition);
}

/* Primary = main CTA */
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-4px);
}

/* Secondary = clean outline button */
.btn-secondary {
    background-color: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.65);
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-4px);
}

/* Accent = stronger secondary CTA */
.btn-accent {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-accent:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-4px);
}

/* ========== 7. SECTIONS ========== */
section {
    padding: 5rem 0;
    scroll-margin-top: 90px;
}

.listen {
    background-color: var(--dark-bg);
}

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

.contact {
    background-color: var(--dark-bg);
}

/* ========== LISTEN SECTION ========== */

.streaming-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stream-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background-color: rgba(212, 165, 116, 0.1);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);

    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

/* lift animation */

.stream-link:hover {
    transform: translateY(-6px) scale(1.03);
}

/* ===== PLATFORM COLORS ===== */

.stream-link.spotify:hover {
    background-color: #1DB954;
    border-color: #1DB954;
    color: white;
}

.stream-link.apple:hover {
    background-color: #FA243C;
    border-color: #FA243C;
    color: white;
}

.stream-link.youtube:hover {
    background-color: #FF0000;
    border-color: #FF0000;
    color: white;
}

.stream-link.soundcloud:hover {
    background-color: #FF5500;
    border-color: #FF5500;
    color: white;
}

.stream-link i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* icon turns white on hover */

.stream-link:hover i {
    color: white;
}

.stream-link span {
    font-weight: 600;
}


/* ========== MEDIA SECTION ========== */

.media-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 70px;
    padding: 7rem 0 5rem;
}

.media-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 14, 39, 0.25) 0%, rgba(10, 14, 39, 0.05) 100%),
        url("../images/optimized/media/hero-media.jpg") center 28% / cover no-repeat;
    filter: saturate(0.9) brightness(0.58);
    transform: scale(1.03);
    z-index: -2;
}

.media-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 39, 0.18) 0%, rgba(10, 14, 39, 0.64) 58%, rgba(10, 14, 39, 0.94) 100%);
    z-index: -1;
}

.media-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.media-kicker {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
}

.media-archive {
    background:
        radial-gradient(circle at top, rgba(212, 165, 116, 0.08), transparent 28%),
        linear-gradient(180deg, var(--primary-color) 0%, #091022 100%);
}

.media-page-intro {
    max-width: 720px;
    margin-bottom: 3.5rem;
}

.media-event-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.media-event {
    padding: 2rem;
    border: 1px solid rgba(212, 165, 116, 0.22);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.82) 0%, rgba(10, 14, 39, 0.92) 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.media-event-header {
    margin-bottom: 1.75rem;
}

.media-event-title {
    margin-bottom: 0.4rem;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.media-event-meta {
    color: var(--accent-color);
    letter-spacing: 0.4px;
    font-size: 0.98rem;
}

.media-event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    grid-auto-flow: dense;
}

.media-card {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(212, 165, 116, 0.16);
    background: rgba(255, 255, 255, 0.03);
}

.media-card--feature {
    grid-column: span 2;
}

.media-thumb-link {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #12182e;
}

.media-thumb-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.05) 0%, rgba(10, 14, 39, 0.45) 100%);
    transition: var(--transition);
}

.media-thumb-link:hover::after,
.media-thumb-link:focus-visible::after {
    background: linear-gradient(180deg, rgba(212, 165, 116, 0.04) 0%, rgba(10, 14, 39, 0.25) 100%);
}

.media-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.media-thumb-link:hover img,
.media-thumb-link:focus-visible img {
    transform: scale(1.04);
}

.media-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(10, 14, 39, 0.8);
    color: var(--accent-color);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.media-video-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    background-color: #12182e;
}

.media-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.media-card-caption {
    padding: 1rem 1rem 1.15rem;
}

.media-card-caption h4 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
    color: white;
}

.media-card-caption p {
    color: rgba(224, 224, 224, 0.82);
    font-size: 0.95rem;
}

/* ========== SHOWS PAGE ========== */

.shows-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 70px;
    padding: 7rem 0 5rem;
}

.shows-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 14, 39, 0.25) 0%, rgba(10, 14, 39, 0.05) 100%),
        linear-gradient(145deg, rgba(21, 28, 60, 0.24) 0%, rgba(13, 18, 44, 0.48) 46%, rgba(6, 9, 22, 0.72) 100%);
    z-index: -2;
}

.shows-hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.shows-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 36%;
    display: block;
    filter: saturate(0.9) brightness(0.58);
    transform: scale(1.03);
}

.shows-hero::after {
    content: "";
    position: absolute;
    inset: auto auto 8% 10%;
    width: min(34vw, 460px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.18) 0%, rgba(212, 165, 116, 0.03) 60%, transparent 72%);
    filter: blur(6px);
    z-index: -1;
}

.shows-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.18) 0%, rgba(10, 14, 39, 0.64) 58%, rgba(10, 14, 39, 0.94) 100%);
    z-index: -1;
}

.shows-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.shows-kicker {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
}

.shows-listing {
    background:
        radial-gradient(circle at top right, rgba(212, 165, 116, 0.08), transparent 28%),
        linear-gradient(180deg, var(--primary-color) 0%, #091022 100%);
}

.shows-page-intro {
    max-width: 720px;
    margin-bottom: 3.25rem;
}

.show-list {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.show-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(212, 165, 116, 0.22);
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.82) 0%, rgba(10, 14, 39, 0.94) 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.show-card--featured {
    position: relative;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    min-height: 360px;
    border-color: rgba(212, 165, 116, 0.32);
    background:
        radial-gradient(circle at top left, rgba(212, 165, 116, 0.1), transparent 34%),
        linear-gradient(100deg, rgba(8, 11, 28, 0.6) 0%, rgba(8, 11, 28, 0.32) 48%, rgba(8, 11, 28, 0.55) 100%),
        url("../images/optimized/shows/spring-cleaning-handlebar-poster.jpg") center center / contain no-repeat,
        linear-gradient(180deg, rgba(18, 23, 46, 0.98) 0%, rgba(10, 14, 39, 0.98) 100%);
}

.show-card--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg, rgba(10, 14, 39, 0.08) 0%, rgba(10, 14, 39, 0.12) 42%, rgba(10, 14, 39, 0.3) 100%);
    z-index: 0;
}

.show-card--featured > * {
    position: relative;
    z-index: 1;
}

.show-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 165, 116, 0.36);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.show-date {
    min-height: 120px;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.16);
    background:
        linear-gradient(180deg, rgba(212, 165, 116, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%),
        rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    text-align: center;
}

.show-date-month {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.show-date-day {
    color: white;
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
}

.show-card--featured .show-date {
    align-self: start;
    min-height: 0;
    width: fit-content;
    min-width: 88px;
    padding: 0.75rem 0.7rem;
    background:
        linear-gradient(180deg, rgba(212, 165, 116, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%),
        rgba(10, 14, 39, 0.42);
    border-color: rgba(212, 165, 116, 0.24);
    backdrop-filter: blur(6px);
}

.show-details {
    min-width: 0;
}

.show-meta {
    margin-bottom: 0.45rem;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.show-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.7rem;
    text-transform: uppercase;
}

.show-details p:last-of-type {
    color: rgba(224, 224, 224, 0.82);
    max-width: 60ch;
}

.show-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
}

.show-card--featured .show-details,
.show-card--featured .show-actions {
    align-self: end;
}

.show-card--featured .show-details {
    max-width: 32rem;
}

.show-card--featured .show-details h3 {
    font-size: 2rem;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.show-card--featured .show-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: fit-content;
    margin-bottom: 0.8rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(10, 14, 39, 0.38);
    color: rgba(255, 247, 234, 0.94);
    border: 1px solid rgba(212, 165, 116, 0.18);
    backdrop-filter: blur(6px);
}

.show-card--featured .show-actions {
    padding: 0.75rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.5) 0%, rgba(10, 14, 39, 0.34) 100%);
    border: 1px solid rgba(212, 165, 116, 0.14);
    backdrop-filter: blur(8px);
}

.show-actions .btn {
    min-width: 210px;
}

.shows-empty-state {
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(212, 165, 116, 0.22);
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.82) 0%, rgba(10, 14, 39, 0.94) 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.shows-empty-state h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.shows-empty-state p {
    max-width: 640px;
    margin: 0 auto 1.4rem;
    color: rgba(224, 224, 224, 0.82);
}

/* ========== MERCH PAGE ========== */

.merch-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 70px;
    padding: 7rem 0 5rem;
}

.merch-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 14, 39, 0.25) 0%, rgba(10, 14, 39, 0.05) 100%),
        linear-gradient(135deg, rgba(27, 32, 63, 0.24) 0%, rgba(11, 16, 41, 0.46) 45%, rgba(7, 10, 26, 0.72) 100%),
        url("../images/optimized/pages/hero-merch.jpg") center 28% / cover no-repeat;
    filter: saturate(0.9) brightness(0.58);
    transform: scale(1.03);
    z-index: -2;
}

.merch-hero::after {
    content: "";
    position: absolute;
    inset: 10% 8% auto auto;
    width: min(32vw, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.16) 0%, rgba(212, 165, 116, 0.02) 62%, transparent 72%);
    filter: blur(4px);
    z-index: -1;
}

.merch-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 14, 39, 0.18) 0%, rgba(10, 14, 39, 0.64) 58%, rgba(10, 14, 39, 0.94) 100%);
    z-index: -1;
}

.merch-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.merch-kicker {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
}

.merch-showcase {
    background:
        radial-gradient(circle at top left, rgba(212, 165, 116, 0.08), transparent 26%),
        linear-gradient(180deg, var(--primary-color) 0%, #091022 100%);
}

.merch-page-intro {
    max-width: 720px;
    margin-bottom: 3.25rem;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.merch-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(212, 165, 116, 0.22);
    background: linear-gradient(180deg, rgba(26, 31, 58, 0.82) 0%, rgba(10, 14, 39, 0.94) 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.merch-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 165, 116, 0.38);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.merch-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.merch-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.06) 0%, rgba(10, 14, 39, 0.28) 100%);
}

.merch-card-media--black-design {
    background:
        radial-gradient(circle at top, rgba(212, 165, 116, 0.2), transparent 42%),
        linear-gradient(160deg, #22263f 0%, #0c1024 100%);
}

.merch-card-media--white-design,
.merch-card-media--white-logo {
    background:
        radial-gradient(circle at top, rgba(212, 165, 116, 0.22), transparent 42%),
        linear-gradient(160deg, #f5efe6 0%, #ded6ca 100%);
}

.merch-shirt-mockup {
    position: relative;
    z-index: 1;
    width: min(78%, 260px);
    aspect-ratio: 0.82;
    border-radius: 28px 28px 18px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.merch-shirt-mockup::before,
.merch-shirt-mockup::after {
    content: "";
    position: absolute;
    top: 12%;
    width: 26%;
    height: 28%;
    border-radius: 18px;
    background: inherit;
}

.merch-shirt-mockup::before {
    left: -14%;
    transform: rotate(28deg);
}

.merch-shirt-mockup::after {
    right: -14%;
    transform: rotate(-28deg);
}

.merch-card-media--black-design .merch-shirt-mockup {
    background: linear-gradient(180deg, #111420 0%, #06080f 100%);
    color: #f0e4d6;
}

.merch-card-media--white-design .merch-shirt-mockup,
.merch-card-media--white-logo .merch-shirt-mockup {
    background: linear-gradient(180deg, #ffffff 0%, #ece7df 100%);
    color: #0a0e27;
}

.merch-shirt-mockup--logo {
    border-radius: 24px 24px 18px 18px;
}

.merch-shirt-print {
    position: relative;
    z-index: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

.merch-shirt-print--large {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
}

.merch-shirt-print--outlined {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    -webkit-text-stroke: 2px #0a0e27;
    color: transparent;
}

.merch-shirt-print--small {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    letter-spacing: 2px;
    line-height: 1.4;
}

.merch-shirt-note {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    z-index: 1;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(10, 14, 39, 0.88);
    color: var(--accent-color);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.merch-card-body {
    padding: 1.3rem 1.3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.merch-card-meta {
    color: var(--accent-color);
    font-size: 0.84rem;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-weight: 700;
}

.merch-card-body h3 {
    font-size: 1.35rem;
    text-transform: uppercase;
    color: white;
}

.merch-card-body p:last-of-type {
    color: rgba(224, 224, 224, 0.84);
}

.merch-card-actions {
    margin-top: auto;
    padding-top: 0.2rem;
}

.merch-store-cta {
    margin-top: 2.5rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.merch-store-cta p {
    color: var(--accent-color);
    font-size: 1rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    min-height: 260px;
    cursor: pointer;
    background-color: #12182e;
}

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

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

/* ===== Updated gallery overlay ===== */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: var(--transition);
}

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

/* Expand icon in the center */
.gallery-overlay a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.gallery-overlay a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.2);
}

/* Caption text near bottom with slide-up */
.gallery-overlay p {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px); /* start slightly below */
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay p {
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* slide up into place */
}

/* ========== CONTACT SECTION ========== */
.contact {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
}

.contact h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

/* ===== LEFT COLUMN ===== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0;
}

.contact-info p strong {
    color: var(--secondary-color);
}

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

.contact-info a:hover {
    color: var(--accent-color);
}

/* ===== RIGHT COLUMN ===== */

.contact-socials {
    text-align: center;
    position: relative;
    top: -55px;
}

.contact-socials h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

/* ===== SOCIAL ICONS ===== */

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    width: 65px;
    height: 65px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.6rem;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.social-icons a:hover {
    transform: translateY(-6px) scale(1.05);
}

/* Instagram */
.social-icons a[href*="instagram"]:hover {
    background-color: #E1306C;
    color: white;
    border-color: #E1306C;
}

/* Spotify */
.social-icons a[href*="spotify"]:hover {
    background-color: #1db954;
    color: white;
    border-color: #1db954;
}

/* YouTube */
.social-icons a[href*="youtube"]:hover {
    background-color: #ff0000;
    color: white;
    border-color: #ff0000;
}

/* TikTok */
.social-icons a[href*="tiktok"]:hover {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

/* Twitter / X */
.social-icons a[href*="twitter"]:hover {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

/* ========== 10. RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .navbar {
        backdrop-filter: none;
    }

    .btn {
        backdrop-filter: none;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(10, 14, 39, 0.98);
        padding: 2rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .hamburger {
        display: flex;
    }

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

    .hero {
        min-height: calc(100svh - 70px);
        padding: 3rem 0;
        background-position: center 24%;
    }

    .media-hero {
        min-height: 58vh;
        padding-bottom: 3.5rem;
    }

    .shows-hero {
        min-height: 58vh;
        padding-bottom: 3.5rem;
    }

    .merch-hero {
        min-height: 58vh;
        padding-bottom: 3.5rem;
    }

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

    .hero-ctas {
        gap: 0.5rem;
    }

    .hero-ctas .btn {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .media-event {
        padding: 1.4rem;
        border-radius: 20px;
    }

    .media-event-title {
        font-size: 1.45rem;
    }

    .media-event-grid {
        grid-template-columns: 1fr;
    }

    .media-card--feature {
        grid-column: auto;
    }

    .show-card {
        grid-template-columns: 96px 1fr;
    }

    .show-card--featured {
        grid-template-columns: 96px 1fr;
        min-height: 0;
        background-position: center top;
    }

    .show-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-items: center;
    }

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

    .merch-store-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .streaming-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stream-link {
        padding: 1.5rem;
    }

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

    .contact-socials {
        top: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 60px;
        min-height: calc(100svh - 60px);
        padding: 2.5rem 0;
        background-position: center 22%;
    }

    .media-hero {
        margin-top: 60px;
        min-height: 52vh;
        padding-top: 6rem;
    }

    .shows-hero {
        margin-top: 60px;
        min-height: 52vh;
        padding-top: 6rem;
    }

    .merch-hero {
        margin-top: 60px;
        min-height: 52vh;
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .gallery-item {
        min-height: 220px;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 2rem 0;
    }

    .section-container {
        padding: 0 1rem;
    }

    .media-event-header {
        margin-bottom: 1.2rem;
    }

    .show-card {
        grid-template-columns: 1fr;
        padding: 1.2rem;
        border-radius: 20px;
    }

    .show-card--featured {
        grid-template-columns: 1fr;
        min-height: 0;
        background-position: center top;
        background-size: contain, auto, contain, auto;
    }

    .show-date {
        min-height: 96px;
        width: 100%;
    }

    .show-card--featured .show-date {
        width: fit-content;
        min-width: 96px;
    }

    .show-date-day {
        font-size: 2.4rem;
    }

    .show-details h3 {
        font-size: 1.35rem;
    }

    .show-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .show-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .merch-card {
        border-radius: 20px;
    }

    .merch-card-media {
        padding: 1rem;
    }

    .merch-card-body {
        padding: 1.1rem 1.1rem 1.25rem;
    }

    .merch-store-cta .btn {
        width: 100%;
    }

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

    .streaming-platforms {
        grid-template-columns: 1fr;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
