/* Section Divider */
.section-divider {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 40px auto 0 auto;
    width: 80%;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c3272e;
    --secondary-color: #3498db;
    --accent-color: #27ae60;
    --bg-dark: #2c3e50;
    --bg-secondary: #34495e;
    --bg-card: #ecf0f1;
    --text-primary: #2c3e50;
    --text-secondary: #34495e;
    --text-muted: #7f8c8d;
    --border-color: #bdc3c7;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.25rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 140px;
    gap: 2rem;
}

.nav-subscribe {
    display: flex;
    justify-content: flex-start;
}

.subscribe-link {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.subscribe-link:hover {
    background: #a11e23;
    transform: translateY(-1px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: center;
    background-color: #000000;
    padding: 10px;
    border-radius: 8px;
}

.nav-logo .logo {
    height: 92px;
    width: auto;
    max-width: 345px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    justify-self: end;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-help-btn {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: var(--border-radius) !important;
    font-weight: 600 !important;
    margin-left: 1rem !important;
}

.nav-help-btn:hover {
    background: #a11e23 !important;
    transform: translateY(-1px) !important;
}

.nav-help-btn::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Parallax Hero Section */
.parallax-hero {
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    position: relative;
    background: #000;
    margin-top: 140px;
}

.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

.parallax-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.9);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.welcome-content {
    max-width: 1100px;
    margin: 0 auto;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: 1px;
}

.welcome-description {
    margin-bottom: 3rem;
}

.welcome-description p {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    margin: 0;
}

.platform-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    margin-top: 48px;
}

.latest-episode-divider {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 40px auto 0 auto;
    width: 80%;
}
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.platform-icon:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.platform-icon i {
    font-size: 1.4rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.platform-icon:hover i {
    color: white;
    transform: scale(1.1);
}

.newsletter-section {
    padding: 2rem 2rem 1rem 2rem;
    background: #000;
    color: #fff;
    border-radius: var(--border-radius);
    border: none;
}

.newsletter-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: #a11e23;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: #a11e23;
    border-color: #a11e23;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-cover {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.podcast-cover:hover {
    transform: scale(1.05);
}

.hosts-photo {
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid rgba(231, 76, 60, 0.2);
    margin-bottom: 1.5rem;
}

.hosts-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Latest Episode Section */

/* Previous Episodes Section */
.previous-episodes {
    background: #000;
    padding: 60px 0 60px 0;
}

.previous-episodes .section-title {
    color: #fff;
    padding: 32px 0 24px 0;
    background: #000;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.previous-episode-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
    aspect-ratio: 2/3;
    min-width: 0;
    min-height: 350px;
    max-width: 350px;
    margin: 0 auto;
}

.previous-episode-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.previous-episode-bottom {
    margin-top: auto;
    width: 100%;
}

.previous-episode-image {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 2/3;
    height: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
    margin-bottom: 1rem;
}

.previous-episode-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.previous-episode-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.previous-episode-description {
    color: var(--text-secondary);
    font-size: 0.98rem;
    text-align: center;
    flex: 1;
    overflow: hidden;
}

.previous-episode-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding-top: 1rem;
}

.previous-episode-actions .btn {
    font-size: 0.95rem;
    padding: 8px 16px;
}

.previous-episode-actions .btn-secondary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.previous-episode-actions .btn-secondary:hover {
    background: #a11e23;
    border-color: #a11e23;
    color: white;
}

.view-more-episodes {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

@media (max-width: 900px) {
    .episodes-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    .previous-episode-card {
        max-width: 100%;
    }
}


.latest-episode .section-title {
    color: #fff;
    padding: 32px 0 24px 0;
    background: #000;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 3rem;
    color: #fff;
}

.section-title.left {
    text-align: left;
}

.section-title.white {
    color: #fff;
}


.latest-episode .episode-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.episode-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.episode-loading {
    text-align: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.episode-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.episode-image {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.episode-info h3 {
    /* Removed, now using .section-title for heading */
}

.episode-meta {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.episode-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.episode-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    background: #a11e23;
    transform: scale(1.1);
}

/* Subscribe Popup */
.subscribe-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.subscribe-popup.show {
    display: flex;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.popup-close:hover {
    color: var(--primary-color);
}

.popup-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.popup-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
}

.popup-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.popup-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.popup-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popup-platform-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.popup-platform-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.popup-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-newsletter-form input {
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: white;
    color: var(--text-primary);
    font-size: 1rem;
}

.popup-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .popup-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-newsletter-form {
        flex-direction: column;
    }
}

/* Shop Section */
.shop-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.shop-content {
    max-width: 600px;
    margin: 0 auto;
}

.shop-description {
    margin-bottom: 2rem;
}

.shop-description p {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-large i {
    margin-right: 0.5rem;
}

/* Listen Anywhere Section */
.listen-anywhere {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platform-link {
    text-decoration: none;
    color: inherit;
}

.platform-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    cursor: pointer;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
    background: #000 !important;
    color: #fff !important;
}

.platform-card i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.platform-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.platform-card span {
    display: none;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.newsletter p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #95a5a6;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .episode-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .episode-actions {
        flex-direction: row;
        justify-content: center;
    }

    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 0.8rem;
    }

    .platform-card {
        padding: 2rem;
        background: #000;
        border-radius: var(--border-radius);
        border: none;
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 400px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .episode-card {
        padding: 1.5rem;
    }

    .platform-card {
        padding: 1.5rem;
    }

    .platform-card i {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bold the podcast name inside the welcome message */
.welcome-content .podcast-name {
    font-weight: bold;
    background: #000;
    padding-top: 32px;
    padding-bottom: 24px;
    margin-bottom: 64px;
