/* ==========================================================================
   Waco City - Shared Stylesheet
   Vintage Country Rock Design
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Sans+3:wght@300;400;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --cream: #f5f0e8;
    --dark: #1c1c1c;
    --gold: #c9a84c;
    --brown: #2d2418;
    --muted: #7a7060;
    --warm-gray: #3d3630;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

/* ---------- Navigation ---------- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--brown);
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
    display: inline-flex;
    align-items: center;
}

/* When the admin uploads a logo image, content.js swaps the text for an <img>
   and adds .has-logo-image. Cap the height so tall logos don't stretch the nav. */
.logo.has-logo-image {
    letter-spacing: 0;
    padding: 0;
}

.logo .logo-img {
    display: block;
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo .logo-img {
        max-height: 36px;
    }
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--gold);
}

.cart-btn {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--cream);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: var(--brown);
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s;
}

/* Mobile nav open state */
.nav-links.open {
    display: flex;
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--brown);
    color: var(--cream);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1; /* vintage scanline sits above the photo, below the text */
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}

/* Full-screen rotating photo slideshow behind the hero text (js/reel.js,
   background mode). Falls back to the hero_image setting, then solid brown. */
.hero-reel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-reel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s ease-in-out; /* smooth crossfade, not a slide */
    will-change: opacity;
}

.hero-reel-slide.is-active {
    opacity: 1;
}

/* Dark overlay so the headline stays readable over any photo. Only renders
   once real photos load (has-photos), leaving the hero_image fallback — which
   carries its own overlay — untouched. */
.hero-reel.has-photos::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
}

/* Keep the hero text above the slideshow and scanline. */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (prefers-reduced-motion: reduce) {
    .hero-reel-slide { transition: none; }
}

.hero-badge {
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    position: relative;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    position: relative;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
    position: relative;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.hero-tagline {
    color: rgba(245,240,232,0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--brown);
    color: var(--cream);
    position: relative;
    padding: 8rem 2rem 4rem;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    position: relative;
    letter-spacing: -1px;
}

.page-header p {
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 0.95rem;
    margin-top: 1rem;
    position: relative;
}

/* ---------- Buttons ---------- */
.btn-gold {
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--brown);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-block;
}

.btn-gold:hover {
    background: #dbb960;
    transform: translateY(-2px);
}

.btn-ghost {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245,240,232,0.3);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-ghost-dark {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.2);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.btn-ghost-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---------- Sections ---------- */
section {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
}

.gold-rule {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}

.section-head p {
    color: var(--muted);
}

.dark-section {
    background: var(--brown);
    color: var(--cream);
    max-width: 100%;
    padding: 6rem 3rem;
}

.dark-section .section-head h2 {
    color: var(--cream);
}

.dark-section .section-head p {
    color: rgba(245,240,232,0.6);
}

.dark-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------- Shows / Tour Dates ---------- */
.show-table {
    width: 100%;
    border-collapse: collapse;
}

.show-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}

.show-table tr:hover {
    background: rgba(201,168,76,0.05);
}

.show-table td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
}

.show-table .date {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.show-table .venue {
    font-weight: 600;
    font-size: 1.05rem;
}

.show-table .location {
    color: rgba(245,240,232,0.5);
}

.ticket-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.ticket-btn:hover {
    background: var(--gold);
    color: var(--brown);
}

/* Show table on cream backgrounds */
.show-table-light tr {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.show-table-light tr:hover {
    background: rgba(201,168,76,0.05);
}

.show-table-light .date {
    color: var(--gold);
}

.show-table-light .venue {
    color: var(--dark);
}

.show-table-light .location {
    color: var(--muted);
}

/* ---------- Music ---------- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.music-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.music-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.music-embed {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 0.85rem;
}

.music-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.music-info {
    padding: 1.5rem;
}

.music-info h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.3rem;
}

.music-info p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.stream-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stream-link {
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.stream-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Shop CTA — primary "buy" affordance among the streaming links */
.stream-link.stream-link-shop {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    font-weight: 700;
}
.stream-link.stream-link-shop:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--gold);
}

/* "Buy / Download" CTA on the It's All Gonna Be Okay music cards — sends fans to
   the store. Full-width block button anchored below the streaming links. */
.music-card .iagbo-buy {
    display: block;
    text-align: center;
    margin-top: 1rem;
}

