/* =============================================================================
   SKUZLAND — main.css
   Brand: hot magenta (#fb00d6) + highlighter yellow (#d8f100). Loud, punk, clean.
   ========================================================================== */

:root {
    --magenta: #fb00d6;
    --magenta-deep: #d000b0;   /* alt-section background */
    --magenta-ink: #2a0023;    /* near-black magenta, for footers/frames */
    --yellow: #d8f100;
    --yellow-bright: #e6ff1a;
    --ink: #1c0017;            /* text on yellow */
    --white: #ffffff;

    --maxw: 1120px;
    --nav-h: 64px;
    --font-body: 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    --font-display: 'Archivo Black', 'Archivo', system-ui, sans-serif;
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
    font-family: var(--font-body);
    background: var(--magenta);
    color: var(--yellow);
    line-height: 1.5;
    max-width: 100%;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--yellow); color: var(--magenta); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* =============================================================================
   NAV
   ========================================================================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--nav-h);
    background: color-mix(in srgb, var(--magenta) 82%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--yellow);
}
.nav-inner {
    height: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    color: var(--yellow);
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    padding: 8px 12px;
    border-radius: 999px;
    transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
    background: var(--yellow);
    color: var(--magenta);
}
.nav-links .nav-cta:hover { background: var(--white); color: var(--magenta); }

/* =============================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: calc(100svh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px 96px;
    background:
        radial-gradient(120% 80% at 50% 0%, color-mix(in srgb, var(--magenta) 80%, #fff 0%) 0%, var(--magenta) 60%);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.hero-logo {
    width: min(820px, 80vw);
    height: auto;
    filter: drop-shadow(0 8px 0 rgba(0,0,0,.12));
    animation: pop .6s cubic-bezier(.2,.9,.3,1.3) both;
}
@keyframes pop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.hero-flag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-flag-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4.6vw, 2.6rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.hero-flag-tag {
    font-family: var(--font-display);
    font-size: clamp(.8rem, 2vw, 1rem);
    background: var(--yellow);
    color: var(--magenta);
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.12em;
    transform: rotate(-3deg);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
    position: absolute;
    bottom: 22px; left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--yellow);
    animation: bob 1.6s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* =============================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 999px;
    border: 3px solid var(--yellow);
    transition: transform .12s ease, background .15s, color .15s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--solid { background: var(--yellow); color: var(--magenta); }
.btn--solid:hover { background: var(--white); border-color: var(--white); }
.btn--ghost { background: transparent; color: var(--yellow); }
.btn--ghost:hover { background: var(--yellow); color: var(--magenta); }

/* =============================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 84px 0; scroll-margin-top: var(--nav-h); }
.section--alt { background: var(--magenta-deep); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 36px;
}
.section-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 8px;
    margin-top: 16px;
    background: var(--yellow);
    border-radius: 4px;
}

/* =============================================================================
   VIDEOS
   ========================================================================== */
.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 3px solid var(--yellow);
    border-radius: 14px;
    overflow: hidden;
}
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-feature { margin-bottom: 28px; }
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.video-meta h3 {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    text-transform: uppercase;
}
.video-kind {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: .85;
    margin-top: 4px;
}
.video-link {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: color .15s, border-color .15s;
}
.video-link:hover { color: var(--white); border-color: var(--white); }

/* =============================================================================
   MUSIC
   ========================================================================== */
.music-embed {
    border: 3px solid var(--yellow);
    border-radius: 14px;
    overflow: hidden;
    background: var(--magenta-ink);
}
.music-embed iframe { display: block; border: 0; }
.music-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* =============================================================================
   FOLLOW
   ========================================================================== */
.follow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.follow-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 36px 16px;
    background: var(--yellow);
    color: var(--magenta);
    border: 3px solid var(--yellow);
    border-radius: 16px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform .14s ease, background .15s, color .15s;
}
.follow-btn svg { width: 42px; height: 42px; fill: currentColor; }
.follow-btn:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-4px);
}

