/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: #0d0d0d;
    color: #e8e8e8;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Oswald', Arial, sans-serif; letter-spacing: 0.03em; }
a { color: inherit; text-decoration: none; }
img { display: block; }
.hidden { display: none !important; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: #c8a800;
    color: #0d0d0d;
    border-color: #c8a800;
}
.btn-primary:hover { background: #ffd700; border-color: #ffd700; }
.btn-outline {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
}
.btn-outline:hover { background: rgba(255,215,0,0.12); }
.btn-ghost {
    background: transparent;
    color: #e8e8e8;
    border-color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}
.btn-ghost:hover { border-color: #ffd700; color: #ffd700; }
.btn.full-width { width: 100%; justify-content: center; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    display: flex;
    height: 76px;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,10,0.97);
    padding: 0 40px;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,215,0,0.15);
}
.navbar-logo { height: 62px; display: flex; align-items: center; }
.navbar-logo img { height: 62px; width: auto; }
.navbar-toggle { display: none; font-size: 26px; cursor: pointer; color: #e8e8e8; }
.navbar-links { list-style: none; display: flex; gap: 8px; align-items: center; }
.navbar-links li a {
    color: #c8c8c8;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 3px;
    transition: color 0.2s ease, background 0.2s ease;
}
.navbar-links li a:hover,
.navbar-links li a.active { color: #ffd700; }
.nav-cta {
    background: #c8a800;
    color: #0d0d0d !important;
    padding: 8px 16px;
    border-radius: 3px;
    font-weight: 600;
    transition: background 0.2s ease;
}
.navbar-links li a:hover .nav-cta,
.navbar-links li a.active .nav-cta { background: #ffd700; }

@media (max-width: 820px) {
    .navbar { padding: 0 20px; }
    .navbar-toggle { display: block; }
    .navbar-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 76px; left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        padding: 16px 20px 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(255,215,0,0.2);
    }
    .navbar-links.open { display: flex; }
    .navbar-links li a { padding: 12px 16px; font-size: 1rem; }
}

/* ===========================
   PAGES
   =========================== */
.page { padding-top: 76px; min-height: 100vh; }

/* ===========================
   HERO
   =========================== */
.hero-section {
    position: relative;
    height: calc(100vh - 76px);
    min-height: 520px;
    overflow: hidden;
}
.hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.85) 100%
    );
}
.hero-content {
    position: absolute;
    bottom: 14%;
    left: 50%; transform: translateX(-50%);
    text-align: center;
    width: 90%; max-width: 700px;
}
.hero-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 12px;
}
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
    margin-bottom: 10px;
}
.hero-sub {
    font-size: 1.05rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    background: #111;
    border-bottom: 1px solid rgba(255,215,0,0.15);
    padding: 28px 40px;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
    text-align: center;
}
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffd700;
    line-height: 1.1;
    text-transform: uppercase;
}
.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}
@media (max-width: 600px) {
    .stats-strip { gap: 20px; padding: 24px 20px; }
    .stat { padding: 0 10px; }
    .stat-divider { display: none; }
}

/* ===========================
   PRESS QUOTE
   =========================== */
.press-section {
    background: linear-gradient(135deg, #1a1400 0%, #111 100%);
    border-top: 1px solid rgba(255,215,0,0.1);
    border-bottom: 1px solid rgba(255,215,0,0.1);
    padding: 50px 40px;
    text-align: center;
}
.press-quote {
    max-width: 680px;
    margin: 0 auto;
}
.press-quote p {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    color: #fff;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 16px;
}
.press-quote cite {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffd700;
    font-style: normal;
}

/* ===========================
   HOME GRID (news + video)
   =========================== */
.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #050505;
    margin-top: 2px;
}
.home-card {
    background: #111;
    padding: 48px 40px;
}
.home-card.wide { /* news card - same width, just label */ }
.home-card-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 12px;
    font-family: 'Oswald', sans-serif;
}
.home-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fff;
}
.home-card p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 24px;
}
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    margin-top: 16px;
}
.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
@media (max-width: 768px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 0;
        background: #0d0d0d;
    }

    .hero-image {
        order: 1;
        height: auto;
        max-height: 72vh;
        object-fit: contain;
        object-position: center center;
        background: #0d0d0d;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        position: relative;
        order: 2;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: none;
        padding: 26px 20px 6px;
        background: linear-gradient(to bottom, rgba(13, 13, 13, 0), rgba(13, 13, 13, 0.92) 18%, rgba(13, 13, 13, 1));
    }

    .hero-sub {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 0.82rem;
    }

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

/* ===========================
   SHOWS
   =========================== */
.shows-section {
    background: #0d0d0d;
    padding: 64px 40px;
    max-width: 900px;
    margin: 0 auto;
}
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ffd700;
    display: inline-block;
}
.section-title.center { display: block; text-align: center; border-bottom: none; }
.section-title.center::after {
    content: '';
    display: block;
    width: 60px; height: 3px;
    background: #ffd700;
    margin: 10px auto 0;
}
.section-title.left { border-bottom: 2px solid #ffd700; }
.section-sub {
    color: #888;
    margin-bottom: 40px;
    font-size: 1rem;
}
.section-sub.center { text-align: center; }
.shows-list { display: flex; flex-direction: column; }
.show-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s ease;
}
.show-row:hover { background: rgba(255,215,0,0.04); }
.show-date {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffd700;
    letter-spacing: 0.05em;
}
.show-venue-info { }
.show-venue {
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
}
.show-city {
    font-size: 0.85rem;
    color: #888;
    margin-top: 2px;
}
.show-ticket {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    font-family: 'Oswald', sans-serif;
}
.shows-note {
    margin-top: 24px;
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}
@media (max-width: 600px) {
    .shows-section { padding: 48px 20px; }
    .show-row { grid-template-columns: 1fr; gap: 4px; }
    .show-ticket { display: none; }
}

