/* ==========================================
   Honey Tales Africa - About Page Stylesheet
   ========================================== */

/* --- About Hero --- */
.about-hero {
    position: relative;
    background: linear-gradient(160deg, #3A6B50 0%, #2B503F 60%, #223F32 100%);
    padding: 100px 20px 60px;
    overflow: hidden;
}

.about-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 50vh;
}

.about-hero-photo {
    flex: 0 0 280px;
    animation: float1 5s ease-in-out infinite;
}

.about-author-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: block;
}

.about-hero-text {
    flex: 1;
}

.about-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-family: 'Bubblegum Sans', cursive;
    font-size: 0.95rem;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.about-hero-text h1 {
    font-size: 3.2rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 8px;
    line-height: 1.1;
}

.about-hero-role {
    font-family: 'Bubblegum Sans', cursive;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.about-hero-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 520px;
}

.about-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.about-hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- Biography --- */
.bio-section {
    background: var(--cream);
    padding: 80px 0;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bio-text h2 {
    font-size: 2rem;
    color: var(--brown);
    margin-bottom: 20px;
    line-height: 1.2;
}

.bio-text p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.bio-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bio-highlight-card {
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-left: 3px solid #D4962A;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bio-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.bio-highlight-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF8E7, #FFEFC0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.bio-highlight-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.bio-highlight-card h3 {
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 6px;
    font-weight: 700;
}

.bio-highlight-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --- What Makes the Books Special --- */
.about-features-section {
    background: #F5F0E8;
    padding: 80px 0;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-feature {
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #D4962A;
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F0F5F2, #DCE8E0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-feature-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.about-feature h3 {
    font-size: 1.15rem;
    color: var(--brown);
    margin-bottom: 10px;
    font-weight: 700;
}

.about-feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Testimonials --- */
.about-testimonials-section {
    background: var(--cream);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    border-radius: var(--radius);
    padding: 32px 28px 24px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--brown);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 7rem;
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.08;
    color: var(--brown);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars span {
    font-size: 1.1rem;
    color: #D4962A;
}

.testimonial-quote {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brown), var(--brown-light));
}

.testimonial-author-info strong {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 0.9rem;
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Order Section (reuse from books.css) --- */
.order-section {
    background: #F5F0E8;
    padding: 80px 0;
    text-align: center;
}

.order-section h2 {
    font-size: 2.4rem;
    color: var(--brown);
    margin-bottom: 12px;
}

.order-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.order-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 968px) {
    .about-hero-inner {
        flex-direction: column;
        gap: 36px;
        min-height: auto;
        text-align: center;
    }

    .about-hero-photo {
        flex: none;
        width: 220px;
    }

    .about-hero-intro {
        margin: 0 auto;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero-text h1 {
        font-size: 2.4rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .bio-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .bio-highlights {
        grid-template-columns: 1fr;
    }
}
