/* =======================================
   SHARED SITE CSS

   EDIT THIS FILE TO CHANGE:
   - logo size
   - header height
   - menu styling
   - homepage layout
   - YouTube page
   - TikTok page
   - Facebook page
   - Stream page
   - Bio page
   - Contact page
   - Footer promo banner
======================================= */

:root {
    --header-height: 163px;
    --logo-max-height: 158px;
    --page-bg: #000;
    --text-main: #ffffff;
    --text-muted: #bdbdbd;
    --line-soft: rgba(255,255,255,0.08);
    --card-bg: #0a0a0a;
    --card-bg-hover: #111111;
    --hero-gap: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text-main);
    font-family: Arial, sans-serif;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 10px);
}

/* =======================================
   HEADER
======================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px 10px;

    background: #000; /* ← THIS is the key fix */
    border-bottom: 1px solid #1f1f1f;

    z-index: 1000;
}

.header-logo-link {
    display: inline-block;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.header-logo-img {
    display: block;
    width: auto;
    max-width: 99vw;
    max-height: var(--logo-max-height);
    height: auto;

    transition: none;

    filter: none; /* ← removes floating glow */
}


/* =======================================
   MENU
======================================= */

.menu {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1100;
}

.menu button {
    background: rgba(0,0,0,0.88);
    color: white;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 9px 14px;
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: #0d0d0d;
    border: 1px solid #222;
    min-width: 190px;
    text-align: left;
}

.dropdown a {
    display: block;
    padding: 12px;
    color: white;
    text-decoration: none;
}

.dropdown a:hover {
    background: #1a1a1a;
}

.menu:hover .dropdown {
    display: block;
}

/* =======================================
   PAGE CONTENT
======================================= */

.page-content {
    margin-top: calc(var(--header-height) + var(--hero-gap));
}

/* =======================================
   HERO
======================================= */

.hero-home {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.72)),
        url('img/before.jpeg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* =======================================
   FOOTER LINKS
======================================= */

.home-links-section {
    padding: 28px 20px 40px;
    background: #050505;
    border-top: 1px solid #111;
}

.home-links-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-link-card {
    background: linear-gradient(to bottom, var(--card-bg), #080808);
    border: 1px solid #1c1c1c;
    padding: 22px;
    text-decoration: none;
    color: white;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: 0.2s ease;
}

.home-link-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-2px);
}

.home-link-number {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #787878;
    margin-bottom: 18px;
}

.home-link-card h2 {
    margin: 0 0 14px 0;
    font-size: 28px;
    line-height: 1.05;
}

.home-link-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* =======================================
   GENERIC PAGE
======================================= */

.page-section {
    padding: 72px 22px;
}

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

.section-kicker {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8d8d8d;
    margin-bottom: 10px;
}

.section-title {
    font-size: 34px;
    margin: 0 0 24px 0;
}

.centered-title {
    text-align: center;
}

/* =======================================
   YOUTUBE PAGE
======================================= */

.youtube-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: #0c0c0c;
    border: 1px solid #1c1c1c;
    padding: 18px;
    text-align: center;
}

.video-card-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.15;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =======================================
   TIKTOK PAGE
======================================= */

.tiktok-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.tiktok-featured {
    margin-bottom: 60px;
    text-align: center;
}

.tiktok-featured-title {
    margin: 0 0 20px 0;
    font-size: 28px;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.tiktok-card {
    background: #0c0c0c;
    border: 1px solid #1c1c1c;
    padding: 18px;
    text-align: center;
}

.tiktok-card-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.15;
}

.tiktok-card .tiktok-embed {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 280px !important;
    margin: 0 auto !important;
}

/* =======================================
   FACEBOOK PAGE
======================================= */

.facebook-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.facebook-featured-title {
    margin: 0 0 20px 0;
    font-size: 28px;
}

.facebook-featured-text {
    margin-top: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.facebook-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto 60px auto;
}

.facebook-feature-card {
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}

.facebook-feature-card iframe {
    width: 100%;
    height: 650px;
    max-width: 100%;
    background: #fff;
}

.featured-main {
    position: relative;
    padding: 20px;
    border: 1px solid #2a2a2a;
    background: linear-gradient(to bottom, #0d0d0d, #080808);
    box-shadow: 0 0 25px rgba(255,255,255,0.06);
}

.featured-main:hover {
    box-shadow: 0 0 35px rgba(255,255,255,0.12);
    transform: translateY(-2px);
    transition: 0.2s ease;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ffffff;
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 4px 10px;
    font-weight: bold;
}

.facebook-latest {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.facebook-latest iframe {
    max-width: 100%;
    background: #fff;
}

/* =======================================
   STREAM PAGE
======================================= */

.stream-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.stream-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px auto;
    align-items: center;
}

.stream-hero-left {
    text-align: left;
}

.stream-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    background: #fff;
    color: #000;
}

