/* =========================================================
   ROCKSTAGE BAND TEMPLATE
   Shared stylesheet for all band/event pages
   ========================================================= */



/* =========================================================
   ROCKSTAGE / ROCK-SAN
   Main stylesheet
   ========================================================= */

/* =========================================================
   01. GLOBAL / VARIABLES
   ========================================================= */

:root {
    --black: #070707;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --red: #e50000;
    --white: #ffffff;
    --gray: #bdbdbd;
    --border: rgba(255, 255, 255, .12);
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}


/* =========================================================
   02. HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 7, .95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.nav {
    max-width: var(--max-width);
    margin: auto;
    min-height: 68px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #ddd;
    font-size: .92rem;
}

.nav-links a:hover {
    color: var(--red);
}


/* =========================================================
   03. HERO
   ========================================================= */

.hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    /* CSS is in /css/, image is in /images/main/ */
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .28) 52%,
            rgba(0, 0, 0, .58) 100%
        ),
        var(--band-hero-image) center center / cover no-repeat,
        #080808;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, .20) 0%,
        rgba(0, 0, 0, 0) 55%,
        rgba(0, 0, 0, .18) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max-width), 100%);
    margin: auto;
    padding: 80px 22px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}

.hero-content > * {
    max-width: 590px;
}

.eyebrow {
    color: #ddd;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3.5rem, 7.2vw, 6.5rem);
    line-height: .88;
    letter-spacing: -4px;
    text-transform: uppercase;
    color: var(--red);
}

.hero-title {
    margin: 25px 0 0;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
}

.hero-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin-top: 15px;
    background: var(--red);
}

.hero-tagline {
    max-width: 650px;
    margin: 8px 0 0;
    color: #ccc;
    font-size: 1.1rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.event-meta-item {
    padding: 9px 13px;
    background: rgba(0, 0, 0, .58);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .3px;
}

.event-meta-item span {
    color: #aaa;
    font-weight: 700;
    margin-right: 5px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid var(--red);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--red);
}

.btn-secondary {
    background: transparent;
}

.btn:hover {
    opacity: .88;
}

.hero-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: .9;
}


/* =========================================================
   04. EVENT INFORMATION
   ========================================================= */

.event-info {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    padding: 28px 22px;
    background: #0b0b0b;
    border-bottom: 1px solid var(--border);
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.event-info-card {
    padding: 20px 18px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    border-radius: 4px;
    text-align: center;
}

.event-info-label {
    display: block;
    margin-bottom: 5px;
    color: var(--red);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-info-value {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
}

.event-info-sub {
    display: block;
    margin-top: 2px;
    color: #aaa;
    font-size: .88rem;
}


/* =========================================================
   05. GENERAL CONTENT / SECTIONS
   ========================================================= */

main {
    width: min(var(--max-width), 100%);
    margin: auto;
    padding: 55px 22px;
}

.section {
    padding: 55px 0;
    border-bottom: 1px solid var(--border);
}

.label {
    color: var(--red);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2 {
    margin: 7px 0 25px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    text-transform: uppercase;
}

h3 {
    margin-top: 35px;
}

.lead {
    color: #ddd;
    font-size: 1.18rem;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 30px 0;
}

.highlight {
    padding: 22px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
}

.highlight strong {
    display: block;
    margin-bottom: 5px;
}


/* =========================================================
   06. ABOUT ROCK-SAN
   ========================================================= */

#about {
    padding: 72px 0 62px;
}

#about .label {
    margin-bottom: 9px;
}

#about h2 {
    max-width: 820px;
    margin: 0 0 24px;
    font-size: clamp(2.25rem, 5vw, 3.9rem);
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

#about .lead {
    max-width: 900px;
    margin: 0 0 24px;
    font-size: 1.16rem;
    line-height: 1.8;
}

#about > p:not(.lead):not(.live-music-statement):not(.about-signature) {
    max-width: 900px;
    color: #bdbdbd;
    line-height: 1.8;
}

#about > p strong {
    color: #fff;
}

#about .live-music-statement {
    max-width: 900px;
    margin: 30px 0;
    padding: 27px 30px;
    background: linear-gradient(
        90deg,
        rgba(229, 0, 0, .12),
        rgba(17, 17, 17, .96)
    );
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
}

#about .statement-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--red);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

#about .live-music-statement strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    line-height: 1.05;
    text-transform: uppercase;
}

#about .statement-text {
    color: #bdbdbd;
    line-height: 1.65;
}

#about .highlights {
    margin: 38px 0 44px;
}

#about .highlight {
    min-height: 118px;
    transition: transform .2s ease, border-color .2s ease;
}

#about .highlight strong {
    color: #fff;
    font-size: 1.05rem;
}

#about h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 1.45rem;
    text-transform: uppercase;
}

#about ul {
    max-width: 900px;
    margin: 0 0 30px;
    padding-left: 22px;
    color: #bdbdbd;
}

#about li {
    margin: 7px 0;
    padding-left: 5px;
}

#about .about-signature {
    max-width: 900px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--red);
    font-size: 1.05rem;
    letter-spacing: .15px;
}


/* =========================================================
   07. LANGUAGES
   ========================================================= */

#languages {
    padding: 68px 0;
}

