:root {
    /* Green & Yellow Light Theme */
    --base-bg: #72c572;           /* very light green background */
    --accent-green: #28a745;      /* bright green for highlights */
    --accent-yellow: #ffd500;     /* yellow text and accents */
    --text-main: var(--accent-yellow); /* all main text yellow */
    --text-muted: #b3e6b3;        /* lighter green for subtle text */
    --section-bg: #d4f0d4;        /* section/card background */
    --border-light: #a3d9a3;      /* soft green borders */
}

/* Body */
/* Body (main text) */
body {
    background-color: var(--base-bg);
    color: var(--text-main);
    font-family: 'Patrick Hand', cursive;  /* handwritten body */
    overflow-x: hidden;
    line-height: 1.7;
}

/* Headings (serif-style handwritten) */
.serif-heading { 
    font-family: 'Shadows Into Light', cursive; 
    color: var(--text-main); 
}

/* Accent / cursive text */
.cursive-accent { 
    font-family: 'Gloria Hallelujah', cursive; 
    color: var(--accent-green); 
}

/* Uppercase small caps style */
.sc { 
    text-transform: uppercase; 
    letter-spacing: 0.2em; 
    font-size: 0.75rem; 
    font-weight: 700; 
    color: var(--accent-green); 
}
/* Mega Titles */
.mega-title { 
    font-size: clamp(3rem, 10vw, 10rem); 
    line-height: 1; 
    letter-spacing: -0.02em; 
    color: var(--text-main); 
    font-family: 'Lora', serif;
}

/* Layout Utilities */
.glass-nav { 
    background: rgba(230, 249, 230, 0.85); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid var(--border-light); 
}
.editorial-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* Animations */
.reveal-text {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    animation: textRise 1.2s ease-out forwards;
}
@keyframes textRise {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 1s ease-out; }
.scroll-reveal.active { opacity: 1; transform: translateY(0); }

/* Buttons */
.btn-cinematic {
    padding: 0.9rem 2rem;
    border: 2px solid var(--accent-green);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    transition: all 0.4s;
    background: transparent;
    position: relative;
    color: var(--text-main);  /* yellow text */
    border-radius: 5px;
}
.btn-cinematic:hover {
    background: var(--accent-green);
    color: var(--accent-yellow);  /* yellow text on hover */
    box-shadow: 0 0 15px var(--accent-green);
}

/* Story Images */
.story-image-container { overflow: hidden; position: relative; border-radius: 10px; }
.story-image-container img { 
    transition: transform 1.8s ease, filter 1.8s ease; 
    filter: brightness(0.95) contrast(1.05); 
    border-radius: 10px;
}
.story-image-container:hover img { 
    transform: scale(1.05); 
    filter: brightness(1) contrast(1.1); 
}

/* Overlays */
#search-overlay, #cart-overlay {
    position: fixed; inset: 0; z-index: 9999; background: rgba(230,249,230,0.95);
    display: none; flex-direction: column; align-items: center; justify-content: center;
    padding: 2rem;
}

/* Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
