/* ========================================
   FORCE DARK BACKGROUND - ARBUTUS OVERRIDE
   ======================================== */

html,
html body,
body.page,
body.home,
body.blog,
#page,
#content,
#primary,
.site,
.site-content,
.content-area,
.wp-site-blocks,
.entry-content,
.page-content,
.wp-block-post-content,
main,
main.wp-block-group {
    background-color: #1a1a1a !important;
    color: #f7f3ec !important;
}

/* Force all block editor sections dark */
.wp-block-group,
.wp-block-cover,
.wp-block-columns,
.wp-block-column {
    background-color: #1a1a1a !important;/* ========================================
   HOMEPAGE HERO / BANNER
   Dark Romance - Red Glow Effect
   ======================================== */

/* ----- HERO WRAPPER ----- */
.hero-banner {
    position: relative;
    background-color: #0a0a0a;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    overflow: hidden;
}

/* ----- RED ATMOSPHERIC GLOW (background effect) ----- */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(196, 30, 58, 0.35) 0%,
        rgba(139, 0, 0, 0.15) 40%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ----- SUBTLE TEXTURE OVERLAY ----- */
.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(26, 10, 15, 0.4) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* ----- LEFT CONTENT (Text Side) ----- */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
}

.hero-label {
    color: #888 !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 0.85em !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    margin-bottom: 10px !important;
    display: block;
}

.hero-title {
    color: #C41E3A !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 3.8em !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin: 0 0 20px 0 !important;
    border-bottom: none !important;
    text-shadow: 0 0 30px rgba(196, 30, 58, 0.4);
}

.hero-subtitle {
    color: #C9A84C !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.1em !important;
    font-style: italic !important;
    line-height: 1.7 !important;
    margin-bottom: 35px !important;
}

/* ----- HERO CTA BUTTON ----- */
.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #8B0000, #C41E3A) !important;
    color: #f7f3ec !important;
    padding: 16px 45px !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 0.85em !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    border: 1px solid rgba(201, 168, 76, 0.3) !important;
    border-radius: 2px !important;
    text-decoration: none !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.3);
}

.hero-cta:hover {
    background: linear-gradient(135deg, #C9A84C, #FFBF00) !important;
    color: #1a1a1a !important;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.4),
                0 0 60px rgba(139, 0, 0, 0.2) !important;
    transform: translateY(-3px);
    text-shadow: none !important;
}

/* ----- RIGHT CONTENT (Book Cover Side) ----- */
.hero-book {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Red glow behind book cover */
.hero-book::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 450px;
    background: radial-gradient(
        ellipse,
        rgba(196, 30, 58, 0.5) 0%,
        rgba(139, 0, 0, 0.2) 50%,
        transparent 75%
    );
    border-radius: 50%;
    z-index: -1;
}

.hero-book img {
    width: 280px !important;
    border: 2px solid rgba(201, 168, 76, 0.4) !important;
    box-shadow: 
        0 0 40px rgba(139, 0, 0, 0.5),
        0 0 80px rgba(139, 0, 0, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.8) !important;
    border-radius: 3px;
    transition: all 0.5s ease;
}

.hero-book img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 
        0 0 60px rgba(139, 0, 0, 0.7),
        0 0 100px rgba(139, 0, 0, 0.3),
        0 30px 80px rgba(0, 0, 0, 0.9) !important;
    border-color: #C9A84C !important;
}

/* ----- BESTSELLERS / BOOKS SECTION ----- */
.books-section {
    position: relative;
    padding: 80px 60px;
    background: 
        linear-gradient(
            rgba(10, 10, 10, 0.85),
            rgba(10, 10, 10, 0.85)
        ),
        url('YOUR-SATIN-TEXTURE-IMAGE-URL') center/cover no-repeat;
    text-align: center;
}

.books-section-title {
    color: #f7f3ec !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2.5em !important;
    letter-spacing: 6px !important;
    text-transform: uppercase !important;
    margin-bottom: 50px !important;
    border-bottom: none !important;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* ----- RESPONSIVE HERO ----- */
@media (max-width: 768px) {
    .hero-banner {
        flex-direction: column;
        padding: 40px 25px;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        order: 2;
        margin-top: 30px;
    }

    .hero-book {
        order: 1;
    }

    .hero-book img {
        width: 200px !important;
    }

    .hero-title {
        font-size: 2.5em !important;
    }

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}