/* =========================
   Book Section – Simple Premium
========================= */

.book-section {
    padding: 90px 0;
    background: #faf9f7;
}

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

/* =========================
   Header
========================= */

.book-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2f3e46;
}

.book-header .subtitle {
    margin-top: 8px;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 50px;
}

.book-intro {
    max-width: 850px;
    margin: 0 auto 60px;
}

.book-intro p {
    font-size: 16px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 16px;
}

/* =========================
   Simple Book Images
========================= */

.book-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 40px;
}

.book-images img {
    width: 260px;
    max-width: 100%;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

/* =========================
   Text Card
========================= */

.book-text-card {
    background: #ffffff;
    padding: 36px 40px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.book-text-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}

.book-text-card strong {
    color: #1f2937;
}

/* Highlight */
.book-text-card .highlight {
    background: #f1f5f3;
    border-left: 4px solid #5b7c6f;
    padding: 14px 16px;
    border-radius: 6px;
    margin: 20px 0;
}

/* Note */
.book-text-card .note {
    font-style: italic;
    color: #6b7280;
}

/* =========================
   Store Icons
========================= */

.store-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.store-icons span {
    font-size: 14px;
    color: #4b5563;
}

.store-icons a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 22px;
    text-decoration: none;
    background: #f9fafb;
    color: #111827;
    font-size: 14px;
    transition: all 0.25s ease;
}

.store-icons i {
    font-size: 18px;
}

.store-icons a:hover {
    background: #0f2a4d;
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================
   CTA Button
========================= */

.buy-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 14px 36px;
    background: #2f3e46;
    color: #ffffff;
    font-weight: 600;
    border-radius: 28px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.buy-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .book-images {
        flex-direction: column;
        gap: 40px;
    }

    .book-images img {
        width: 220px;
    }

    .book-header h2 {
        font-size: 28px;
    }

    .book-text-card {
        padding: 26px 22px;
    }

    .buy-btn {
        width: 100%;
        text-align: center;
    }
}


/* Force book images to center on mobile */
@media (max-width: 768px) {
    .book-images {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .book-images img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}





.header-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 28px 0 20px;
    flex-wrap: wrap;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #2f3e46;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-link i {
    font-size: 18px;
    color: #2f3e46;
}

.header-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    color: #1f2937;
}

/* Mobile */
@media (max-width: 576px) {
    .header-links {
        gap: 14px;
    }

    .header-link {
        /* width: 100%; */
        justify-content: center;
    }
}


.podcast-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.podcast-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    font-size: 14.5px;
    color: #1f2937;
    transition: all 0.25s ease;
}

.podcast-links a i {
    font-size: 18px;
}

.podcast-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}





/* =========================
   Podcast Section – Premium & Clean
========================= */

.podcast-section {
    padding: 90px 0;
    background: #0f2a4d; /* Navy */
    color: #ffffff;
}

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

.podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

/* =========================
   Brand Block
========================= */

.podcast-brand img {
    max-width: 160px;
    margin-bottom: 24px;
}

.podcast-brand h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.podcast-brand .tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #d1d5db;
}

/* =========================
   Content
========================= */

.podcast-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 16px;
}

.podcast-content strong {
    color: #f5c27a; /* Gold accent */
}

/* =========================
   Platform Links
========================= */

.podcast-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.podcast-links a {
    padding: 10px 18px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.podcast-links a:hover {
    background: #f5c27a;
    color: #0f2a4d;
}

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

@media (max-width: 900px) {
    .podcast-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .podcast-links {
        justify-content: center;
    }
}





/* =========================
   Blog Section – Simple
========================= */

.blog-section {
    padding: 70px 0;
    background: #f6f3ee; /* soft neutral */
}

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

/* Blog Card */
.blog-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.blog-card h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0f2a4d;
    margin-bottom: 16px;
}

.blog-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 26px;
}

/* CTA */
.blog-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #0f2a4d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    background: #f5c27a;
    color: #0f2a4d;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 576px) {
    .blog-card {
        padding: 36px 26px;
    }

    .blog-card h2 {
        font-size: 24px;
    }
}
