/* Publications Page Specific Styles */

/* Publications Hero */
.publications-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #f0f4ff 100%);
    text-align: center;
}

.publications-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Book Section */
.featured-book {
    padding: 80px 0;
    background-color: white;
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.book-cover-container {
    position: relative;
    text-align: center;
}

.book-cover {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.book-cover:hover {
    transform: translateY(-10px);
}

.book-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.badge {
    background: #A6C1EE;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.book-title {
    font-size: 3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.book-subtitle {
    font-size: 1.3rem;
    color: #A6C1EE;
    font-style: italic;
    margin-bottom: 30px;
}

.book-description {
    margin-bottom: 40px;
}

.book-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.book-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: #FAFAFA;
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #A6C1EE;
    line-height: 1;
}


.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    margin-top: 5px;
}

.book-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Book Themes */
.book-themes {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.theme-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.theme-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.theme-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.theme-card p {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
}


/* Writing Process */
.writing-process {
    padding: 80px 0;
    background-color: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #A6C1EE, #7E9F74);
}

.step-marker {
    background: #A6C1EE;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(166, 193, 238, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.step-content p {
    color: #666666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #FAFAFA;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-rating {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    margin-bottom: 15px;
}

.review-card blockquote {
    font-style: italic;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.review-card cite {
    color: #A6C1EE;
    font-weight: 500;
    font-style: normal;
    display: block;
    margin-bottom: 8px;
}

.review-date {
    font-size: 0.8rem;
    color: #888888;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #A6C1EE 0%, #8fb0e8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background-color: white;
    color: #A6C1EE;
    font-weight: 600;
}

.cta-buttons .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background-color: #7E9F74;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: #6d8a63;
}

/* Responsive Design */
@media (max-width: 768px) {
    .publications-hero {
        padding: 120px 0 60px;
    }

    .publications-hero h1 {
        font-size: 2.5rem;
    }

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

    .featured-book,
    .book-themes,
    .writing-process,
    .reviews-section,
    .cta-section {
        padding: 60px 0;
    }

    .book-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .book-subtitle {
        font-size: 1.1rem;
    }

    .book-description p {
        font-size: 1rem;
    }

    .book-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }

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

    .book-actions {
        justify-content: center;
    }

    .themes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .theme-card {
        padding: 30px 20px;
    }


    .process-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }

    .process-step::after {
        display: none;
    }

    .step-marker {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .cta-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .publications-hero h1 {
        font-size: 2rem;
    }

    .book-cover {
        max-width: 250px;
        height: auto;
    }

    .book-title {
        font-size: 1.5rem;
    }

    .book-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    

    .theme-card {
        padding: 25px 15px;
    }

    .theme-icon {
        font-size: 2.5rem;
    }


    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .review-card {
        padding: 20px;
    }
}
