@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --coral: #FF6B6B;
    --teal: #4ECDC4;
    --yellow: #FFE66D;
    --purple: #A855F7;
    --lime: #A3E635;
    --pink: #F472B6;
    --orange: #FB923C;
    --blue: #3B82F6;
    --black: #1a1a1a;
    --white: #FFFFFF;
    --bg: #F5F0E8;
    --border: 3px solid var(--black);
    --shadow: 4px 4px 0px var(--black);
    --shadow-sm: 3px 3px 0px var(--black);
    --shadow-hover: 1px 1px 0px var(--black);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--yellow);
    border-bottom: var(--border);
    padding: 10px 0;
    transition: padding 0.3s;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    background: var(--black);
    color: var(--yellow);
    padding: 5px 12px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.75rem;
    text-decoration: none;
    color: var(--black);
    padding: 5px 10px;
    border: 2px solid var(--black);
    background: var(--white);
    box-shadow: 2px 2px 0px var(--black);
    transition: all 0.15s;
    text-transform: uppercase;
}

.nav-links a:hover {
    transform: translate(2px, 2px);
    box-shadow: none;
    background: var(--coral);
    color: var(--white);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral);
    border-bottom: var(--border);
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-deco-1 {
    position: absolute;
    top: 40px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: var(--yellow);
    border: var(--border);
    border-radius: 50%;
    opacity: 0.6;
}

.hero-deco-2 {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: var(--teal);
    border: var(--border);
    transform: rotate(15deg);
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--black);
    color: var(--yellow);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 16px;
    border: var(--border);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transform: rotate(-2deg);
}

.hero h1 {
    font-size: clamp(2.8rem, 9vw, 6.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: var(--white);
    text-shadow: 5px 5px 0px var(--black);
}

.hero h1 span {
    display: block;
    color: var(--yellow);
    text-shadow: 4px 4px 0px var(--black);
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--white);
    color: var(--black);
    padding: 10px 24px;
    display: inline-block;
    border: var(--border);
    box-shadow: var(--shadow);
    margin-top: 16px;
}

.hero-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-pill {
    background: var(--yellow);
    color: var(--black);
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    border: var(--border);
    box-shadow: var(--shadow-sm);
}

/* ===== SECTION COMMON ===== */
section {
    padding: 70px 0;
    border-bottom: var(--border);
}

.sec-head {
    text-align: center;
    margin-bottom: 40px;
}

