/* ============================================================
   Flourish in the Word — Custom Theme CSS
   Palette: blush, sage, cream, gold
   Fonts: Cormorant Garamond (headers), Lato (body)
   Inspired by: Ruth Chou Simons, Well Watered Women
   ============================================================ */

:root {
    --blush:  #E8C4B8;
    --sage:   #A8C4A2;
    --cream:  #FAF5EF;
    --gold:   #C9975A;
    --gold-dark: #A87A42;
    --dark:   #2E2C2A;
    --muted:  #7A736C;
    --white:  #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.75;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}
h1 { font-size: 3.2rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.7rem; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); }

/* ---- FLORAL SVG DECORATIVE ELEMENTS ---- */
.floral-divider {
    text-align: center;
    margin: 2rem 0;
    color: var(--blush);
    font-size: 0.9rem;
    letter-spacing: 0.6rem;
    font-family: Georgia, serif;
}

/* Floral row in hero */
.hero-florals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin: 1rem 0;
}
.hero-florals span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blush);
    opacity: 0.7;
}
.hero-florals span.lg {
    width: 10px;
    height: 10px;
    background: var(--gold);
    opacity: 0.5;
}

.floral-corner {
    position: absolute;
    opacity: 0.18;
    pointer-events: none;
}

/* ---- HEADER / NAV ---- */
header {
    background: var(--white);
    border-bottom: 1px solid var(--blush);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(200,150,120,0.08);
}

.navbar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.03rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo:hover { color: var(--gold); }
.logo-leaf { color: var(--sage); font-size: 1.2rem; }

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-menu a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-menu a:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #F5E6DC 0%, #EAD8CE 40%, #D9E8D4 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.hero-botanical {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* SVG botanical branches in hero corners */
.hero-botanical::before,
.hero-botanical::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.22;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 3.6rem;
}

.hero-script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.hero p.subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-florals {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.2rem 0;
    color: var(--blush);
    font-size: 1.6rem;
    opacity: 0.7;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ---- SCRIPTURE BANNER ---- */
.scripture-banner {
    background: var(--white);
    border-top: 2px solid var(--blush);
    border-bottom: 2px solid var(--blush);
    padding: 2.5rem 2rem;
    text-align: center;
    margin: 3rem 0;
}
.scripture-banner blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 0.75rem;
    line-height: 1.6;
}
.scripture-banner cite {
    font-size: 0.9rem;
    color: var(--muted);
    letter-spacing: 0.05rem;
}

/* ---- SECTIONS ---- */
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header h2 { color: var(--dark); margin-bottom: 0.5rem; }
.section-header .section-sub {
    font-style: italic;
    color: var(--muted);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

/* ---- CARDS ---- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(232,196,184,0.4);
    transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 30px rgba(180,130,100,0.12); transform: translateY(-2px); }

.card-tag {
    display: inline-block;
    background: var(--sage);
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.card-body { padding: 1.8rem; }
.card-body h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.card-body h3 a { color: var(--dark); }
.card-body h3 a:hover { color: var(--gold); }
.card-body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.7; }
.card-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; }

/* ---- FEATURED SECTION ---- */
.featured { background: var(--cream); }

/* ---- ABOUT STRIP ---- */
.about-strip {
    background: linear-gradient(135deg, #EAD8CE 0%, #D9E8D4 100%);
    padding: 4rem 2rem;
}
.about-strip-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.about-strip h2 { color: var(--dark); margin-bottom: 1rem; }
.about-strip p { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.8; }

/* ---- SINGLE POST ---- */
.post-header { text-align: center; padding: 3rem 2rem 2rem; }
.post-header h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.post-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

.post-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark);
}
.post-content h2 { margin: 2.5rem 0 1rem; }
.post-content h3 { margin: 2rem 0 0.75rem; }
.post-content p { margin-bottom: 1.5rem; }
.post-content blockquote {
    border-left: 3px solid var(--blush);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--muted);
    background: var(--white);
    border-radius: 0 4px 4px 0;
}

/* ---- FOOTER ---- */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 3rem 2rem;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--blush);
    margin-bottom: 0.5rem;
}
footer p { font-size: 0.85rem; margin-bottom: 0.4rem; }
footer a { color: var(--blush); }
.footer-florals { color: var(--blush); opacity: 0.4; font-size: 1.2rem; margin: 1rem 0; letter-spacing: 0.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .hero h1 { font-size: 2.6rem; }
    .nav-menu { gap: 1rem; }
    .nav-menu a { font-size: 0.82rem; }
    .card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .navbar { flex-direction: column; gap: 1rem; }
    .nav-menu { flex-wrap: wrap; justify-content: center; }
}
