/* ============================================================
   sv-index.css — Homepage only styles
   Requires: sv-core.css
   ============================================================ */

/* Override section padding — index breathes a little more */
section { padding: 6rem 0; }

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.01em;
}
.divider { margin: 2rem 0; }

/* HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* ── Swap URL for your own image ── */
    background-image: url('images/head3.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            160deg,
            rgba(0,0,0,0.88) 0%,
            rgba(10,10,10,0.72) 55%,
            rgba(10,10,10,0.60) 100%
        ),
        radial-gradient(ellipse at 70% 50%, rgba(232,197,71,0.07) 0%, transparent 60%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--white);
}
.hero-name span { color: var(--accent); }
.hero-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-top: 1.5rem;
    text-transform: uppercase;
}
.hero-cred {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.hero-cred-item {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    padding: 0.5rem 1rem;
    border: 1px solid var(--mid);
    border-radius: 2px;
}
.hero-cred-item.highlight {
    border-color: var(--accent-dim);
    color: var(--accent);
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--text-faint);
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

/* ABOUT
   ============================================================ */
.about-section { background: var(--off-black); }
.about-text {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 640px;
}
.about-text p { margin-bottom: 1.2rem; }
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.stat-item { border-left: 2px solid var(--accent); padding-left: 1rem; }
.stat-number {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: var(--accent);
    line-height: 1;
}
.stat-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-top: 0.3rem;
}

/* PRESS QUOTES
   ============================================================ */
.press-section { background: var(--black); }
.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.quote-card {
    background: var(--off-black);
    border: 1px solid var(--mid);
    padding: 2rem;
    position: relative;
    transition: border-color 0.3s;
}
.quote-card:hover { border-color: var(--accent-dim); }
.quote-card::before {
    content: '\201C';
    font-family: 'Source Serif 4', serif;
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
    opacity: 0.4;
}
.quote-text {
    font-style: italic;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.quote-source {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}
.quote-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--off-black), var(--dark));
    border-color: var(--accent-dim);
    padding: 3rem;
}
.quote-featured .quote-text { font-size: 1.4rem; line-height: 1.6; }

/* SHOWS
   ============================================================ */
.shows-section { background: var(--off-black); }
.show-card {
    background: var(--dark);
    border: 1px solid var(--mid);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 280px;
    column-gap: 2.5rem;
    grid-template-areas:
        "top    media"
        "bottom media";
    align-items: start;
}
.show-top { grid-area: top; }
.show-bottom { grid-area: bottom; }
.show-media { grid-area: media; }
.show-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--mid);
}
.show-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}
.show-card:hover { border-color: var(--accent-dim); transform: translateX(4px); }
.show-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.show-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.show-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}
.show-desc {
    font-size: 0.95rem;
    color: var(--text);
    max-width: 600px;
    margin-bottom: 1.5rem;
}
.show-creds { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.show-cred-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--mid);
}
.show-cred-tag.gold { border-color: var(--accent-dim); color: var(--accent); }
.show-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-dim);
    padding-bottom: 2px;
    transition: all 0.3s;
}
.show-link:hover { color: var(--white); border-color: var(--white); }

/* VIDEO
   ============================================================ */
.video-section { background: var(--black); }
.video-placeholder {
    background: var(--dark);
    border: 1px solid var(--mid);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}
.video-placeholder::before {
    content: '▶';
    font-size: 2rem;
    color: var(--accent);
    z-index: 2;
}
.video-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    text-align: center;
}

/* DATES
   ============================================================ */
.dates-section { background: var(--off-black); }
.date-row {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--mid);
    transition: all 0.3s;
}
.date-row:hover { padding-left: 1rem; border-color: var(--accent-dim); }
.date-when {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--accent);
    min-width: 140px;
}
.date-venue {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--white);
    flex: 1;
}
.date-city {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    min-width: 120px;
    text-align: right;
}
.date-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--mid);
    color: var(--text-faint);
    margin-left: 1rem;
}
.date-ticket {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--accent);
    padding: 0.4rem 0.9rem;
    margin-left: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s;
}
.date-ticket:hover { opacity: 0.8; color: var(--black); }

/* FOR PROMOTERS
   ============================================================ */
.promoters-section {
    background: linear-gradient(180deg, var(--black), var(--off-black));
    border-top: 1px solid var(--accent-dim);
}
.promoter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.promoter-box {
    background: var(--dark);
    border: 1px solid var(--mid);
    padding: 2rem;
}
.promoter-box h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.promoter-box p { font-size: 0.9rem; color: var(--text); margin-bottom: 0.5rem; }
.promoter-box ul { list-style: none; padding: 0; }
.promoter-box ul li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.promoter-box ul li::before { content: '—'; color: var(--accent); margin-right: 0.5rem; }

/* CONTACT
   ============================================================ */
.contact-section { background: var(--black); }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.contact-item h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.contact-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.contact-item a:hover { color: var(--accent); }

/* MAILING LIST
   ============================================================ */
.ml-form {
    display: flex;
    gap: 0;
    max-width: 450px;
    margin-top: 1.5rem;
}
.ml-form input {
    flex: 1;
    background: var(--dark);
    border: 1px solid var(--mid);
    border-right: none;
    color: var(--text);
    padding: 0.8rem 1rem;
    font-family: 'Source Serif 4', serif;
    font-size: 0.9rem;
}
.ml-form input::placeholder { color: var(--text-faint); }
.ml-form input:focus { outline: none; border-color: var(--accent-dim); }

/* RESPONSIVE — index specific
   ============================================================ */
@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .hero-name { font-size: clamp(3rem, 15vw, 6rem); }
    .hero-cred { gap: 0.8rem; }
    .hero-cred-item { font-size: 0.65rem; padding: 0.4rem 0.8rem; }
    .stat-grid { grid-template-columns: 1fr; }
    .quote-grid { grid-template-columns: 1fr; }
    .date-row { flex-wrap: wrap; gap: 0.5rem; }
    .date-city { text-align: left; min-width: auto; }
    .date-type { margin-left: 0; }
    .date-ticket { margin-left: 0; }
    .show-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "top"
            "media"
            "bottom";
        row-gap: 1.5rem;
    }
}
