/* ============================================
   Authors Page — Strong Hope Media
   Updated: Featured Author Spotlight Design
   ============================================ */

/* ── Hero Enhancements ── */
.authors-hero {
    background: linear-gradient(rgba(20, 40, 100, 0.85), rgba(10, 10, 10, 0.90)),
                url('https://images.unsplash.com/photo-1456513080510-7bf3a84b82f8?w=1600') center/cover no-repeat;
    padding: 9rem 0 7rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.55);
    color: #d4af37;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2.5rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.bounce {
    animation: bounceY 1.6s ease-in-out infinite;
}

@keyframes bounceY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(7px); }
}

/* ── Section Label Divider ── */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.label-line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.label-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Featured Author Section ── */
.featured-author-section {
    padding: 5rem 0 4rem;
    background: #f8f9fc;
}

/* ── Spotlight Layout ── */
.featured-spotlight {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 50px rgba(30, 58, 138, 0.10);
    overflow: hidden;
    position: relative;
}

.featured-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1e3a8a 0%, #d4af37 50%, #1e3a8a 100%);
}

/* ── Book Column ── */
.spotlight-book-col {
    background: linear-gradient(160deg, #1e3a8a 0%, #0f1f5c 100%);
    padding: 3rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.spotlight-book-col::after {
    content: '\f518';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 9rem;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
}

/* ── 3D Book Effect ── */
.book-3d-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.book-cover-large {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    transition: transform 0.4s ease;
}

.book-cover-large:hover {
    transform: scale(1.04) rotate(-1deg);
}

.book-cover-large img {
    width: 180px;
    height: auto;
    border-radius: 4px 10px 10px 4px;
    display: block;
    position: relative;
    z-index: 1;
}

.book-spine {
    position: absolute;
    left: -12px;
    top: 2px;
    bottom: 2px;
    width: 12px;
    background: linear-gradient(90deg, #0a1235 0%, #1e3a8a 100%);
    border-radius: 3px 0 0 3px;
    z-index: 0;
}

.book-glow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(212,175,55,0.35) 0%, transparent 70%);
    filter: blur(8px);
}

/* ── Purchase Widget Wrapper ── */
.purchase-widget-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.purchase-label {
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ── Info Column ── */
.spotlight-info-col {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* ── Book Title Block ── */
.author-title-block {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.book-title-large {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.author-byline {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-style: italic;
}

.author-byline span {
    color: #d4af37;
    font-weight: 700;
    font-style: normal;
}

.book-genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.genre-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #f0f4ff;
    color: #1e3a8a;
    border: 1px solid #c7d4f5;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.genre-tag i {
    color: #d4af37;
}

/* ── Pull Quote ── */
.book-pull-quote {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f1f5c 100%);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    margin: 0;
    border-left: 5px solid #d4af37;
}

.book-pull-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ── Book Description ── */
.book-description-block h3 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.book-description-block h3::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
}

.book-description-block p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 0.98rem;
}

/* ── Author Bio Block ── */
.author-bio-block {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #d4af37;
}

.author-bio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.author-bio-name {
    color: #1e3a8a;
    font-size: 1.15rem;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 0.2rem;
}

.author-bio-title {
    color: #d4af37;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.author-bio-text {
    color: #4a5568;
    font-size: 0.94rem;
    line-height: 1.75;
    margin: 0;
}

/* ── Themes Grid ── */
.book-themes h4 {
    color: #1e3a8a;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.theme-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: #f0f4ff;
    padding: 0.85rem 0.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.theme-item:hover {
    background: #1e3a8a;
    border-color: #d4af37;
    transform: translateY(-3px);
}

.theme-item i {
    font-size: 1.3rem;
    color: #d4af37;
}

.theme-item span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #1e3a8a;
}

.theme-item:hover span {
    color: #fff;
}

/* ── CTA Buttons in Spotlight ── */
.spotlight-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

.btn-buy-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-buy-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.50);
}

.btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #1e3a8a;
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid #1e3a8a;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background: #1e3a8a;
    color: #fff;
    transform: translateY(-3px);
}

/* ── Scripture Banner ── */
.scripture-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #0a1540 100%);
    text-align: center;
}

.scripture-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.scripture-icon {
    font-size: 2.5rem;
    color: rgba(212,175,55,0.5);
    margin-bottom: 1rem;
    display: block;
}

.scripture-banner blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    color: #ffffff;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.scripture-banner cite {
    color: #d4af37;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-style: normal;
}

/* ── Publishing Journey ── */
.journey-section {
    padding: 5rem 0;
    background: #f8f9fc;
}

.journey-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.journey-step {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    position: relative;
    transition: all 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(30,58,138,0.13);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    width: 36px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.03em;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0f4ff, #dce6ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1.25rem;
    font-size: 1.5rem;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

.journey-step:hover .step-icon {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
}

.journey-step h4 {
    color: #1e3a8a;
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.journey-step p {
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.65;
    margin: 0;
}

.journey-arrow {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    margin-top: 2rem;
    color: #d4af37;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* ── Next Author CTA ── */
.next-author-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #0a1540 100%);
}

.next-author-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212,175,55,0.18);
    border: 1px solid rgba(212,175,55,0.45);
    color: #d4af37;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.next-author-text h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.next-author-text > p {
    color: #c8d4f0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e8edf8;
    font-size: 0.95rem;
}

.cta-benefits li i {
    color: #d4af37;
    font-size: 1rem;
    flex-shrink: 0;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-actions .btn-secondary {
    border-color: rgba(255,255,255,0.5);
}

/* ── CTA Visual Card ── */
.cta-visual-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.cta-book-icon {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    display: block;
}

.cta-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.72rem;
    color: #a0b0d0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cta-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.cta-verse {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: left;
}

.cta-verse i {
    color: #d4af37;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

.cta-verse p {
    color: #c8d4f0;
    font-size: 0.83rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .featured-spotlight {
        grid-template-columns: 320px 1fr;
        gap: 2.5rem;
    }

    .book-title-large {
        font-size: 2rem;
    }

    .next-author-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cta-visual-card {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .featured-spotlight {
        grid-template-columns: 1fr;
    }

    .spotlight-book-col {
        padding: 2.5rem 2rem 2rem;
    }

    .spotlight-info-col {
        padding: 2rem 2rem 2.5rem;
    }

    .book-title-large {
        font-size: 1.8rem;
    }

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

    .journey-steps {
        flex-direction: column;
        align-items: center;
    }

    .journey-arrow {
        transform: rotate(90deg);
        margin: 0;
        padding: 0.25rem 0;
    }

    .journey-step {
        max-width: 100%;
        width: 100%;
    }

    .scripture-banner blockquote {
        font-size: 1.2rem;
    }

    .next-author-text h2 {
        font-size: 1.9rem;
    }

    .spotlight-cta-buttons {
        flex-direction: column;
    }

    .btn-buy-large,
    .btn-outline-blue {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-stats {
        gap: 0.8rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }
}