#languages .label {
    margin-bottom: 9px;
}

#languages h2 {
    margin-bottom: 12px;
}

#languages .language-intro {
    max-width: 720px;
    margin: 0 0 28px;
    color: var(--gray);
    line-height: 1.7;
}

#languages details {
    margin: 10px 0;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

#languages summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 15px 48px 15px 18px;
    background: var(--dark-2);
    color: #fff;
    font-weight: 800;
    letter-spacing: .15px;
    cursor: pointer;
    list-style: none;
}

#languages summary::-webkit-details-marker {
    display: none;
}

#languages summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--red);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
}

#languages details[open] summary::after {
    content: "−";
}

#languages summary:hover {
    background: #252525;
}

#languages details[open] summary {
    border-bottom: 1px solid var(--border);
}

#languages .language-content {
    padding: 22px 20px 20px;
    color: #d0d0d0;
    line-height: 1.75;
}

#languages .language-content p {
    max-width: 900px;
    margin: 0 0 16px;
}

#languages .language-content p:last-child {
    margin-bottom: 0;
}

#languages .language-content strong {
    color: #fff;
}

@media (max-width: 760px) {
    #languages {
        padding: 46px 0;
    }

    #languages summary {
        min-height: 52px;
        padding: 14px 44px 14px 16px;
    }

    #languages .language-content {
        padding: 18px 16px;
        font-size: .96rem;
        line-height: 1.7;
    }
}

/* =========================================================
   08. TICKETS / WEEZEVENT
   ========================================================= */

.ticket-box {
    margin-top: 25px;
    padding: 22px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.ticket-intro {
    color: var(--gray);
}

.weezevent-widget-integration {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.weezevent-widget-integration:hover {
    background: #ff1717;
}


/* =========================================================
   09. FOOTER
   ========================================================= */

.footer {
    padding: 40px 22px;
    text-align: center;
    color: #999;
    background: #040404;
    border-top: 1px solid var(--border);
}

.footer strong {
    color: white;
}


/* =========================================================
   10. DESKTOP-ONLY INTERACTION
   ========================================================= */

@media (hover: hover) and (pointer: fine) {
    #about .highlight:hover {
        transform: translateY(-2px);
        border-color: rgba(229, 0, 0, .45);
    }
}


/* =========================================================
   11. RESPONSIVE / MOBILE
   ========================================================= */

@media (max-width: 760px) {

    /* Navigation */
    .nav-links {
        display: none;
    }

    /* Hero */
    .hero {
        aspect-ratio: auto;
        min-height: 680px;
        background-position: 62% center !important;
    }

    .hero-content {
        padding: 72px 18px 65px;
    }

    .hero h1 {
        font-size: clamp(3rem, 16vw, 5rem);
        letter-spacing: -2px;
    }

    /* Event meta */
    .event-meta {
        gap: 8px;
        margin-top: 22px;
    }

    .event-meta-item {
        width: 100%;
    }

    /* Event information */
    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .event-info-card {
        text-align: left;
    }

    /* Main content */
    main {
        padding: 30px 18px;
    }

    .section {
        padding: 42px 0;
    }

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

    /* Tickets */
    .ticket-box {
        padding: 12px;
    }

    /* About */
    #about {
        padding: 48px 0 42px;
    }

    #about h2 {
        margin-bottom: 18px;
        letter-spacing: -1px;
    }

    #about .lead {
        font-size: 1.04rem;
        line-height: 1.7;
    }

    #about .live-music-statement {
        padding: 23px 20px;
        margin: 26px 0;
    }

    #about .highlights {
        margin: 30px 0 36px;
    }

    #about .highlight {
        min-height: 0;
    }

    #about .about-signature {
        font-size: 1rem;
    }
}

/* =========================================================
   12. ALGORHYTHM Y BLUES / EVENT-SPECIFIC REFINEMENT
   ========================================================= */

.hero h1 {
    font-size: clamp(3.2rem, 5.8vw, 6.2rem);
    letter-spacing: -3px;
    line-height: .9;
    max-width: 850px;
}

.footer {
    padding: 44px 22px 24px;
    color: #999;
    background: #040404;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 30px;
}

.footer-logo {
    margin: 0 0 8px !important;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-brand p:last-child {
    color: #888;
    line-height: 1.6;
}

.footer-heading {
    display: block;
    margin-bottom: 12px;
    color: var(--red);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-contact,
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact a,
.footer-links a {
    color: #bbb;
    text-decoration: none;
    line-height: 1.5;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #666;
    font-size: .82rem;
    line-height: 1.5;
}

@media (max-width: 760px) {
    .hero h1 {
        font-size: clamp(2.7rem, 13vw, 4.8rem);
        letter-spacing: -2px;
        line-height: .92;
    }

    .footer {
        padding: 36px 18px 22px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-bottom: 24px;
    }

    .footer-contact,
    .footer-links {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }
}

/* =========================================================
   13. BAND PAGE IMAGE CONFIGURATION
   =========================================================
   Each HTML page can override the hero image with:

   <style>
       :root {
           --band-hero-image: url("../images/main/band-name.webp");
       }
   </style>

   This keeps ONE shared CSS file for all band pages.
   ========================================================= */
