/* ============================================================
   podcast.css – Styles for podcast.html
   Color accent: Dark Blue #0d1b2e / #1a3a5f
   ============================================================ */

/* ── HERO ── */
.page-hero {
    padding: 160px 0 90px;
    background-color: #000;
    text-align: center;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #5b9bd5;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-sub {
    font-size: 18px;
    color: #ccc;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── STUDIO ── */
#studio {
    background-color: #0d1b2e;
    padding: 90px 0;
}

.studio-intro {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}

.studio-intro h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.studio-intro p {
    font-size: 16px;
    color: #b0c4de;
    line-height: 1.8;
    margin-bottom: 28px;
}

.inline-link {
    color: #5b9bd5;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.3s;
}

.inline-link:hover { color: #90c0ee; }

.beatlab-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.beatlab-badge:hover { opacity: 0.88; }

.beatlab-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #333;
    white-space: nowrap;
}

.beatlab-badge img {
    height: 28px;
    width: auto;
}

/* ── STUDIO GALLERY ── */
.studio-gallery {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 12px;
}

.studio-img-wrap {
    position: relative;
    overflow: hidden;
}

.studio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.studio-img-wrap:hover img { transform: scale(1.03); }

.studio-img-main { min-height: 420px; }
.studio-img-side { min-height: 420px; }

.img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 24px 16px 12px;
}

/* ── PROBLEM ── */
#problem {
    background-color: #000;
    padding: 90px 0;
}

.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.problem-text p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.problem-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 8px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #ccc;
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 22px 20px;
}

.problem-item i {
    color: #c0392b;
    font-size: 18px;
    flex-shrink: 0;
}

/* ── LEISTUNGEN ── */
#leistungen {
    background-color: #0d1b2e;
    padding: 90px 0;
}

#leistungen h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 52px;
}

/* ── HIGHLIGHT GRID (shared Leistungen + Warum Venevmedia) ── */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.highlight-item {
    background-color: #000;
    padding: 36px 28px;
    border: 1px solid #1a3a5f;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s;
}

.highlight-item:hover { border-color: #3a6aaf; }
.highlight-item.animate { opacity: 1; transform: translateY(0); }

.highlight-item .icon {
    font-size: 30px;
    margin-bottom: 18px;
    color: #5b9bd5;
}

.highlight-item h3 { font-size: 17px; margin-bottom: 10px; }
.highlight-item p { font-size: 14px; color: #aaa; margin: 0; line-height: 1.7; }

/* ── CONTENT MULTIPLIKATOR ── */
#content-multiplikator {
    background-color: #111;
    padding: 90px 0;
    text-align: center;
}

.multiplikator-header {
    max-width: 600px;
    margin: 0 auto 48px;
}

.multiplikator-header h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.multiplikator-header p {
    font-size: 17px;
    color: #ccc;
    line-height: 1.7;
}

/* 3 × 2 symmetrisches Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 780px;
    margin: 0 auto;
}

.platform-item {
    background-color: #000;
    border: 1px solid #222;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: border-color 0.3s, background-color 0.3s;
}

.platform-item:hover {
    border-color: #1a3a5f;
    background-color: #070d15;
}

.platform-item i {
    font-size: 30px;
    color: #5b9bd5;
}

.platform-item span {
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
    letter-spacing: 0.5px;
}

.multiplikator-footer {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #5b9bd5;
    letter-spacing: 0.5px;
}

/* ── FÜR WEN ── */
#fuer-wen {
    background-color: #000;
    padding: 90px 0;
}

#fuer-wen h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 52px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.audience-item {
    border-top: 3px solid #1a3a5f;
    padding: 28px 24px;
    background-color: #070d15;
    transition: border-color 0.3s;
}

.audience-item:hover { border-top-color: #5b9bd5; }

.audience-icon {
    font-size: 22px;
    color: #5b9bd5;
    margin-bottom: 14px;
}

.audience-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.audience-item p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
    line-height: 1.6;
}

/* ── WARUM VENEVMEDIA ── */
#warum-venevmedia {
    background-color: #0d1b2e;
    padding: 90px 0;
}