/* ===========================
   PAGE CONTAINER
   =========================== */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}
@media (max-width: 600px) { .page-container { padding: 40px 20px 60px; } }

/* ===========================
   PAGE HERO BANNER
   =========================== */
.page-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin: -60px -40px 60px;
    border-radius: 0;
}
.page-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}
.page-hero-text {
    position: absolute;
    bottom: 30px; left: 40px;
}
.page-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}
@media (max-width: 600px) {
    .page-hero { margin: -40px -20px 40px; height: 200px; }
    .page-hero-text { left: 20px; }
    .page-hero-text h1 { font-size: 2rem; }
}

/* ===========================
   TWO COLUMN LAYOUT (About)
   =========================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.two-col-main p {
    color: #b0b0b0;
    line-height: 1.75;
    margin-bottom: 18px;
}
.bio-intro {
    font-size: 1.15rem !important;
    color: #d8d8d8 !important;
    font-weight: 500;
}
.subsection-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffd700;
    margin: 32px 0 14px;
}
.band-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.band-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #161616;
    border-left: 3px solid #ffd700;
    border-radius: 2px;
}
.member-name { font-weight: 600; color: #fff; }
.member-role {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* About sidebar */
.two-col-side { display: flex; flex-direction: column; gap: 24px; }
.press-card {
    background: #161616;
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 6px;
    padding: 28px;
    position: relative;
}
.press-icon {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 12px;
    opacity: 0.7;
}
.press-card p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 14px;
}
.press-card cite {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffd700;
    font-style: normal;
}
.about-spotify { }
.links-card {
    background: #111;
    border-radius: 6px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.link-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 4px;
    color: #b0b0b0;
    font-size: 0.9rem;
    transition: color 0.2s, background 0.2s;
}
.link-row:hover { color: #ffd700; background: rgba(255,215,0,0.06); }
.link-row i { width: 18px; text-align: center; color: #ffd700; }

@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; }
    .two-col-side { order: -1; }
}

/* ===========================
   MUSIC / MERCH
   =========================== */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.merch-card {
    background: #111;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.merch-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.merch-card a { display: block; color: inherit; }
.merch-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1 / 1; }
.merch-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.merch-card:hover .merch-img-wrap img { transform: scale(1.05); }
.merch-hover {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffd700;
    gap: 8px;
}
.merch-card:hover .merch-hover { opacity: 1; }
.merch-info { padding: 20px 22px 24px; }
.merch-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 4px;
}
.merch-info p { font-size: 0.85rem; color: #888; margin-bottom: 10px; }
.merch-tag {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffd700;
    font-family: 'Oswald', sans-serif;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}
.gig-section { margin-bottom: 60px; }
.gig-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffd700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
}
.image-grid { column-count: 4; column-gap: 8px; }
.grid-image {
    width: 100%; margin-bottom: 8px;
    border-radius: 3px; cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
    display: block; break-inside: avoid;
}
.grid-image:hover { transform: scale(1.02); opacity: 0.85; }
@media (max-width: 1024px) { .image-grid { column-count: 3; } }
@media (max-width: 600px) { .image-grid { column-count: 2; } }

.image-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.94);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000; cursor: pointer;
}
.modal-image {
    max-width: 92vw; max-height: 90vh;
    border-radius: 4px; cursor: default;
    box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.close-btn {
    position: absolute; top: 20px; right: 28px;
    font-size: 42px; color: #fff; cursor: pointer; line-height: 1;
    opacity: 0.7; transition: opacity 0.2s, color 0.2s;
}
.close-btn:hover { opacity: 1; color: #ffd700; }

/* ===========================
   CONTACT
   =========================== */
.contact-hero {
    text-align: center;
    padding: 40px 0 56px;
}
.contact-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 12px;
}
.contact-hero p { font-size: 1.1rem; color: #888; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}
.contact-card {
    background: #111;
    border-radius: 6px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.booking-card {
    border: 1px solid rgba(255,215,0,0.3);
    background: linear-gradient(135deg, #161200 0%, #111 100%);
}
.contact-card-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 4px;
}
.contact-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}
.contact-card p { font-size: 0.9rem; color: #888; line-height: 1.6; flex: 1; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #888;
}
.contact-detail i { color: #ffd700; }
.contact-detail a:hover { color: #ffd700; }

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

.socials-row { margin-bottom: 60px; }
.socials-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    color: #c8c8c8;
    transition: all 0.2s ease;
}
.social-pill:hover { border-color: #ffd700; color: #ffd700; }
.social-pill i { opacity: 0.8; }

.contact-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-radius: 6px;
    overflow: hidden;
}
.contact-photos img {
    width: 100%; height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.contact-photos img:hover { transform: scale(1.04); }
@media (max-width: 700px) {
    .contact-photos { grid-template-columns: repeat(2, 1fr); }
    .contact-photos img { height: 160px; }
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: #080808;
    border-top: 1px solid rgba(255,215,0,0.12);
    padding: 50px 40px;
    text-align: center;
}
.footer-inner { max-width: 480px; margin: 0 auto; }
.footer-logo { height: 60px; margin: 0 auto 16px; }
.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
}
.footer-contact { font-size: 0.85rem; color: #666; margin-bottom: 24px; }
.footer-contact a:hover { color: #ffd700; }
.footer-socials { display: flex; justify-content: center; gap: 22px; }
.footer-socials a {
    color: #555;
    font-size: 1.3rem;
    transition: color 0.2s ease;
}
.footer-socials a:hover { color: #ffd700; }
