/* ==========================================================================
   Let's Talk Podcast Page
   ========================================================================== */

/* ── Podcast Hero ── */
.podcast-hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    text-align: center;
    overflow: hidden;
}

/* Video Background */
.podcast-hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.podcast-hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.podcast-hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 51, 0.50);
    z-index: 1;
}

.podcast-hero .container {
    position: relative;
    z-index: 2;
}

.podcast-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 4rem;

    /* Liquid Glass Effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.podcast-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(183, 148, 246, 0.1);
    color: #B794F6;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    border: 1px solid rgba(183, 148, 246, 0.2);
    margin-bottom: 2rem;
}

.podcast-badge i {
    font-size: 1rem;
    --fa-primary-color: #B794F6;
    --fa-secondary-color: rgba(183, 148, 246, 0.5);
    --fa-secondary-opacity: 0.5;
}

.podcast-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: 'UniNeue Regular', 'UniNeue', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.podcast-hero-title .highlight-purple {
    color: #B794F6;
    text-shadow: 0 2px 12px rgba(183, 148, 246, 0.3);
}

.podcast-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.podcast-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Episodes Section ── */
.podcast-episodes {
    padding: 5rem 2%;
    background: var(--bg-primary);
}

.podcast-episodes .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
}

.episode-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Video Container — 16:9 responsive */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

/* Cookie-Consent Placeholder — sichtbar wenn iframe von Cookiebot blockiert */
.video-cookie-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

/* Placeholder verstecken wenn iframe sichtbar (Cookies akzeptiert) */
.cookieconsent-optin-marketing-accepted ~ .video-cookie-placeholder,
.video-container iframe:not(.cookieconsent-optin-marketing) ~ .video-cookie-placeholder {
    display: none;
}

.video-cookie-placeholder > i {
    font-size: 3rem;
    color: #FF0000;
    opacity: 0.7;
}

.video-cookie-placeholder p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 300px;
}

.video-cookie-placeholder .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
}

/* Episode Details */
.episode-number {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(183, 148, 246, 0.1);
    color: #B794F6;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 15px;
    border: 1px solid rgba(183, 148, 246, 0.2);
    margin-bottom: 1.2rem;
}

.episode-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.episode-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.episode-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topic-tag {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.topic-tag:hover {
    border-color: rgba(183, 148, 246, 0.3);
    color: #B794F6;
    background: rgba(183, 148, 246, 0.08);
}

/* ── About the Podcast ── */
.podcast-about {
    padding: 5rem 2%;
    background: var(--bg-primary);
}

.podcast-about .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.podcast-about .section-description {
    text-align: center;
    margin-bottom: 3rem;
}

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

.podcast-about-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.podcast-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(183, 148, 246, 0.12);
    border-color: rgba(183, 148, 246, 0.3);
}

.podcast-about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(183, 148, 246, 0.15), rgba(183, 148, 246, 0.05));
    border-radius: 50%;
    border: 1px solid rgba(183, 148, 246, 0.2);
}

.podcast-about-icon i {
    font-size: 1.8rem;
    color: #B794F6;
    --fa-primary-color: #B794F6;
    --fa-secondary-color: rgba(183, 148, 246, 0.5);
    --fa-secondary-opacity: 0.5;
}

.podcast-about-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.podcast-about-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Keyword Cloud ── */
.podcast-keywords {
    padding: 4rem 2%;
    background: var(--bg-primary);
}

.podcast-keywords .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    max-width: 900px;
    margin: 0 auto;
}

.keyword-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.keyword-tag:hover {
    border-color: rgba(183, 148, 246, 0.4);
    color: #B794F6;
    background: rgba(183, 148, 246, 0.08);
    transform: translateY(-2px);
}

.keyword-tag.keyword-large {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    color: #B794F6;
    border-color: rgba(183, 148, 246, 0.25);
    background: rgba(183, 148, 246, 0.08);
}

.keyword-tag.keyword-medium {
    font-size: 0.95rem;
    font-weight: 500;
}

.keyword-tag.keyword-small {
    font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    .episode-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .episode-details {
        text-align: center;
    }

    .episode-topics {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .podcast-hero {
        padding: 100px 2% 60px;
    }

    .podcast-hero-content {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .podcast-hero-title {
        font-size: 2rem;
    }

    .podcast-hero-subtitle {
        font-size: 1.1rem;
    }

    .podcast-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .podcast-hero-cta .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .podcast-about-grid {
        grid-template-columns: 1fr;
    }

    .episode-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .podcast-hero {
        padding: 80px 2% 40px;
    }

    .podcast-hero-title {
        font-size: 1.8rem;
    }
}
