/* ========================================
   Home Page Styles
   ======================================== */

/* Hero Section */
.hero {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-author {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 100px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: 22px;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 35px;
}

.hero-cover {
    width: 400px;
    height: 600px;
    flex-shrink: 0;
    object-fit: cover;
}

.hero-cover.placeholder-image {
    font-size: 18px;
}

/* Pull Quote Section */
.pull-quote {
    padding: 80px 40px;
    background-color: var(--color-nav);
    position: relative;
}

.pull-quote::before,
.pull-quote::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--color-gold);
    opacity: 0.4;
}

.pull-quote::before {
    top: 0;
}

.pull-quote::after {
    bottom: 0;
}

.pull-quote blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-serif);
    font-size: 32px;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
    color: var(--color-text);
}

/* Featured Book Section */
.featured-book {
    padding: 100px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.featured-cover {
    width: 280px;
    height: 420px;
    margin: 0 auto 40px;
    object-fit: cover;
}

.featured-cover.placeholder-image {
    font-size: 16px;
}

.featured-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.featured-blurb {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.book-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.book-tag {
    font-size: 12px;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 6px 14px;
    letter-spacing: 0.5px;
}

/* About Snippet */
.about-snippet {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.author-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.author-photo.placeholder-image {
    font-size: 14px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Responsive - Home */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 60px;
    }

    .hero-cover {
        width: 280px;
        height: 420px;
    }

    .about-snippet {
        flex-direction: column;
        text-align: center;
    }

    .pull-quote blockquote {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 48px;
    }
}
