/* ===================================
   EARLY 2000s POST-GRUNGE AESTHETIC
   Dark, Moody, Raw, Authentic
   =================================== */

/* CSS Variables - Depeche Mode Inspired: Deep, Cool, Industrial */
:root {
    --charcoal: #121212;
    --slate-gray: #1f1f2a;
    --dark-gray: #252028;
    --slate-blue: #3a5a7a;
    --muted-orange: #8B0000;
    --off-white: #e5e7eb;
    --light-gray: #9ca3af;
    --black: #0a0a0a;
    --concrete: #374151;
    --tattoo-red: #8B0000;
    --ink-black: #0a0a0a;
}

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--charcoal);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Subtle film grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, transparent 0%, transparent 50%, rgba(139, 0, 0, 0.02) 100%),
        radial-gradient(circle at 80% 80%, transparent 0%, transparent 50%, rgba(58, 90, 122, 0.02) 100%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    border-bottom: 2px solid var(--muted-orange);
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--off-white);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(to right, var(--muted-orange), transparent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--muted-orange);
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.6);
    transition: all 0.35s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--off-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    min-width: 100%;
    min-height: 100%;
}

/* Ensure video covers entire hero area */
@media (min-aspect-ratio: 16/9) {
    .hero-video-container iframe {
        height: 56.25vw; /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video-container iframe {
        width: 177.78vh; /* 16:9 aspect ratio */
    }
}

/* Video Hero Styles */
.hero-video .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-video .video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Ensure video covers entire hero area */
@media (min-aspect-ratio: 16/9) {
    .hero-video .video-container iframe {
        width: 100vw;
        height: 56.25vw; /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video .video-container iframe {
        width: 177.78vh; /* 16:9 aspect ratio */
        height: 100vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Overlay for hero video to improve text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

/* Blur effect on top border of hero backdrop - adjusted z-index */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 6rem;
}

.neon-frame {
    width: min(560px, 85vw);
    aspect-ratio: 1 / 1;
    margin: 10vh auto 2rem;
    position: relative;
}

/* Mobile: Ensure neon frame is visible and properly sized */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
    }
    
    .neon-frame {
        width: min(400px, 90vw);
        margin: 5vh auto 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 110px;
    }
    
    .neon-frame {
        width: min(320px, 95vw);
        margin: 2vh auto 1.5rem;
    }
}

/* Desktop only: Move hero SVG down by 10% towards CTA button */
@media (min-width: 769px) {
    .neon-frame {
        margin-top: 20vh;
    }
}

/* Mobile: Adjust hero content positioning for better visibility */
@media (max-width: 768px) {
    .hero-content {
        margin-bottom: 2rem;
        padding: 0 10px;
    }
}

.neon-frame svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--muted-orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--light-gray);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: var(--muted-orange);
    color: var(--off-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.35s ease;
    border: 2px solid var(--muted-orange);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.5), 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 3;
    margin-bottom: 3rem;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(58, 90, 122, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
    width: 400px;
    height: 400px;
}

.hero-cta:hover {
    background-color: transparent;
    color: var(--muted-orange);
    box-shadow: 0 0 40px rgba(139, 0, 0, 0.8), inset 0 0 30px rgba(139, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--dark-gray);
    position: relative;
}

/* Film grain effect for about section */
.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--off-white);
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.section-title.light {
    color: var(--off-white);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--muted-orange) 0%, var(--slate-blue) 50%, var(--muted-orange) 100%);
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}

.title-underline::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--muted-orange);
    border-radius: 50%;
}

.title-underline::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--slate-blue);
    border-radius: 50%;
}

.title-underline.centered {
    margin-left: auto;
    margin-right: auto;
}