.stream-hero-title {
    margin: 0 0 16px 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95;
}

.stream-hero-text {
    margin: 0 0 24px 0;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
}

.stream-main-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stream-main-btn {
    display: inline-block;
    padding: 14px 22px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
}

.stream-main-btn:hover {
    background: rgba(255,255,255,0.10);
}

.stream-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stream-art {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
}

.stream-art img {
    display: block;
    width: 320px;
    height: 320px;
    object-fit: cover;
    border: 1px solid #1c1c1c;
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.stream-card {
    background: #0c0c0c;
    border: 1px solid #1c1c1c;
    padding: 22px;
    text-align: left;
}

.stream-card-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.15;
}

.stream-card-text {
    margin: 0 0 16px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.stream-card-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 3px;
}

/* =======================================
   BIO PAGE
======================================= */

.bio-page-inner {
    max-width: 900px;
    margin: 0 auto;
}

.bio-content {
    text-align: left;
}

.bio-lead {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: white;
}

.bio-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 17px;
}

.bio-subtitle {
    margin: 50px 0 16px 0;
    font-size: 26px;
}

.bio-close {
    margin-top: 40px;
    font-size: 20px;
    color: white;
}

/* =======================================
   CONTACT PAGE
======================================= */

.contact-page-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    text-align: left;
}

.contact-lead {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.contact-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-box {
    margin: 40px 0;
    padding: 20px;
    border: 1px solid #1c1c1c;
    background: #0c0c0c;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.contact-email {
    font-size: 20px;
    color: white;
}

.contact-link {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    width: fit-content;
}

.contact-link:hover {
    border-color: white;
}

.contact-footer {
    margin-top: 40px;
    font-size: 16px;
    color: var(--text-muted);
}

/* =======================================
   FOOTER IMAGE PROMO BANNER
======================================= */

.footer-promo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.footer-promo-link {
    display: block;
}

.footer-promo-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.25s ease;
}

.footer-promo-img:hover {
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.35);
}

/* =======================================
   SOCIAL PAGE
======================================= */

.social-page-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.social-intro {
    max-width: 760px;
    margin: 0 auto 34px auto;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 18px;
    text-align: center;
}

.social-hero-banner {
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.social-hero-banner-inner {
    border: 1px solid #1f1f1f;
    background: linear-gradient(to right, #101010, #060606);
    padding: 38px 28px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255,255,255,0.04);
}

.social-hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    background: #fff;
    color: #000;
}

.social-hero-title {
    margin: 0 0 14px 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.95;
}

.social-hero-text {
    margin: 0 0 22px 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 17px;
}

.social-hero-button {
    display: inline-block;
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.04);
    transition: 0.2s ease;
}

