/*
Theme Name: Emerald Being
Theme URI: https://emeraldbeing.com
Author: Deirdre McNally
Author URI: https://emeraldbeing.com
Description: A premium, fast, and accessible WordPress theme for Emerald Being.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emerald-being
*/

/* ==========================================================================
   1. Design System & Variables
   ========================================================================== */
:root {
    /* -- Brand Colors -- */
    /* Primary */
    --color-emerald-heart: #134A3C;
    
    /* Secondary Greens */
    --color-soft-sage: #C8DCCF;
    --color-emerald-mist: #8FBFA8;
    --color-botanical-whisper: #A7CBB5;

    /* Gold Accents */
    --color-soft-gold-veil: #D7C3A3;
    --color-antique-gold: #C2A878;

    /* Feminine Pinks */
    --color-blush-quartz: #F2DAD8;
    --color-rose-silk: #E7C4C0;

    /* Neutrals */
    --color-ivory-petal: #FAF8F4;
    --color-champagne-ivory: #F7F3EC;
    --color-warm-sandstone: #D8D2C4;
    --color-soft-taupe: #B9B1A7;

    /* Accents */
    --color-winter-berry: #9C585C;

    /* -- Typography -- */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Dancing Script', cursive; /* Placeholder for script font */

    /* -- Spacing -- */
    --spacing-container: 1280px;
    --spacing-section: 100px;
    --spacing-section-mobile: 60px;
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-emerald-heart);
    background-color: var(--color-ivory-petal);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-emerald-heart);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* 40px - 64px */
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem); /* 32px - 48px */
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem); /* 24px - 32px */
}

p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.text-gold { color: var(--color-antique-gold); }
.text-sage { color: var(--color-soft-sage); }
.text-emerald { color: var(--color-emerald-heart); }

/* ==========================================================================
   4. Layout Utilities
   ========================================================================== */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-section) 0;
}

.section-hero {
    padding-top: 140px; /* Accounts for header */
    padding-bottom: var(--spacing-section);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }

/* ==========================================================================
   5. Components
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px; /* Soft radius */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-antique-gold);
    color: white;
}

.btn-primary:hover {
    background-color: #b09668; /* Darker gold */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-emerald-heart);
    color: var(--color-emerald-heart);
}

.btn-secondary:hover {
    background-color: var(--color-emerald-heart);
    color: white;
}

.btn-text {
    padding: 8px 0;
    background: none;
    color: var(--color-antique-gold);
    border-bottom: 1px solid var(--color-antique-gold);
    border-radius: 0;
}

/* Cards */
.card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(19, 74, 60, 0.05); /* Soft emerald shadow */
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(250, 248, 244, 0.95); /* Ivory Petal with opacity */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(19, 74, 60, 0.05);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-emerald-heart);
}

.nav-menu a:hover {
    color: var(--color-antique-gold);
}

/* Mobile Menu Placeholder (Basic) */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .nav-menu { display: none; } /* Implement JS toggle later */
    .mobile-menu-toggle { display: block; }
    
    h1 { font-size: 2.5rem; }
    .section { padding: var(--spacing-section-mobile) 0; }
}

/* Footer */
.site-footer {
    background-color: var(--color-emerald-heart);
    color: var(--color-ivory-petal);
    padding: 80px 0 40px;
    text-align: center;
}

.site-footer a {
    color: var(--color-soft-gold-veil);
}