.title-underline.light {
    background-color: var(--muted-orange);
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-image {
    position: relative;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-track {
    display: flex;
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-track .carousel-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    filter: grayscale(30%) contrast(1.1) brightness(0.85) saturate(0.8);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-track .carousel-slide.active {
    opacity: 1 !important;
    z-index: 3;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(139, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--muted-orange);
    border-color: var(--muted-orange);
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(139, 0, 0, 0.7);
    transform: scale(1.1);
}

.section-image img {
    width: 100%;
    height: auto;
    filter: grayscale(30%) contrast(1.1) brightness(0.85) saturate(0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(139, 0, 0, 0.3);
    position: relative;
}

/* Dark overlay on photo */
.section-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
    z-index: 2;
}

/* Episodes Section */
.episodes-section {
    padding: 6rem 0;
    background-color: var(--charcoal);
    background-image: url('images/off-point-podcast-logo-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Dark overlay for episodes section background */
.episodes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    pointer-events: none;
    z-index: 0;
}

/* Blur effect on top border of episodes section backdrop */
.episodes-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.episode-card {
    background-color: var(--slate-gray);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(139, 0, 0, 0.2);
    position: relative;
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3), 0 0 30px rgba(139, 0, 0, 0.2);
    border-color: var(--muted-orange);
}

.episode-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
    transition: filter 0.3s ease;
}

.episode-card:hover .episode-image img {
    filter: grayscale(20%) contrast(1.2);
}

.episode-video {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

.episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: none;
}

.episode-video:hover .play-button-overlay svg {
    transform: scale(1.1);
}

.play-button-overlay svg {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

/* Thumbnail mode styles */
.thumbnail-image {
    transition: all 0.5s ease;
    border: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.thumbnail-expand-hint {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.episode-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--muted-orange);
    opacity: 0.8;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(139, 0, 0, 0.5);
}

.episode-info {
    padding: 1.5rem;
}

.episode-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

.episode-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--muted-orange), transparent);
}

.episode-desc {
    font-size: 0.95rem;
    color: var(--light-gray);
    line-height: 1.6;
    font-weight: 300;
}

/* Watch Section */
.watch-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('images/white-rose-black-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.watch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 100px 60px rgba(0, 0, 0, 0.9);
    pointer-events: none;
    z-index: 1;
}

.watch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.watch-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.watch-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--muted-orange);
    color: var(--off-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.35s ease;
    border: 2px solid var(--muted-orange);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(58, 90, 122, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--muted-orange);
    box-shadow: 0 0 30px rgba(139, 0, 0, 0.7), inset 0 0 20px rgba(139, 0, 0, 0.2);
}

/* Featured Content Section */
.featured-section {
    padding: 6rem 0;
    background-color: var(--slate-gray);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(58, 90, 122, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.featured-intro {
    font-size: 1.2rem;
    color: var(--light-gray);
    line-height: 1.9;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.featured-card {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.6), rgba(31, 31, 42, 0.4));
    padding: 3rem 2rem;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.featured-card:hover::before {
    left: 100%;
}

.featured-card:hover {
    transform: translateY(-10px);
    border-color: var(--muted-orange);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.4), 0 0 40px rgba(139, 0, 0, 0.2);
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.8), rgba(31, 31, 42, 0.6));
}

.featured-icon {
    color: var(--muted-orange);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 15px rgba(139, 0, 0, 0.6));
    transition: all 0.4s ease;
}

.featured-card:hover .featured-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(139, 0, 0, 0.8));
}

.featured-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.featured-text {
    font-size: 1rem;
    color: var(--light-gray);
    line-height: 1.7;
    font-weight: 300;
}

.featured-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.btn-featured {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--muted-orange) 0%, #5a0000 100%);
    color: var(--off-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 2px solid var(--muted-orange);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(139, 0, 0, 0.6), 0 0 20px rgba(139, 0, 0, 0.4);
}

.btn-featured::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(58, 90, 122, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-featured:hover::before {
    width: 400px;
    height: 400px;
}

.btn-featured:hover {
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    color: var(--muted-orange);
    box-shadow: 0 8px 40px rgba(139, 0, 0, 0.8), inset 0 0 30px rgba(139, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Video Grid Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Center single video in featured section */
.featured-section .video-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.6), rgba(31, 31, 42, 0.4));
    padding: 0;
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--muted-orange);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.4), 0 0 40px rgba(139, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background-color: #000;
}

/* Increase video size by 15% in featured section */
.featured-section .video-wrapper {
    padding-bottom: 64.69%; /* 56.25% * 1.15 = 64.69% for 15% increase */
}

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