.social-hero-button:hover {
    background: rgba(255,255,255,0.12);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.social-card {
    text-decoration: none;
    color: white;
}

.social-card-inner {
    min-height: 240px;
    border: 1px solid #1c1c1c;
    background: linear-gradient(to bottom, #0d0d0d, #070707);
    padding: 28px 24px;
    text-align: left;
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-card-inner:hover {
    transform: translateY(-4px);
    border-color: #343434;
    box-shadow: 0 0 25px rgba(255,255,255,0.05);
}

.social-card-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8d8d8d;
    margin-bottom: 16px;
}

.social-card h2 {
    margin: 0 0 14px 0;
    font-size: 30px;
    line-height: 1.05;
}

.social-card p {
    margin: 0 0 18px 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.social-card-cta {
    display: inline-block;
    color: white;
    font-size: 15px;
}

.social-facebook .social-card-inner {
    background: linear-gradient(to bottom, #10131a, #07090d);
}

.social-tiktok .social-card-inner {
    background: linear-gradient(to bottom, #111111, #070707);
}

.social-youtube .social-card-inner {
    background: linear-gradient(to bottom, #170b0b, #080606);
}

.social-stream .social-card-inner {
    background: linear-gradient(to bottom, #0d1410, #060806);
}

/* =======================================
   SPOTIFY EMBED
======================================= */

.spotify-section {
    margin: 40px auto 60px auto;
    padding: 0 20px;
    text-align: center;
}

.spotify-player {
    max-width: 600px;
    margin: 0 auto;
}

.spotify-title {
    font-size: 28px;
    margin: 10px 0 20px 0;
}

.homepage-spotify {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* =======================================
   HOMEPAGE SPOTIFY (FLUSH)
======================================= */

.homepage-player {
    width: 100%;
    margin: 0;
    padding: 0;
}

.homepage-player iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

/* =======================================
   UPDATES PAGE
======================================= */

.updates-page-inner {
    max-width: 860px;
    margin: 0 auto;
}

.updates-intro {
    max-width: 760px;
    margin: 0 auto 28px auto;
    text-align: center;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 18px;
}

.updates-subtle-note {
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.updates-links {
    text-align: center;
    margin-bottom: 34px;
    color: var(--text-muted);
}

.updates-links a {
    color: white;
    text-decoration: none;
}

.updates-links span {
    margin: 0 10px;
    color: var(--text-muted);
}

.updates-feed {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.update-post {
    background: linear-gradient(to bottom, #0e0e0e, #070707);
    border: 1px solid #1f1f1f;
    padding: 24px;
    box-shadow: 0 0 20px rgba(255,255,255,0.03);
    transition: 0.2s ease;
}

.update-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255,255,255,0.05);
    border-color: #2a2a2a;
}

.update-post-featured {
    position: relative;
    border-color: rgba(255,255,255,0.18);
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        linear-gradient(to bottom, #101010, #070707);
    box-shadow: 0 0 30px rgba(255,255,255,0.05);
}

.update-pin {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #fff;
    color: #000;
    font-weight: bold;
}

.update-post-short .update-body p {
    font-size: 19px;
    line-height: 1.7;
}

.update-fade-in {
    animation: updateFadeIn 0.45s ease both;
}

@keyframes updateFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.update-post-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.update-avatar {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: linear-gradient(to bottom, #111, #080808);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
    transition: 0.2s ease;
    flex-shrink: 0;
}

.update-avatar img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.25));
    transition: 0.2s ease;
}

.update-post:hover .update-avatar {
    box-shadow: 0 0 18px rgba(255,255,255,0.12);
    transform: scale(1.05);
}

.update-post:hover .update-avatar img {
    transform: scale(1.08);
}

.update-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.update-author-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-author {
    font-size: 16px;
    color: white;
    font-weight: bold;
    line-height: 1;
}

.artist-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
}

.update-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7d7d7d;
    line-height: 1;
}

.update-body p {
    margin: 0 0 14px 0;
    color: white;
    line-height: 1.8;
    font-size: 17px;
}

.update-body p:last-child {
    margin-bottom: 0;
}

.update-image-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.update-image {
    width: 100%;
    max-width: 380px !important;
    height: auto !important;
    display: block;
    border: 1px solid #1c1c1c;
    object-fit: cover;
}

.update-hidden {
    display: none;
}

.update-show {
    display: block;
    animation: updateFadeIn 0.45s ease both;
}

.updates-loader,
.updates-end {
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
    margin-top: 24px;
}

.updates-loader {
    display: none;
}

.updates-end {
    display: none;
}

.updates-sentinel {
    height: 20px;
}

.update-listen-link {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    transition: 0.2s ease;
}

.update-listen-link:hover {
    background: rgba(255,255,255,0.10);
}

/* =======================================
   FOOTER UPGRADE (SUBNAV + BRAND + CTA)
======================================= */

.footer-subnav {
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.footer-subnav a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-subnav a:hover {
    color: white;
}

.footer-subnav span {
    color: #555;
}

.footer-brand-line {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #888;
}

.footer-cta {
    text-align: center;
    margin-top: 14px;
}

.footer-cta a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
}

.footer-cta a:hover {
    border-color: white;
}

/* =======================================
   MOBILE
======================================= */

@media (max-width: 1100px) {
    .stream-hero {
        grid-template-columns: 1fr;
    }

    .stream-hero-left {
        text-align: center;
    }

    .stream-main-buttons {
        justify-content: center;
    }

    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .home-links-grid,
    .video-grid,
    .tiktok-grid,
    .facebook-feature-grid,
    .stream-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-hero-banner-inner {
        padding: 30px 20px;
    }

    .social-card h2 {
        font-size: 26px;
    }
}

@media (max-width: 700px) {
    .header {
        height: var(--header-height);
    }

    .header-logo-img {
        max-height: var(--logo-max-height);
    }

    .menu {
        top: 14px;
        right: 14px;
    }

    .page-content {
        margin-top: calc(var(--header-height) + var(--hero-gap));
    }

    .update-post {
        padding: 20px;
    }

    .update-body p,
    .update-post-short .update-body p {
        font-size: 16px;
    }

    .update-image {
        max-width: 100% !important;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 47px;
        --logo-max-height: 46px;
        --hero-gap: 20px;
    }

    .home-top-title {
        margin: 8px 0 10px 0;
    }

    .hero-home {
        min-height: 60vh;
        background-size: contain;
        background-position: top center;
    }

    .desktop-only {
        display: none !important;
    }

    .stream-art {
        width: 260px;
        min-width: 260px;
        max-width: 260px;
    }

    .stream-art img {
        width: 260px;
        height: 260px;
    }

    .menu {
        top: 12px;
        right: 12px;
    }

    .menu button {
        padding: 8px 12px;
        font-size: 17px;
    }

    .dropdown {
        min-width: 180px;
    }
}