/*
Theme Name: Eternal Abundance Replica
Description: A clean, organic split-screen theme optimized with a typography title header, full-width interior pages, and dynamic header/footer menus.
Version: 1.6.2
Author: Custom Developer
*/

/* Reset & Variables */
:root {
    --bg-cream: #F7F5F0;
    --text-dark: #1C2414;
    --text-muted: #555E4E;
    --accent-green: #2C4A21;
    --footer-bg: #1C2414;
    --footer-text: #F7F5F0;
    --footer-muted: #A3AFA0;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
}

/* Header Navigation - Standard and Fixed on All Pages */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--bg-cream);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo h1 a {
    text-decoration: none;
    color: var(--text-dark);
}

.nav-menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu-list .menu-item a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu-list .menu-item a:hover {
    color: var(--accent-green);
}

.header-phone a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* ==========================================================================
   HOMEPAGE ONLY LAYOUT (SPLIT SCREEN)
   ========================================================================== */
   
.home .split-container {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: calc(100vh - 80px);
}

.home .left-hero {
    display: block;
    position: sticky;
    top: 80px; 
    height: calc(100vh - 80px);
    background-image: url('images/hero-kale.jpg'); 
    background-size: cover;
    background-position: center;
}

.home .right-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home .tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.home .main-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 30px;
}

.home .main-title em {
    font-style: italic;
}

.home .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
}

/* ==========================================================================
   INTERIOR PAGES LAYOUT (CLEAN & SIMPLE FULL WIDTH)
   ========================================================================== */

/* Hides the home screen hero track completely on inner pages */
.left-hero {
    display: none;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.right-content h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.right-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    max-width: 800px;
}

/* ==========================================================================
   GLOBAL UTILITIES: NAVIGATION BLOCKS, FEATURES & FOOTER
   ========================================================================== */

/* Navigation Cards Block (Home Menu Row) */
.navigation-blocks {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.nav-block-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    text-decoration: none;
    color: var(--text-dark);
    transition: padding-left 0.3s ease;
}

.nav-block-item:hover {
    padding-left: 10px;
}

.block-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-right: 20px;
}

.block-text h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
}

.block-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Brand Grid Features */
.brand-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 40px;
    background-color: var(--bg-cream);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.feature-item {
    padding: 0 20px;
}

.feature-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Combined Site Footer Wrapper (True Dark Theme) */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 100px 60px 40px 60px;
}

/* Big Philosophy Slogan Block */
.footer-slogan {
    margin-bottom: 100px;
}

.footer-slogan h2 {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.footer-slogan .slogan-white {
    color: #ffffff;
    display: block;
}

.footer-slogan .slogan-muted {
    color: #37462E; /* Earthy olive accent tone */
    display: block;
}

/* Grid Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 60px;
}

.footer-col h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--footer-muted);
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 0.95rem;
    color: #ffffff;
}

/* Dynamic Footer Menu Configuration */
.footer-menu-list {
    list-style: none;
}

.footer-menu-list .menu-item {
    margin-bottom: 12px;
}

.footer-menu-list .menu-item a {
    text-decoration: none;
    color: #ffffff;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-menu-list .menu-item a:hover {
    color: var(--footer-muted);
}

/* Legal & Copyright Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    font-size: 0.85rem;
    color: var(--footer-muted);
}

/* ==========================================================================
   RESPONSIVE LAYOUT (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 968px) {
    .home .split-container {
        grid-template-columns: 1fr;
    }
    .home .left-hero {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
    }
    .split-container {
        padding: 40px 20px;
    }
    .home .right-content {
        padding: 40px 20px;
    }
    .home .main-title {
        font-size: 2.5rem;
    }
    .right-content h1 {
        font-size: 2.5rem;
    }
    .site-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .nav-menu-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .brand-features {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    .site-footer {
        padding: 60px 20px 30px 20px;
    }
    .footer-slogan h2 {
        font-size: 3rem;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}