:root {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --accent-orange: #f97316;
    --accent-cyan: #06b6d4;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Bangers', system-ui;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #fff;
    border: 2px solid var(--accent-orange);
}

.btn-outline {
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--accent-cyan);
    color: #000;
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    /* Reduced from 80vh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)),
        url('https://images.unsplash.com/photo-1527267207156-318cd2809fb5?q=80&w=1920&auto=format&fit=crop');
    /* Placeholder bg */
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem 2rem 2rem;
    /* Adjusted padding */
}

.main-title {
    font-size: 4rem;
    color: var(--accent-cyan);
    text-shadow: 4px 4px 0px #000;
    margin-bottom: 0.5rem;
}

.main-logo {
    max-width: 80%;
    width: 500px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.tagline {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: rgba(15, 23, 42, 0.7);
    /* Dark slate shade */
    padding: 0.5rem 1rem;
    border-radius: 4px;
    width: fit-content;
    margin: 0 auto 2rem auto;
    /* Centers the block */
    backdrop-filter: blur(2px);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: #e2e8f0;
    /* Lighter text */
    line-height: 1.6;
    background-color: rgba(15, 23, 42, 0.85);
    /* Stronger shading */
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.next-show-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid var(--accent-cyan);
    text-decoration: none;
    /* Ensure no underline */
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.next-show-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.hidden {
    display: none;
}

.next-show-label {
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 10px;
}

/* Sections */
.section {
    padding: 2rem 2rem;
    /* Reduced from 4rem */
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-orange);
    text-align: center;
    border-bottom: 2px solid var(--accent-cyan);
    display: inline-block;
}

.mobile-break {
    display: inline;
}

/* Podcast Grid */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.more-episodes-container {
    text-align: center;
    margin-top: 1rem;
}

.btn-text-link {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.btn-text-link:hover {
    border-bottom-color: var(--accent-cyan);
    letter-spacing: 0.5px;
}

.podcast-card {
    background: #1e293b;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #334155;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.podcast-art img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #334155;
}

.podcast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.podcast-card:hover {
    border-color: var(--accent-cyan);
}

.podcast-date {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.podcast-title {
    font-size: 1.25rem;
    margin-bottom: auto;
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.3;
}

.episode-link {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.episode-link:hover {
    color: #fff;
    text-decoration: underline;
}

audio {
    width: 100%;
    margin-top: 1rem;
    border-radius: 4px;
    height: 40px;
}

audio::-webkit-media-controls-panel {
    background-color: #f1f5f9;
}

/* Shows Grid */
.shows-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.show-card {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--accent-orange);
    display: flex;
    flex-direction: column;
}

.show-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
    /* Ensure spacing in row mode */
    flex-wrap: wrap;
    /* Allow wrapping if tight */
}

.show-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.show-date {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.show-time {
    color: #fff;
    background: #334155;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: normal;
}

.show-location-link {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-block;
}

.show-location-link:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.show-details {
    margin-top: 1rem;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.5;
    border-top: 1px solid #334155;
    padding-top: 1rem;
    overflow: hidden;
    transition: all 0.3s ease-out;
    max-height: 500px;
    /* arbitrary high number */
}

.show-details.collapsed {
    margin-top: 0;
    padding-top: 0;
    max-height: 0;
    border-top: none;
    opacity: 0;
}

.btn-expand {
    background: none;
    border: none;
    color: var(--accent-cyan);
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    align-self: flex-start;
    padding: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-expand:hover {
    text-decoration: underline;
}

/* Media */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #334155;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: #020617;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.social-links {
    margin: 1.5rem 0;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin: 0 10px;
    padding: 8px 16px;
    border: 1px solid #334155;
    border-radius: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
}

/* Mobile */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .show-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-outline {
        margin-left: 0;
    }

    .mobile-break {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.8em;
    }

    .show-date {
        justify-content: center;
    }

    .show-actions {
        width: 100%;
        margin-top: 1rem;
        /* Force spacing from date/location */
    }

    .show-actions .btn {
        width: auto;
        min-width: 120px;
        /* Reduced from 140px to be less 'big' */
        padding: 10px 20px;
        /* Slight reduction if needed */
        margin-top: 0;
        /* Handled by container margin */
    }
}

/* Parallax */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grayscale overlay hack */
.parallax-section {
    /* distinct images handled via pseudo */
    overflow: hidden;
    z-index: 0;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(80%) contrast(1.2) brightness(0.9);
    z-index: -1;
}

/* Specific Backgrounds */
.hero-section::before {
    background-image: url('assets/ACTION1.jpg');
}

.mid-parallax {
    height: 400px;
}

.mid-parallax::before {
    background-image: url('assets/ACTION2.jpg');
}

.bottom-parallax {
    height: 600px;
}

.bottom-parallax::before {
    background-image: url('assets/ACTION3.jpg');
}

.parallax-caption {
    color: #fff;
    font-size: 3rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    text-align: center;
    padding: 1rem;
    border: 4px solid #fff;
}

/* Updated Hero Socials & Actions */
.hero-actions-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Match button shape to social icons */
.hero-actions-row .btn {
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 1.1rem;
    /* Adjust to better match icon visual weight */
    border: 1px solid var(--accent-orange);
    /* Ensure border present like socials */
}

.hero-socials {
    margin: 0;
    /* Removing vertical margins to fit in row */
    z-index: 2;
    position: relative;
    display: flex;
    /* Ensure socials themselves are a row */
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hero-socials a {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin: 5px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-cyan);
    border-radius: 20px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.hero-socials a:hover {
    background: var(--accent-cyan);
    color: #000;
    transform: translateY(-2px);
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-orange);
    margin-bottom: 1rem;
    background-color: #334155;
    transition: transform 0.3s;
}

.member-image:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
}

.member-card-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    border: 4px dashed var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    font-size: 2rem;
    color: var(--accent-cyan);
    font-weight: bold;
}

.member-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.member-role {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Mobile Tweaks for Parallax */
@media (max-width: 768px) {
    .parallax-section::before {
        background-attachment: scroll;
        /* Disable fixed on mobile for performance */
    }

    .parallax-caption {
        font-size: 2rem;
    }

    .member-image,
    .member-card-placeholder {
        width: 150px;
        height: 150px;
    }
}

/* Navigation Wrapper */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    pointer-events: none;
}

.main-nav>* {
    pointer-events: auto;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    margin-left: auto;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Mobile Menu Overlay */
#mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(15, 23, 42, 0.98);
    z-index: 999;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#mobile-menu.open {
    opacity: 1;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 2px;
}

.mobile-link:hover {
    color: var(--accent-orange);
}

/* Hamburger Animation state */
.hamburger-btn.open span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger-btn.open span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Query Adjustments */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    #mobile-menu {
        display: flex;
        pointer-events: none;
    }

    #mobile-menu.open {
        pointer-events: auto;
    }

    .main-nav {
        justify-content: flex-end;
        align-items: flex-start;
    }

    #nav-socials {
        display: none;
    }
}