/* Book Page Styles */
body {
    margin: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

.book-content {
    background: #000000;
    padding-top: 60px;
}

.book-content .page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin-bottom: 4rem;
    padding: calc(60px + 4rem) 2rem 4rem;
}

.book-content .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.book-content .header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.book-content .header-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #e5c158;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.book-content .header-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.book-content .header-quote {
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.book-content .header-quote p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.book-content .header-quote cite {
    font-size: 1rem;
    opacity: 0.8;
}

.book-content .header-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin: 1rem auto 2rem;
    max-width: 700px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-line {
    width: 100px;
    height: 3px;
    background: #d4af37;
    margin: 0 auto;
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin: 4rem 0;
    align-items: start;
}

.book-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
}

.book-cover {
    text-align: center;
    padding: 0;
    background: none;
}

.book-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.book-cover img:hover {
    transform: scale(1.02);
}

.book-info h3, .book-description h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.book-details p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.book-description p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.book-description blockquote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    border-left: 4px solid #d4af37;
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.book-description blockquote cite {
    display: block;
    margin-top: 0.5rem;
    color: #d4af37;
    font-size: 1rem;
}

.book-links {
    text-align: center;
    margin-top: 2rem;
}

.learn-more-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.learn-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--background-color);
}

.critical-reception {
    margin: 4rem 0;
}

.album-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.review-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    margin-bottom: 1rem;
}

.review-quote {
    margin-bottom: 1rem;
}

.review-quote p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-quote cite {
    color: #d4af37;
    font-size: 0.9rem;
}

.review-detail {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.audiobook-section {
    margin: 4rem 0;
}

.audiobook-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.audiobook-info h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.audiobook-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.narrators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.narrator {
    text-align: center;
    flex: 1;
}

.narrator h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.narrator p {
    color: rgba(255, 255, 255, 0.7);
}

.narrator-details {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.narrator-details p {
    margin-bottom: 0.75rem;
}

.narrator-details p:last-child {
    margin-bottom: 0;
}

.narrator-details strong {
    color: #d4af37;
}

.audiobook-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.press-section {
    margin: 4rem 0;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.press-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.press-card:hover {
    transform: translateY(-5px);
}

.press-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #d4af37;
    margin-bottom: 1rem;
}

.press-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.site-footer {
    background: rgba(0, 0, 0, 0.9);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .book-grid,
    .album-reviews,
    .audiobook-content,
    .press-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .book-content .page-header {
        padding: calc(50px + 3rem) 1.5rem 3rem;
    }

    .book-content .header-content h1 {
        font-size: 2.8rem;
        line-height: 1.3;
    }

    .book-content .header-content {
        padding: 0 1rem;
    }

    .book-content .header-quote p {
        font-size: 1.1rem;
    }

    .page-header {
        height: 40vh;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

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

    .narrators {
        flex-direction: column;
    }

    .narrator {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    .book-content .page-header {
        min-height: auto;
        padding: calc(40px + 1.5rem) 1rem 1.5rem;
    }

    .book-content .header-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

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

    .book-content .header-quote {
        margin-top: 1rem;
    }

    .book-content .header-quote p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .book-content .header-quote cite {
        font-size: 0.9rem;
    }
}
