/* Books Page Styles */

.books-hero {
    padding: 140px 0 60px;
    background: var(--ivory-bg);
    text-align: center;
    position: relative;
}

.books-hero h1 {
    font-size: 4rem;
    color: var(--emerald-deep);
}

.quotes-section {
    padding: 100px 0;
    background: white;
}

.quote-card-stylized {
    margin-bottom: 120px;
    display: flex;
    justify-content: center;
}

.quote-image-container {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 173, 96, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.quote-image-container:hover {
    transform: translateY(-10px);
}

.quote-poster {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-bottom: 25px;
    filter: sepia(0.2) contrast(1.1);
}

.quote-author-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-top: 1px solid rgba(212, 173, 96, 0.2);
    padding-top: 20px;
    display: inline-block;
}

.books-list-section {
    padding: 100px 0;
    background: var(--emerald-deep);
    color: white;
}

.books-list-section h2 {
    color: var(--gold-muted);
    text-align: center;
    margin-bottom: 60px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.book-card-mini {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 173, 96, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.book-card-mini:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.book-card-mini h4 {
    color: var(--gold-muted);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.book-year {
    font-size: 1rem;
    color: var(--ivory-bg);
    opacity: 0.8;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.book-description {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .books-hero h1 {
        font-size: 3rem;
    }
    .quote-image-container {
        padding: 15px;
    }
    .quote-author-label {
        font-size: 1.4rem;
    }
}