.video-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--off-white);
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.video-description {
    font-size: 1rem;
    color: var(--light-gray);
    line-height: 1.7;
    font-weight: 300;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Responsive for Featured Section */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-card {
        padding: 2.5rem 1.5rem;
    }
    
    .featured-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Hide subscriber photo in gallery */
.gallery-item img[src="images/radio-station-team-photo.jpg"] {
    display: none;
}

.gallery-item:has(img[src="images/radio-station-team-photo.jpg"]) {
    display: none;
}

/* Contact Section - Modern Redesign */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background elements */
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.contact-section-overlay {
    display: none;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-left {
    text-align: center;
    padding: 0;
}

.contact-intro-text {
    font-size: 1.2rem;
    color: var(--light-gray);
    line-height: 1.9;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: linear-gradient(145deg, rgba(31, 31, 42, 0.4), rgba(37, 32, 40, 0.3));
    padding: 2rem 1.5rem;
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--muted-orange), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.info-card:hover::before {
    transform: translateX(100%);
}

.info-card:hover {
    background: linear-gradient(145deg, rgba(31, 31, 42, 0.6), rgba(37, 32, 40, 0.5));
    border-color: var(--muted-orange);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.35), 0 0 30px rgba(139, 0, 0, 0.2);
}

.info-icon {
    color: var(--muted-orange);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
}

.info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.info-text {
    font-size: 0.95rem;
    color: var(--light-gray);
    font-weight: 300;
}

.contact-right {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background: linear-gradient(145deg, rgba(37, 32, 40, 0.9), rgba(31, 31, 42, 0.8));
    padding: 3rem;
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(139, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    width: 100%;
    position: relative;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--muted-orange), var(--slate-blue), var(--muted-orange));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.contact-form-card:hover::before {
    opacity: 0.3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-label {
    font-size: 0.85rem;
    color: var(--muted-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-input {
    padding: 1.2rem 1.5rem;
    background-color: rgba(18, 18, 18, 0.8);
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 6px;
    color: var(--off-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.35s ease;
    position: relative;
}

.form-input:focus {
    outline: none;
    border-color: var(--muted-orange);
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.6), inset 0 1px 3px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: var(--light-gray);
    opacity: 0.5;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(139, 0, 0, 0.05);
}

.checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--muted-orange);
}

.checkbox-text {
    color: var(--light-gray);
    font-size: 0.95rem;
    font-weight: 300;
}

.btn-submit {
    padding: 1.3rem 3rem;
    background: linear-gradient(135deg, var(--muted-orange) 0%, #5a0000 100%);
    color: var(--off-white);
    border: 2px solid var(--muted-orange);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(139, 0, 0, 0.6), 0 0 20px rgba(139, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.btn-submit span {
    position: relative;
    z-index: 2;
}

.btn-submit svg {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(58, 90, 122, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 500px;
    height: 500px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    color: var(--muted-orange);
    box-shadow: 0 8px 40px rgba(139, 0, 0, 0.8), inset 0 0 30px rgba(139, 0, 0, 0.3);
    transform: translateY(-3px);
}

.btn-submit:hover svg {
    transform: translateX(8px) rotate(15deg);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 20px rgba(139, 0, 0, 0.6);
}

#formStatus {
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
    border-radius: 6px;
    animation: fadeIn 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: var(--black);
    padding: 3rem 0 2rem;
    border-top: 2px solid var(--muted-orange);
    box-shadow: 0 -2px 10px rgba(139, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.copyright-year::before {
    content: '2025';
}

.social-link {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--muted-orange);
}

.footer-powered {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-gray);
}

.footer-powered a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-powered a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--slate-gray);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }



    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-image {
        width: 100%;
        overflow: hidden;
    }

    .episodes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-left {
        padding: 0;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .carousel-track {
        height: 400px;
    }

    .carousel-indicators {
        bottom: 15px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {


    .nav-logo {
        font-size: 1.2rem;
    }

    .btn-primary,
    .btn-submit {
        width: 100%;
        text-align: center;
    }
}