.sec-label {
    display: inline-block;
    padding: 4px 14px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: var(--border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
}

.sec-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.sec-sub {
    font-size: 1rem;
    max-width: 600px;
    margin: 12px auto 0;
    color: #555;
    font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    padding: 28px;
    border: var(--border);
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.about-card:hover {
    transform: translate(3px, 3px);
    box-shadow: var(--shadow-hover);
}

.about-card.c1 {
    background: var(--yellow);
}

.about-card.c2 {
    background: var(--teal);
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ===== CONCEPT ===== */
.concept {
    background: var(--purple);
    color: var(--white);
}

.concept .sec-label {
    background: var(--yellow);
    color: var(--black);
}

.concept-body {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.75;
}

.concept-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.concept-tag {
    padding: 8px 18px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    border: 3px solid var(--white);
    transition: all 0.2s;
}

.concept-tag:hover {
    transform: translate(2px, 2px);
}

.ct1 {
    background: var(--coral);
}

.ct2 {
    background: var(--teal);
    color: var(--black);
}

.ct3 {
    background: var(--yellow);
    color: var(--black);
}

.ct4 {
    background: var(--lime);
    color: var(--black);
}

/* ===== EVENT INFO ===== */
.ev-info {
    background: var(--lime);
}

.ev-info .sec-label {
    background: var(--black);
    color: var(--lime);
}

.ev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ev-card {
    background: var(--white);
    padding: 24px 16px;
    border: var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.2s;
}

.ev-card:hover {
    transform: translate(3px, 3px);
    box-shadow: var(--shadow-hover);
}

.ev-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.ev-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 4px;
}

.ev-val {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

/* ===== STAGE ===== */
.stage {
    background: var(--black);
    color: var(--white);
}

.stage .sec-label {
    background: var(--coral);
    color: var(--white);
}

.stage .sec-title {
    color: var(--white);
}

.stage .sec-sub {
    color: #999;
}

.stage-frame {
    margin-top: 30px;
    border: 3px solid var(--yellow);
    box-shadow: 6px 6px 0px var(--yellow);
    background: #0a0a12;
    overflow: hidden;
}

.stage-frame svg {
    display: block;
    width: 100%;
    height: auto;
}

.stage-keys {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}

.stage-key {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ccc;
}

.stage-dot {
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
}

/* ===== LINEUP ===== */
.lineup {
    background: var(--coral);
}

.lineup .sec-label {
    background: var(--black);
    color: var(--yellow);
}

.lineup-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.band-card {
    background: var(--white);
    padding: 32px 20px;
    border: var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.band-card:hover {
    transform: translate(3px, 3px);
    box-shadow: var(--shadow-hover);
}

.band-num {
    position: absolute;
    top: -8px;
    left: 4px;
    font-size: 4.5rem;
    font-weight: 900;
    opacity: 0.06;
    font-family: 'Space Grotesk', sans-serif;
}

.band-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.band-genre {
    display: inline-block;
    padding: 3px 12px;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    border: 2px solid var(--black);
}

.bg1 {
    background: var(--yellow);
}

.bg2 {
    background: var(--teal);
}

.bg3 {
    background: var(--purple);
    color: var(--white);
}

/* ===== PACKAGES ===== */
.packages {
    background: var(--white);
}

.packages .sec-label {
    background: var(--teal);
}

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pkg-card {
    border: var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translate(3px, 3px);
    box-shadow: var(--shadow-hover);
}

.pkg-head {
    padding: 18px 20px;
    border-bottom: var(--border);
}

.pkg-tier {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.pkg-name {
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
}

.pkg-price {
    padding: 12px 20px;
    font-size: 1.2rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--black);
    color: var(--white);
    border-bottom: var(--border);
}

.pkg-list {
    padding: 16px 20px;
    list-style: none;
    flex: 1;
    background: var(--white);
}

.pkg-list li {
    padding: 6px 0;
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 1px dashed #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-list li::before {
    content: '✦';
    color: var(--coral);
    font-size: 0.8rem;
}

.pkg-list li:last-child {
    border-bottom: none;
}

.ph-yellow {
    background: var(--yellow);
}

.ph-teal {
    background: var(--teal);
}

.ph-coral {
    background: var(--coral);
    color: var(--white);
}

.ph-purple {
    background: var(--purple);
    color: var(--white);
}

.ph-lime {
    background: var(--lime);
}

/* Alt packages row */
.pkg-alt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

/* ===== SPONSOR ADS ===== */
.ads {
    background: var(--teal);
}

.ads .sec-label {
    background: var(--black);
    color: var(--teal);
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ad-card {
    background: var(--white);
    border: var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.2s;
}

.ad-card:hover {
    transform: translate(3px, 3px);
    box-shadow: var(--shadow-hover);
}

.ad-vis {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: var(--border);
    text-align: center;
    padding: 16px;
}

.ad-vis-inner {
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
}

.ad-body {
    padding: 16px;
}

.ad-body h4 {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ad-body p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
}

.ad-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid var(--black);
    margin-top: 8px;
}

.av-led {
    background: linear-gradient(135deg, #0f0c29, #1a1a3e);
    color: var(--teal);
}

.av-banner {
    background: var(--yellow);
}

.av-photo {
    background: var(--pink);
    color: var(--white);
}

.av-booth {
    background: var(--lime);
}

.av-gate {
    background: var(--purple);
    color: var(--white);
}

.av-shirt {
    background: var(--coral);
    color: var(--white);
}

/* ===== LOGO MAP ===== */
.logomap {
    background: var(--yellow);
}

.logomap .sec-label {
    background: var(--purple);
    color: var(--white);
}

.map-box {
    border: var(--border);
    box-shadow: var(--shadow);
    background: var(--white);
    padding: 30px;
    margin-top: 16px;
}

.map-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.map-row:last-child {
    margin-bottom: 0;
}

.map-slot {
    flex: 1;
    border: 2px dashed var(--black);
    padding: 18px 10px;
    text-align: center;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.map-slot:hover {
    transform: scale(1.03);
}

.ms-l {
    flex: 2;
    border: 3px solid var(--coral);
    background: rgba(255, 107, 107, 0.08);
    font-size: 0.85rem;
}

.ms-m {
    border: 3px solid var(--purple);
    background: rgba(168, 85, 247, 0.08);
}

.ms-s {
    border: 2px solid var(--teal);
    background: rgba(78, 205, 196, 0.08);
}

.map-icon {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 4px;
}

.map-note {
    font-size: 0.6rem;
    font-weight: 600;
    color: #888;
    margin-top: 3px;
    text-transform: none;
    letter-spacing: 0;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--black);
    color: var(--white);
}

.contact .sec-label {
    background: var(--yellow);
    color: var(--black);
}

.contact .sec-title {
    color: var(--white);
}

.contact .sec-sub {
    color: #999;
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ct-card {
    padding: 28px;
    border: 3px solid #444;
    box-shadow: 5px 5px 0px var(--yellow);
    transition: all 0.2s;
}

.ct-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0px var(--yellow);
}

.ct-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 14px;
}

.ct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-item:last-child {
    border-bottom: none;
}

.ct-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #555;
    font-size: 1rem;
    flex-shrink: 0;
}

.ct-name {
    font-weight: 700;
    font-size: 0.92rem;
}

.ct-detail {
    font-size: 0.82rem;
    opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--yellow);
    border-top: var(--border);
    padding: 24px 0;
    text-align: center;
}

.footer p {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== REVEAL ===== */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .pkg-alt-row {
        grid-template-columns: 1fr;
    }

    .ads-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .about-row,
    .ct-row,
    .lineup-row {
        grid-template-columns: 1fr;
    }

    .ev-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ads-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-pills {
        flex-direction: column;
        align-items: center;
    }

    .map-row {
        flex-direction: column;
    }
}