/* -----------------------------------------------------
   GLOBAL
----------------------------------------------------- */
body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: #f7f2e9; /* warm cream */
    color: #222;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -----------------------------------------------------
   HEADER
----------------------------------------------------- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 40px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 42px;
}

.tagline {
    font-size: 0.9rem;
    color: #cc0000;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.nav a {
    margin-left: 24px;
    text-decoration: none;
    color: #222;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.nav a:hover {
    opacity: 0.7;
}

/* -----------------------------------------------------
   FEATURED QUOTE (UPGRADED)
----------------------------------------------------- */
.featured-quote {
    max-width: 820px;
    margin: 80px auto 60px;
    padding: 50px 60px;
    font-size: 2.4rem;
    font-weight: 600;
    font-style: italic;
    color: #222;
    text-align: center;
    line-height: 1.35;
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.featured-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 30px;
    width: 5px;
    background: #cc0000;
    border-radius: 3px;
}

.quote-mark {
    font-size: 3rem;
    color: #cc0000;
    font-style: normal;
}

.featured-quote .quote-author {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #cc0000;
}

/* -----------------------------------------------------
   HERO SPLIT (ENHANCED IMPACT)
----------------------------------------------------- */
.hero-split {
    padding: 120px 0 100px;
    background: #f7f2e9; /* match site background */
    }
    
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.hero-left {
    flex: 1;
    text-align: center;
}

.book-cover-split {
    max-width: 460px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    border-radius: 4px;
}

.hero-right {
    flex: 1;
    max-width: 560px;
}

.hero-right {
    padding-top: 20px; /* restores spacing lost when logo/tagline were removed */
}

.hero-subtitle {
    font-size: 1.45rem;
    margin-bottom: 30px;
    color: #444;
    line-height: 1.5;
    max-width: 500px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-top: 30px;
    color: #444;
    max-width: 520px;
}

/* -----------------------------------------------------
   CTA BUTTON (UPGRADED)
----------------------------------------------------- */
.cta-button {
    display: inline-block;
    padding: 16px 34px;
    background: #cc0000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 18px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #a30000;
    transform: translateY(-1px);
}

/* -----------------------------------------------------
   SECTIONS (TIGHTER + MORE PREMIUM)
----------------------------------------------------- */
section {
    padding: 80px 40px;
    max-width: 760px;
    margin: auto;
}

h2 {
    margin-bottom: 24px;
    color: #cc0000;
    font-size: 2rem;
    font-family: "Georgia", serif;
}

blockquote {
    margin: 24px 0;
    padding-left: 22px;
    border-left: 4px solid #cc0000;
    font-style: italic;
}

.quote-author {
    display: block;
    margin-top: 10px;
    font-weight: 700;
}

/* -----------------------------------------------------
   EXCERPTS
----------------------------------------------------- */
.excerpt {
    background: #fff;
    padding: 30px 34px;
    border-radius: 6px;
    border-left: 4px solid #cc0000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.read-more {
    display: inline-block;
    margin-top: 14px;
    color: #cc0000;
    text-decoration: none;
    font-weight: 700;
}

.read-more:hover {
    text-decoration: underline;
}

/* -----------------------------------------------------
   EMAIL SIGNUP
----------------------------------------------------- */
.notify form {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.notify input {
    flex: 1;
    padding: 13px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.notify button {
    padding: 13px 26px;
    background: #cc0000;
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.notify button:hover {
    background: #a30000;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
.footer {
    text-align: center;
    padding: 26px;
    background: #f5f5f5;
    margin-top: 70px;
    font-size: 0.95rem;
    color: #555;
}

/* -----------------------------------------------------
   RESPONSIVE
----------------------------------------------------- */
@media (max-width: 900px) {

    .hero-inner {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
    }

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

    .hero-title {
        font-size: 2.8rem;
    }

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

@media (max-width: 600px) {

    .featured-quote {
        padding: 30px 20px;
        font-size: 1.8rem;
    }

    .featured-quote::before {
        left: 10px;
    }

    section {
        padding: 60px 20px;
    }
}