/* =============================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--magenta-ink);
    border-top: 2px solid var(--yellow);
    padding: 48px 24px;
}
.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.06em; }
.footer-social { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-social a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    transition: color .15s;
}
.footer-social a:hover { color: var(--white); }
.footer-copy { font-size: 0.82rem; opacity: .85; letter-spacing: 0.04em; }

/* =============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 720px) {
    .video-grid { grid-template-columns: 1fr; gap: 24px; }
    .follow-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 60px 0; }
    .video-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
    .video-link { white-space: normal; }
    .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .nav-brand { font-size: 1.05rem; }
    .nav-links { gap: 2px; }
    .nav-links a { padding: 8px 8px; font-size: 0.72rem; letter-spacing: 0.04em; }
    .btn { padding: 12px 22px; font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-logo, .hero-scroll { animation: none; }
    * { transition: none !important; }
}

/* =============================================================================
   NAV — mobile hamburger toggle
   ========================================================================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--yellow); border-radius: 3px; }
.nav-links a.active { color: var(--white); }

/* =============================================================================
   PAGE HERO (About / Tour headers)
   ========================================================================== */
.page-hero {
    padding: 64px 0 28px;
    border-bottom: 2px solid var(--yellow);
    background: radial-gradient(120% 130% at 50% 0%, color-mix(in srgb, var(--magenta) 78%, #fff 0%) 0%, var(--magenta) 55%);
}
.eyebrow { font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.8rem; margin-bottom: 10px; }
.page-title { font-family: var(--font-display); font-size: clamp(3rem, 12vw, 7rem); line-height: .9; text-transform: uppercase; }

/* =============================================================================
   ABOUT
   ========================================================================== */
.about-wrap { max-width: 820px; }
.about-lead { font-family: var(--font-display); font-size: clamp(1.4rem, 3.4vw, 2.05rem); line-height: 1.2; margin-bottom: 26px; }
.about-p { font-size: 1.1rem; margin-bottom: 18px; max-width: 70ch; }
.singles { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 30px; }
.singles-label { font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; opacity: .85; margin-right: 6px; }
.chip { border: 2px solid var(--yellow); border-radius: 999px; padding: 6px 14px; font-weight: 700; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.04em; }
.members { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.member { border: 3px solid var(--yellow); border-radius: 16px; padding: 28px; background: color-mix(in srgb, var(--magenta-ink) 32%, transparent); }
.member h3 { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; }
.member-role { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; opacity: .85; margin: 4px 0 14px; }

/* =============================================================================
   TOUR
   ========================================================================== */
.shows { list-style: none; }
.show { display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 20px; padding: 22px 4px; border-bottom: 2px solid color-mix(in srgb, var(--yellow) 45%, transparent); }
.show:first-child { border-top: 2px solid color-mix(in srgb, var(--yellow) 45%, transparent); }
.show-date { display: flex; flex-direction: column; line-height: 1; }
.show-mon { font-family: var(--font-display); font-size: 1.1rem; }
.show-day { font-family: var(--font-display); font-size: 2.4rem; }
.show-year { font-size: 0.8rem; opacity: .8; margin-top: 2px; }
.show-city { font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.7rem); text-transform: uppercase; }
.show-venue { opacity: .9; margin-top: 2px; }
.show-cta { display: flex; align-items: center; gap: 14px; }
.show-status { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; font-weight: 700; opacity: .85; }
.show-status.soldout { opacity: .6; }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; }
.tour-empty { text-align: center; padding: 40px 0; }
.tour-empty p { margin: 12px 0 24px; font-size: 1.1rem; }

/* =============================================================================
   RESPONSIVE — mobile nav + pages
   ========================================================================== */
@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute; top: var(--nav-h); left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--magenta); border-bottom: 2px solid var(--yellow);
        padding: 8px 16px 16px; display: none; z-index: 60;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 8px; font-size: 1rem; border-radius: 10px; }
    .nav-links .nav-cta { text-align: center; margin-top: 6px; }
    .members { grid-template-columns: 1fr; }
    .show { grid-template-columns: 78px 1fr; grid-template-areas: "date info" "date cta"; row-gap: 10px; column-gap: 16px; }
    .show-date { grid-area: date; align-self: start; }
    .show-info { grid-area: info; }
    .show-cta { grid-area: cta; justify-content: flex-start; }
    .show-day { font-size: 2rem; }
}
