/* ============================================
   BASE STYLES - Flynn Adamson Website
   Variables, Reset, Typography, Shared Utilities
   ============================================ */

:root {
    --black: #0A0A0A;
    --white: #FFFEF5;
    --acid: #CDFF00;
    --honey: #FFB800;
    --blush: #FF6B6B;
    --ocean: #00D4FF;
    --violet: #A855F7;

    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    --font-sans: 'Syne', sans-serif;
    --font-mono: 'Anybody', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Section Headers (shared across pages) */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 0.9;
}

.section-title .small {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.3em;
    display: block;
    color: var(--honey);
}

.section-count {
    font-family: var(--font-mono);
    font-weight: 100;
    font-size: 5rem;
    color: var(--acid);
    line-height: 1;
}

/* Stream / CTA Buttons */
.stream-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stream-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 245, 0.2);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stream-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--acid);
    transition: left 0.3s ease;
    z-index: -1;
}

.stream-btn:hover {
    border-color: var(--acid);
    color: var(--black);
}

.stream-btn:hover::before {
    left: 0;
}

.stream-btn svg {
    width: 20px;
    height: 20px;
}

/* Page Hero Banner (shared across inner pages) */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 12rem);
    line-height: 0.85;
}

.page-hero-title .accent {
    color: var(--acid);
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.page-hero-title .stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.page-hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 100;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    color: rgba(255, 255, 245, 0.5);
}

/* Label Style (reused across pages) */
.label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 100;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--acid);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}
