/* ==============================
   BASE LAYOUT
================================ */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #000;
    color: gold;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* If you later add a black_silk.jpg, this will use it */
body.theme-black {
    background: #000;
    background-image: url("assets/black_silk.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Headings */
.section-title {
    font-size: 26px;
    margin: 30px 0 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* ==============================
   HERO / LOGO
================================ */

.hero {
    padding: 30px 20px 20px;
}

.hero-logo {
    width: clamp(260px, 40vw, 380px); /* BIG logo, responsive */
    height: auto;
    display: block;
    margin: 0 auto 15px;
    filter: drop-shadow(0 0 18px rgba(0, 0, 0, 0.9));
}

.hero-title {
    margin: 5px 0 0;
    font-size: 24px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 14px;
    margin: 5px 0 20px;
    color: #f5e2a5;
}

/* NAVIGATION */

.main-nav {
    margin-top: 10px;
}

.nav-link {
    color: gold;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
    border-bottom-color: gold;
}

/* ==============================
   GLASS PANEL UTILITY
================================ */

.glass-panel {
    background: linear-gradient(145deg, rgba(20,20,20,0.95), rgba(60,60,60,0.95));
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.8);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.9),
        0 0 18px rgba(255, 215, 0, 0.55);
    padding: 12px;
}

/* ==============================
   MEDIA SECTIONS (SPOTIFY + YT)
================================ */

.media-feature {
    max-width: 960px;
    margin: 0 auto 30px;
    padding: 0 16px;
}

.spotify-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

/* YouTube video – smaller, 16:9 box */

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==============================
   SOCIAL BUTTONS – BLACK & GOLD
================================ */

.social-hub {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 16px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.rt-button {
    background: radial-gradient(circle at top, #444, #111);
    color: gold;
    padding: 10px 26px;
    border-radius: 999px;
    border: 1px solid gold;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    box-shadow:
        0 5px 16px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(255, 215, 0, 0.5);
    transition: 0.25s ease;
}

.rt-button:hover {
    background: radial-gradient(circle at top, #666, #222);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.95),
        0 0 16px rgba(255, 215, 0, 0.85);
    transform: translateY(-2px);
}

/* ==============================
   SERIES GRID – IMAGE TILES ONLY
================================ */

.series-section {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 16px;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.series-card {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(15,15,15,0.98), rgba(55,55,55,0.98));
    border: 1px solid rgba(255, 215, 0, 0.8);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.95),
        0 0 16px rgba(255, 215, 0, 0.6);
    transition: 0.25s ease;
}

.series-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.98),
        0 0 20px rgba(255, 215, 0, 0.9);
}

.series-img {
    width: 120px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==============================
   FOOTER
================================ */

.site-footer {
    padding: 18px 10px 24px;
    font-size: 13px;
    color: #f5e2a5;
    background: #000;
    border-top: 1px solid rgba(255, 215, 0, 0.6);
}

/* ==============================
   MOBILE TWEAKS
================================ */

@media (max-width: 768px) {

    .hero {
        padding-top: 24px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 13px;
        padding: 0 16px;
    }

    .nav-link {
        display: inline-block;
        margin: 0 6px;
        font-size: 12px;
    }

    .spotify-wrapper,
    .video-container {
        max-width: 100%;
    }

    .series-section {
        margin-bottom: 30px;
    }
}
/* RedTalk episode archive */

.episode-archive {
    max-width: 1100px;
    margin: 0 auto 40px;
    padding: 0 16px;
}

.episode-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.episode-card {
    text-align: left;
}

.episode-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 16px;
    color: #f5e2a5;
}

.episode-link {
    margin-top: 10px;
    display: inline-block;
    font-size: 13px;
}