#warum-venevmedia h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 52px;
}

/* ── PREISE ── */
#preise {
    background-color: #000;
    padding: 90px 0;
}

#preise h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 16px;
}

.preise-intro {
    text-align: center;
    color: #aaa;
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto 52px;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pricing-card {
    background-color: #0a0a0a;
    border: 1px solid #222;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s;
}

.pricing-card:hover { border-color: #1a3a5f; }

.pricing-card--featured {
    border-color: #1a3a5f;
    background-color: #070d15;
    box-shadow: 0 0 32px rgba(26,58,95,0.5);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a3a5f;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    white-space: nowrap;
}

.pricing-header { margin-bottom: 20px; }

.pricing-header h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.pricing-sub {
    font-size: 12px;
    color: #777;
    letter-spacing: 0.5px;
    margin: 0;
}

.pricing-price {
    margin-bottom: 8px;
    padding-bottom: 0;
}

.pricing-note {
    font-size: 13px;
    color: #888;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1a1a1a;
}

.pricing-note strong { color: #ccc; }

.price-amount {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.price-unit {
    font-size: 13px;
    color: #777;
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #ccc;
    padding: 7px 0;
    border-bottom: 1px solid #111;
    line-height: 1.4;
}

.pricing-features li i {
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li i.fa-check { color: #5b9bd5; }
.pricing-features li i.fa-times { color: #444; }

.pricing-feature-off { color: #444 !important; }
.pricing-feature-off span { color: #444; }

.pricing-btn {
    display: block;
    text-align: center;
    margin-left: 0;
    margin-top: auto;
    padding: 12px 20px;
    font-size: 13px;
}

/* ── PREISE HINWEIS ── */
.preise-hinweis {
    text-align: center;
    color: #555;
    font-size: 13px;
    margin-top: 28px;
    letter-spacing: 0.3px;
}

/* ── POPUP ── */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: popupFadeIn 0.3s ease;
}

.popup-overlay[hidden] { display: none; }

@keyframes popupFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.popup-box {
    position: relative;
    max-width: 420px;
    width: 100%;
    animation: popupSlideUp 0.35s ease;
}

@keyframes popupSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.popup-box img {
    width: 100%;
    display: block;
}

.popup-box a {
    display: block;
    line-height: 0;
}

.popup-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
    transition: background 0.2s;
}

.popup-close:hover { background: #ddd; }

@media (max-width: 480px) {
    .popup-box { max-width: 320px; }
}

/* ── FAQ ── */
#faq-podcast {
    background-color: #0d1b2e;
    padding: 90px 0;
}

#faq-podcast h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 52px;
}

.faq-list { max-width: 820px; margin: 0 auto; }

/* ── CTA ── */
.podcast-cta {
    background-color: #000;
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid #0d1b2e;
}

.podcast-cta h2 { font-size: 38px; margin-bottom: 16px; }
.podcast-cta p {
    font-size: 17px;
    color: #ccc;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media screen and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .page-hero { padding: 120px 0 60px; }
    .page-hero h1 { font-size: 28px; }
    .hero-sub { font-size: 15px; }

    .studio-gallery {
        grid-template-columns: 1fr;
    }

    .studio-img-main,
    .studio-img-side { min-height: 260px; }

    .problem-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .problem-points { grid-template-columns: 1fr; }

    #studio, #problem, #leistungen,
    #content-multiplikator, #fuer-wen,
    #warum-venevmedia, #preise, #faq-podcast { padding: 60px 0; }

    #leistungen h2, #fuer-wen h2,
    #warum-venevmedia h2, #preise h2,
    #faq-podcast h2, .studio-intro h2,
    .problem-text h2, .multiplikator-header h2 { font-size: 26px; }

    .podcast-cta h2 { font-size: 26px; }
    .podcast-cta { padding: 70px 0; }

    .platform-grid { grid-template-columns: repeat(2, 1fr); }

    .pricing-grid { grid-template-columns: 1fr; }

    .beatlab-badge { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 22px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-solid, .btn-outline { width: 100%; text-align: center; }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
