@font-face {
    font-family: 'Moms Typewriter';
    src: url('../assets/fonts/moms-typewriter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --bg: #0A0A0A;
    --bg-card: #111111;
    --text: #F5F5F5;
    --text-dim: #8A8A8A;
    --accent: #FFEB3B;
    --accent-hover: #FFD700;
    --font-heading: 'Moms Typewriter', 'Courier New', monospace;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--accent-hover);
}

/* ─── CONTENT ABOVE PARTICLE CANVASES ─── */
nav, .hero, .section, footer {
    position: relative;
    z-index: 1;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--text-dim);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--text);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.4) 40%,
        rgba(10, 10, 10, 0.1) 70%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem 4rem;
    max-width: 700px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    color: var(--text);
    text-transform: lowercase;
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.streaming-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stream-btn {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    transition: all 0.25s;
}
.stream-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}
.stream-btn:hover {
    color: var(--accent-hover);
    transform: translateY(-3px) scale(1.1);
}

/* ─── SECTIONS ─── */
.section {
    padding: 5rem 2rem;
}

.section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-transform: lowercase;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── MUSIC ─── */
.embeds {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.embed-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.embed-wrapper iframe {
    border-radius: 12px;
    width: 100%;
}

/* ─── ABOUT ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.about-text p {
    color: var(--text-dim);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-image {
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ─── CONNECT ─── */
.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.25s;
}
.social-link:hover {
    color: var(--accent-hover);
    transform: translateY(-3px) scale(1.1);
}
.social-link svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* ─── FOOTER ─── */
footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: lowercase;
    border: 2px solid var(--accent);
    border-radius: 0;
    transition: all 0.25s;
    margin-bottom: 1.5rem;
}
.footer-shop:hover {
    background: transparent;
    color: var(--accent);
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1.25rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .hero-content {
        padding: 2rem 1.25rem 3rem;
    }
    .section {
        padding: 3.5rem 1.25rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        max-width: 300px;
    }
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section {
        padding: 2.5rem 1rem;
    }
    .streaming-buttons {
        gap: 1.25rem;
    }
    .social-grid {
        grid-template-columns: 1fr;
    }
}
