/* ============================================================
   Troop 195 Mulch Sale — Site Stylesheet
   Design: Forest-green & warm tan, editorial / scout-heritage
   ============================================================ */

/* ── Custom Properties ────────────────────────────────────── */
:root {
    --green-dark:   #1a3d2b;
    --green-mid:    #2e6b47;
    --green-light:  #4d9e6f;
    --gold:         #c89a2e;
    --gold-light:   #f0cb6a;
    --tan-bg:       #f5f0e8;
    --tan-card:     #fdf9f3;
    --brown:        #6b4c2a;
    --text-dark:    #1c1c1c;
    --text-mid:     #3d3d3d;
    --text-muted:   #767676;
    --white:        #ffffff;
    --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
    --shadow-md:    0 6px 24px rgba(0,0,0,.12);
    --radius:       6px;
    --radius-lg:    12px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;
    --max-w:        1140px;
    --header-h:     72px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    background: var(--tan-bg);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img { display: block; max-width: 100%; }
a   { color: var(--green-mid); text-decoration: none; }
a:hover { color: var(--green-light); text-decoration: underline; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: .75rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background .2s, color .2s, transform .15s;
    text-align: center;
    text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn--primary   { background: var(--green-mid); color: var(--white); }
.btn--primary:hover { background: var(--green-dark); color: var(--white); }
.btn--gold      { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #a67e24; color: var(--white); }
.btn--outline   { border-color: var(--green-mid); color: var(--green-mid); background: transparent; }
.btn--outline:hover { background: var(--green-mid); color: var(--white); }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: var(--green-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}
.brand-badge {
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-troop {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 700;
}
.brand-sub { font-size: .72rem; color: var(--gold-light); letter-spacing: .08em; text-transform: uppercase; }

.site-nav ul { list-style: none; display: flex; gap: 2rem; }
.site-nav a { color: var(--tan-bg); font-weight: 600; font-size: .95rem; letter-spacing: .03em; }
.site-nav a:hover { color: var(--gold-light); text-decoration: none; }

/* ── Main ─────────────────────────────────────────────────── */
.site-main { flex: 1; }

/* ── Coming Soon Page ─────────────────────────────────────── */
.coming-soon {
    min-height: calc(100vh - var(--header-h) - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Decorative pine-tree silhouette background */
.coming-soon::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 110%, rgba(46,107,71,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 15% 80%, rgba(200,154,46,.07) 0%, transparent 60%);
    pointer-events: none;
}

.coming-soon__inner {
    position: relative;
    text-align: center;
    max-width: 680px;
}

.coming-soon__emblem {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.coming-soon__eyebrow {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.coming-soon__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.coming-soon__headline span { color: var(--green-mid); }

.coming-soon__sub {
    font-size: 1.15rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.coming-soon__eta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--tan-card);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: .8rem 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
}
.coming-soon__eta-icon { font-size: 1.4rem; }
.coming-soon__eta-text { font-size: .95rem; color: var(--text-mid); }
.coming-soon__eta-text strong { color: var(--brown); }

.coming-soon__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}
.feature-card {
    background: var(--tan-card);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--green-light);
    transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card__icon { font-size: 1.8rem; margin-bottom: .5rem; }
.feature-card__title { font-weight: 700; font-size: .95rem; color: var(--green-dark); }
.feature-card__desc  { font-size: .82rem; color: var(--text-muted); margin-top: .25rem; }

.coming-soon__notify { font-size: .88rem; color: var(--text-muted); margin-top: 1.5rem; }
.coming-soon__notify a { color: var(--green-mid); font-weight: 600; }

/* ── Flash Messages ───────────────────────────────────────── */
.flash {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    position: relative;
}
.flash--success { background: #e6f4ec; border-left: 4px solid #2e7d52; color: #1a4d32; }
.flash--error   { background: #fdecea; border-left: 4px solid #c62828; color: #7b1111; }
.flash--warning { background: #fff8e1; border-left: 4px solid var(--gold); color: #7a5c00; }
.flash--info    { background: #e3f2fd; border-left: 4px solid #1565c0; color: #0d3c6e; }
.flash-icon { font-size: 1.2rem; }
.flash p    { flex: 1; margin: 0; font-size: .95rem; }
.flash-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: .5;
    line-height: 1;
}
.flash-close:hover { opacity: 1; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    background: var(--green-dark);
    color: rgba(255,255,255,.75);
    padding: 2.5rem 0;
    margin-top: auto;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: start;
}
.footer-troop   { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.footer-tagline { font-size: .82rem; color: var(--gold-light); margin-top: .2rem; }
.footer-links   { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.75); font-size: .9rem; }
.footer-links a:hover { color: var(--gold-light); text-decoration: none; }
.footer-legal p { font-size: .78rem; margin-bottom: .3rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
    .site-nav ul { gap: 1rem; }
    .coming-soon__features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
    .brand-sub { display: none; }
    .coming-soon__features { grid-template-columns: 1fr; }
}