/* ---------- Videos ---------- */
/* .video-frame is the 16:9 box around any video player surface (uploaded file,
   YouTube iframe, or paywall card). Aspect-ratio keeps it fluid; overflow:hidden
   clips iframes that don't honor sizing. */
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.video-frame .video-player,
.video-frame iframe,
.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #000;
}

.video-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.9rem;
}

.video-paywall {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, 0.9);
    text-align: center;
    padding: 1rem;
}

.video-paywall-inner {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(2px);
}

.video-paywall-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.video-paywall-label {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 240, 232, 0.08);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.video-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}

.video-info {
    padding: 1.2rem 1.4rem 1.4rem;
}

.video-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.video-info p {
    color: rgba(245, 240, 232, 0.65);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

/* Use the page-light "stream-link" look but with cream-on-dark contrast */
.video-info .stream-link {
    border-color: rgba(245, 240, 232, 0.2);
    color: var(--cream);
}
.video-info .stream-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 640px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ---------- Merch ---------- */
.merch-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.merch-piece {
    background: white;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.merch-piece:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.merch-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.merch-piece h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.merch-piece .price {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.merch-piece .description {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.size-select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid rgba(0,0,0,0.1);
    font-family: inherit;
    margin-bottom: 0.8rem;
    background: white;
    font-size: 0.9rem;
}

.add-btn {
    padding: 0.6rem 1.5rem;
    background: var(--gold);
    color: var(--brown);
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.add-btn:hover {
    background: #dbb960;
}

/* ---------- About ---------- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    aspect-ratio: 3/4;
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.about-img::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid var(--gold);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-copy p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.band-roster {
    margin-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
}

.roster-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.roster-item .name {
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.roster-item .role {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ---------- Gallery / Photo Grid ---------- */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.photo-cell {
    aspect-ratio: 1;
    background: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.photo-cell:hover {
    opacity: 0.85;
}

.photo-cell.wide {
    aspect-ratio: 2/1;
    grid-column: span 2;
}

.photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-overlay.open {
    display: flex;
}

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

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 3001;
}

/* CSS-only lightbox using :target */
.lightbox-target {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox-target:target {
    opacity: 1;
    pointer-events: all;
}

.lightbox-target img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-target .lightbox-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    line-height: 1;
}

.lightbox-target .lightbox-caption {
    position: absolute;
    bottom: 2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2rem;
    border-left: 3px solid var(--gold);
}

.testimonial-card p.quote {
    color: var(--muted);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card p.author {
    color: var(--gold);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* ---------- Featured Cards ---------- */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2.5rem;
    transition: all 0.3s;
}

.featured-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.featured-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.featured-card .card-tag {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.featured-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.featured-card a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
}

.featured-card a:hover {
    color: #dbb960;
}

/* ---------- Contact ---------- */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.input-group textarea {
    min-height: 140px;
    resize: vertical;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.send-btn {
    background: var(--gold);
    color: var(--brown);
    border: none;
    padding: 1rem 2.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.send-btn:hover {
    background: #dbb960;
}

.contact-details {
    padding: 3rem;
    background: var(--brown);
    color: var(--cream);
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.detail-line {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.detail-line span:first-child {
    color: var(--gold);
}

.detail-line a {
    color: var(--gold);
    text-decoration: none;
}

.detail-line a:hover {
    text-decoration: underline;
}

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

.social-row a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 600;
}

.social-row a:hover {
    background: var(--gold);
    color: var(--brown);
}

/* Form success */
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--gold);
    background: rgba(201,168,76,0.05);
}

.form-success.show {
    display: block;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.form-success p {
    color: var(--muted);
}

/* ---------- Cart Drawer ---------- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: var(--cream);
    border-left: 2px solid var(--gold);
    z-index: 2001;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.cart-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted);
    background: none;
    border: none;
}

.cart-close:hover {
    color: var(--gold);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cart-item-icon {
    font-size: 2rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    font-family: 'Playfair Display', serif;
}

.cart-item-info p {
    color: var(--muted);
    font-size: 0.8rem;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
}

.cart-item-remove {
    color: var(--muted);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.2rem;
}

.cart-item-remove:hover {
    color: var(--gold);
}

.cart-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cart-total span:last-child {
    color: var(--gold);
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--brown);
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: #dbb960;
}

.cart-empty {
    text-align: center;
    color: var(--muted);
    padding: 3rem 0;
}

/* ---------- Toast Notifications ---------- */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--brown);
    padding: 1rem 2rem;
    font-weight: 600;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ---------- Footer ---------- */
footer {
    background: var(--brown);
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(245,240,232,0.5);
    font-size: 0.85rem;
    border-top: 1px solid rgba(201,168,76,0.2);
}

footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

footer .footer-links a {
    color: rgba(245,240,232,0.5);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

footer .footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

footer .footer-social a {
    color: rgba(245,240,232,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

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

footer .footer-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto;
    opacity: 0.4;
}

footer .footer-credit {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.55;
}
footer .footer-credit a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 1px;
}
footer .footer-credit a:hover { opacity: 1; border-bottom-color: var(--gold); }

/* ---------- Recording Credits ---------- */
.credits-list {
    list-style: none;
    padding: 0;
}

.credits-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--muted);
    line-height: 1.6;
}

.credits-list li strong {
    color: var(--dark);
}

/* ---------- Gallery Sections ---------- */
.gallery-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.gallery-section-title span {
    color: var(--gold);
    font-size: 0.8rem;
    font-family: 'Source Sans 3', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    margin-left: 1rem;
}

/* ---------- Utility ---------- */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--brown);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(201,168,76,0.2);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    section,
    .dark-section {
        padding: 4rem 1.5rem;
    }

    .about-split,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-cell.wide {
        grid-column: span 1;
        aspect-ratio: 1;
    }

    .show-table td {
        display: block;
        padding: 0.5rem 1rem;
    }

    .show-table tr {
        padding: 1rem 0;
        display: block;
    }

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

    .page-header {
        padding: 6rem 1.5rem 3rem;
    }

    .page-header h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .input-row {
        grid-template-columns: 1fr;
    }

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

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

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

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

/* ==========================================================================
   Gallery Reel / Photo Carousel  (js/reel.js)
   Reusable: homepage + testimonial page share this component, different sources.
   ========================================================================== */
.reel-section {
    background: var(--brown);
    color: var(--cream);
    max-width: 100%;
    padding: 5rem 3rem;
}

.reel-section .section-head h2 { color: var(--cream); }
.reel-section .section-head p { color: rgba(245,240,232,0.6); }

.reel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

/* Until reel.js renders, keep the box from collapsing/flashing. */
.reel:not(.is-ready) {
    min-height: 220px;
}

.reel-viewport {
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.35);
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    background: #000;
}

.reel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.reel-slide {
    position: relative;
    flex: 0 0 100%;
    aspect-ratio: 16 / 9;
    background: var(--warm-gray);
    margin: 0;
}

.reel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.2rem 1.5rem 1rem;
    color: var(--cream);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

/* Arrows */
.reel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold);
    background: rgba(45,36,24,0.6);
    color: var(--gold);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.reel-arrow:hover {
    background: var(--gold);
    color: var(--brown);
}

.reel-prev { left: 1rem; }
.reel-next { right: 1rem; }

/* Dots */
.reel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.reel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s;
}

.reel-dot.is-active {
    background: var(--gold);
    transform: scale(1.25);
}

/* ==========================================================================
   "It's All Gonna Be Okay" / Testimonial page
   ========================================================================== */
.testimony-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.9;
}

.testimony-story {
    max-width: 760px;
    margin: 0 auto;
    color: var(--dark);
    line-height: 1.9;
    font-size: 1.05rem;
}

.testimony-story p { margin-bottom: 1.4rem; }

.dark-section .testimony-story { color: rgba(245,240,232,0.85); }

.testimony-listen {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.testimony-listen audio {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 1.8rem;
    display: block;
}

.iagbo-track-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0.9rem;
}

.testimony-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

.testimony-links a {
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s;
}

.testimony-links a:hover {
    background: var(--gold);
    color: var(--brown);
}

/* Banner on the music page linking over to the testimony page */
.testimony-banner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.8rem 2rem;
    background: var(--brown);
    border: 1px solid rgba(201,168,76,0.35);
}

.testimony-banner h3 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.testimony-banner p {
    color: rgba(245,240,232,0.6);
    font-size: 0.95rem;
}

/* Booking form sits on a cream panel inside a dark section */
.booking-panel {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .reel-section { padding: 4rem 1.5rem; }
    .reel-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
    .reel-prev { left: 0.4rem; }
    .reel-next { right: 0.4rem; }
    .testimony-banner { flex-direction: column; text-align: center; align-items: stretch; }
    .booking-panel { padding: 1.5rem; }
}
