@charset "utf-8";
/* CSS Document */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red: #E53935;
    --red-dark: #B71C1C;
    --gold: #FFB300;
    --yellow: #FFE600;
    --white: #FFFFFF;
    --bg: #0d0d0d;
    --surface: #181818;
    --surface2: #222222;
    --text: #f0f0f0;
    --muted: #888;
    --border: rgba(255,255,255,0.08);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.hidden {
    position: fixed;
    left: -9999px;
    top: -9999px;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--red);
}

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

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
}

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

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a0000 0%, #0d0d0d 50%, #0a0a1a 100%);
    z-index: 0;
    }

.hero-glow {
    display: none;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229,57,53,0.15) 0%, transparent 70%);
    z-index: 0;
}

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

.hero-eyebrow {
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    /*border: 1px solid rgba(255,179,0,0.3);*/
    border: 1px solid rgba(255,255,255,0.7);
    padding: 0.35rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.9;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 0.5rem;
}

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

.hero-logo-wrapper {
    display: flex;
    margin-bottom: 2rem;
}

.hero-logo-accent {width: 20%;}

.hero-logo {
    max-width: 800px;
    width: 80%;
}

.hero-sub {
    font-size: 1.3rem;
    color: var(--white);
    margin: 1.5rem 0 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    }

.hero-meta-label {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-meta-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--text);
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--red);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
    border: none;
}

.btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text);
    margin-left: 1rem;
}

.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }

.hero-divider {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
}

/* SECTION COMMONS */
section { padding: 6rem 2rem; }

.section-label {
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 3rem;
}

/* LINEUP */
.lineup { background: var(--surface); }
.lineup-inner { max-width: 1100px; margin: 0 auto; }

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

.band-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
}

.band-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229,57,53,0.4);
}

.band-img-placeholder {
    height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    position: relative;
}

.band-img-placeholder::after {
    content: 'IMAGE PLACEHOLDER';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.65rem;
    letter-spacing: 3px;
    opacity: 0.3;
    color: #fff;
}

.band-slot {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
    background: rgba(0,0,0,0.5);
    color: var(--gold);
    border: 1px solid rgba(255,179,0,0.3);
    position: relative;
    z-index: 1;
}

.band-info { padding: 1.25rem 1.5rem 1.5rem; }

.band-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.band-genre {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.band-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.bands-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    width: 100%;
}

.headliner-logo {
    max-width: 800px;
    width: 100%;
}

.openers-wrapper {
    display: flex;
    gap: 4rem;
    width: 100%;
    justify-content: space-around;
}

.openers-logo {
    max-width: 500px;
    width: 30%;
}

/* SCHEDULE */
.schedule { background: var(--bg); }
.schedule-inner { max-width: 700px; margin: 0 auto; }

.schedule-list { display: flex; flex-direction: column; gap: 1px; }

.schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border-left: 3px solid transparent;
    transition: border-color 0.2s, background 0.2s;
    gap: 1rem;
}

.schedule-row:hover { background: var(--surface2); border-left-color: var(--red); }
.schedule-row.headliner { border-left-color: var(--gold); }

.schedule-time {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--muted);
    min-width: 90px;
}

.schedule-band {
    flex: 1;
    font-weight: 600;
    font-size: 1rem;
}

.schedule-tag {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.tag-headliner { background: rgba(255,179,0,0.12); color: var(--gold); }
.tag-support { background: rgba(255,255,255,0.06); color: var(--muted); }
.tag-opener { background: rgba(229,57,53,0.1); color: var(--red); }

/* VENUE */
.venue { background: var(--bg); }
.venue-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.venue-img-wrapper {
    height: 380px;
    background: linear-gradient(135deg, #0a1628 0%, #0d2040 50%, #0a1628 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.venue-img-placeholder::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(0deg, rgba(0,60,120,0.3), transparent);
}

.venue-details { display: flex; flex-direction: column; gap: 1.5rem; }

.venue-stat {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.venue-stat:last-child { border-bottom: none; padding-bottom: 0; }

.venue-stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.venue-stat-value {
    font-size: 1rem;
    font-weight: 500;
}

/* TICKETS */
.tickets { background: var(--surface); text-align: center; }
.tickets-inner { max-width: 800px; margin: 0 auto; }

.ticket-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.ticket-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    transition: border-color 0.2s;
}

.ticket-card:hover { border-color: rgba(229,57,53,0.4); }
.ticket-card.featured { border-color: var(--red); }

.ticket-type {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.ticket-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ticket-price span {
    font-size: 1.5rem;
    vertical-align: super;
}

.ticket-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.ticket-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ticket-features li {
    font-size: 0.85rem;
    color: var(--muted);
    padding-left: 1rem;
    position: relative;
}

.ticket-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
}

/* Sponsors */
.sponsors { background: var(--surface); }
.sponsors-inner { max-width: 1000px; margin: 0 auto; }

.sponsor-media {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sponsor-logos-wrapper {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    gap: 2rem; 
}

.sponsor-logo {
    max-width: 300px;
    width: 25%;
}

/* FOOTER */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.footer-sub {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
}

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

.footer-links a {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
}

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

.footer-copy {
    font-size: 0.75rem;
    color: #444;
}

@media (max-width: 700px) {
    nav { padding: 1rem 1.25rem; }
    .nav-links { display: none; }
    .venue-inner { grid-template-columns: 1fr; }
    .btn-outline { display: none; }
}