/*
Theme Name: Youth Camps Texas
Theme URI: https://youthcamps.broadbandfabric.net
Author: Broadband Fabric Partners
Author URI: https://broadbandfabric.net
Description: A warm, nature-themed WordPress theme for Texas Youth Camps Grant Assistance Campaign
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: youthcamps-texas

Design Recommendations from Ollama Models (Mistral, Qwen3):
- Forest Green: #2E8B57
- Wood Brown: #A0522D
- Sky Blue: #4F86D9
- Sunshine Yellow: #FFDC6B
- Sand Beige: #F5F5DC
*/

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
    /* Primary Colors - From Ollama Mistral */
    --color-forest: #2E8B57;
    --color-forest-dark: #1E6B47;
    --color-forest-light: #4EAB77;
    
    --color-wood: #A0522D;
    --color-wood-dark: #804020;
    --color-wood-light: #C0724D;
    
    --color-sky: #4F86D9;
    --color-sky-dark: #3A6AAD;
    --color-sky-light: #7AAAE9;
    --color-sky-gradient: linear-gradient(180deg, #87CEEB 0%, #4F86D9 50%, #3A6AAD 100%);
    
    --color-sunshine: #FFDC6B;
    --color-sunshine-dark: #F5C842;
    --color-sunshine-light: #FFE898;
    
    --color-sand: #F5F5DC;
    --color-sand-dark: #E5E5C0;
    --color-sand-light: #FAFAEC;
    
    /* Extended Nature Palette */
    --color-cypress: #5A7C57;
    --color-sage: #8D7A5D;
    --color-azure: #4593C4;
    --color-sienna: #A67C52;
    --color-cream: #FFF8E7;
    
    /* Text Colors */
    --color-text-primary: #2D3436;
    --color-text-secondary: #4A5568;
    --color-text-light: #718096;
    --color-text-white: #FFFFFF;
    
    /* Typography - From Ollama */
    --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-accent: 'Pacifico', cursive;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-glow: 0 0 30px rgba(255,220,107,0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-forest-dark);
    margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
}

a {
    color: var(--color-forest);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-wood);
}

/* ============================================
   HERO SECTION - NATURE PARALLAX
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-sky-gradient);
}

/* Sky Background */
.hero-sky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #87CEEB 0%,
        #6BB3E0 30%,
        #4F86D9 60%,
        #3A6AAD 100%
    );
    z-index: 1;
}

/* Sun */
.hero-sun {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #FFE898 0%, #FFDC6B 50%, #F5C842 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 60px rgba(255,220,107,0.8),
        0 0 120px rgba(255,220,107,0.4);
    z-index: 2;
    animation: sun-glow 4s ease-in-out infinite;
}

@keyframes sun-glow {
    0%, 100% { box-shadow: 0 0 60px rgba(255,220,107,0.8), 0 0 120px rgba(255,220,107,0.4); }
    50% { box-shadow: 0 0 80px rgba(255,220,107,1), 0 0 160px rgba(255,220,107,0.6); }
}

/* Clouds */
.cloud {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border-radius: 100px;
    z-index: 3;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud-1 {
    width: 200px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation: float-cloud 25s linear infinite;
}

.cloud-1::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 20px;
}

.cloud-1::after {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 70px;
}

.cloud-2 {
    width: 150px;
    height: 50px;
    top: 25%;
    left: 60%;
    animation: float-cloud 30s linear infinite;
    animation-delay: -10s;
}

.cloud-2::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud-2::after {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 50px;
}

.cloud-3 {
    width: 180px;
    height: 55px;
    top: 8%;
    left: 40%;
    animation: float-cloud 35s linear infinite;
    animation-delay: -5s;
}

.cloud-3::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 25px;
}

.cloud-3::after {
    width: 90px;
    height: 90px;
    top: -45px;
    left: 70px;
}

@keyframes float-cloud {
    0% { transform: translateX(-100vw); }
    100% { transform: translateX(100vw); }
}

/* Mountain/Hill Layers */
.mountains {
    position: absolute;
    bottom: 25%;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 4;
}

.mountain-back {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: var(--color-cypress);
    clip-path: polygon(0 100%, 15% 40%, 30% 70%, 45% 30%, 60% 60%, 75% 25%, 90% 55%, 100% 35%, 100% 100%);
    opacity: 0.6;
}

.mountain-front {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 80%;
    background: var(--color-forest);
    clip-path: polygon(0 100%, 10% 60%, 25% 80%, 40% 45%, 55% 70%, 70% 40%, 85% 65%, 100% 50%, 100% 100%);
    opacity: 0.8;
}

/* Tree Layers - Parallax */
.trees-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 5;
}

.tree-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: auto 100%;
}

.tree-layer-back {
    height: 50%;
    background-color: var(--color-forest);
    opacity: 0.7;
    clip-path: polygon(
        0 100%, 
        0 60%, 5% 40%, 10% 55%, 15% 35%, 20% 50%, 25% 30%, 30% 45%, 35% 25%, 40% 40%,
        45% 20%, 50% 35%, 55% 15%, 60% 30%, 65% 10%, 70% 25%, 75% 5%, 80% 20%, 85% 10%, 90% 25%, 95% 15%, 100% 30%,
        100% 100%
    );
}

.tree-layer-mid {
    height: 45%;
    background-color: var(--color-forest-dark);
    opacity: 0.85;
    clip-path: polygon(
        0 100%,
        0 70%, 3% 50%, 6% 65%, 9% 45%, 12% 60%, 15% 40%, 18% 55%, 21% 35%, 24% 50%, 27% 30%,
        30% 45%, 33% 25%, 36% 40%, 39% 20%, 42% 35%, 45% 15%, 48% 30%, 51% 10%, 54% 25%, 57% 5%,
        60% 20%, 63% 0%, 66% 15%, 69% 5%, 72% 20%, 75% 10%, 78% 25%, 81% 15%, 84% 30%, 87% 20%,
        90% 35%, 93% 25%, 96% 40%, 100% 30%,
        100% 100%
    );
}

.tree-layer-front {
    height: 40%;
    background-color: #1A4D2E;
    clip-path: polygon(
        0 100%,
        0 80%, 2% 60%, 4% 75%, 6% 55%, 8% 70%, 10% 50%, 12% 65%, 14% 45%, 16% 60%, 18% 40%,
        20% 55%, 22% 35%, 24% 50%, 26% 30%, 28% 45%, 30% 25%, 32% 40%, 34% 20%, 36% 35%, 38% 15%,
        40% 30%, 42% 10%, 44% 25%, 46% 5%, 48% 20%, 50% 0%, 52% 15%, 54% 5%, 56% 20%, 58% 10%,
        60% 25%, 62% 15%, 64% 30%, 66% 20%, 68% 35%, 70% 25%, 72% 40%, 74% 30%, 76% 45%, 78% 35%,
        80% 50%, 82% 40%, 84% 55%, 86% 45%, 88% 60%, 90% 50%, 92% 65%, 94% 55%, 96% 70%, 98% 60%, 100% 75%,
        100% 100%
    );
}

/* Ground/Grass */
.ground {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(180deg, var(--color-sage) 0%, var(--color-wood) 100%);
    z-index: 6;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    color: var(--color-forest);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-text-white);
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
}

.hero-title-accent {
    font-family: var(--font-accent);
    color: var(--color-sunshine);
    display: block;
    font-size: 0.6em;
    text-shadow: 2px 3px 6px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.6;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-wood) 0%, var(--color-sienna) 100%);
    color: var(--color-text-white);
    box-shadow: 0 4px 20px rgba(160,82,45,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(160,82,45,0.5);
    color: var(--color-text-white);
}

.btn-secondary {
    background: rgba(255,255,255,0.95);
    color: var(--color-forest);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--color-text-white);
    color: var(--color-forest-dark);
}

.btn-icon {
    margin-left: 0.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
    padding: 0.75rem var(--space-md);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-white);
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}

.site-header.scrolled .site-logo-text {
    color: var(--color-forest);
    text-shadow: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sunshine);
    transition: width var(--transition-normal);
}

.main-nav a:hover::after {
    width: 100%;
}

.site-header.scrolled .main-nav a {
    color: var(--color-text-primary);
    text-shadow: none;
}

.site-header.scrolled .main-nav a::after {
    background: var(--color-forest);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--color-text-white);
    margin: 6px auto;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--color-forest);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-forest);
        padding: var(--space-xl) var(--space-md);
        transition: right var(--transition-normal);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .main-nav a {
        font-size: 1.25rem;
        padding: 1rem 0;
        display: block;
    }
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.section {
    padding: var(--space-xxl) var(--space-md);
}

.section-alt {
    background: var(--color-sand);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section-badge {
    display: inline-block;
    background: var(--color-forest);
    color: var(--color-text-white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-forest-dark);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

/* ============================================
   HOW IT WORKS - PROCESS STEPS
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.process-card {
    background: var(--color-text-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-forest), var(--color-sky));
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-cypress) 100%);
    color: var(--color-text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

.process-title {
    font-size: 1.25rem;
    color: var(--color-forest-dark);
    margin-bottom: var(--space-xs);
}

.process-description {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* ============================================
   ABOUT SECTION - TRAGEDY CONTEXT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.about-image-overlay p {
    color: var(--color-text-white);
    font-size: 0.875rem;
    margin: 0;
}

.about-content h2 {
    color: var(--color-forest-dark);
}

.about-content p {
    margin-bottom: var(--space-md);
}

.highlight-box {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-cypress) 100%);
    color: var(--color-text-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

.highlight-box h4 {
    color: var(--color-sunshine);
    margin-bottom: var(--space-xs);
}

.highlight-box p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ============================================
   LEGISLATION CARDS
   ============================================ */
.legislation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.legislation-card {
    background: var(--color-text-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--color-forest);
    transition: all var(--transition-normal);
}

.legislation-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.legislation-card h3 {
    color: var(--color-forest);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legislation-card .bill-badge {
    background: var(--color-sunshine);
    color: var(--color-wood-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============================================
   REGISTRATION FORM
   ============================================ */
.registration-section {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.registration-section .section-header {
    position: relative;
    z-index: 1;
}

.registration-section .section-title {
    color: var(--color-text-white);
}

.registration-section .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.registration-form {
    position: relative;
    z-index: 1;
    background: var(--color-text-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--color-sand-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    background: var(--color-sand-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-forest);
    box-shadow: 0 0 0 4px rgba(46,139,87,0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: var(--space-sm);
}

.form-submit .btn {
    min-width: 250px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-text-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-cypress) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--color-forest-dark);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--color-text-secondary);
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-forest-dark);
    color: rgba(255,255,255,0.8);
    padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand h3 {
    color: var(--color-text-white);
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--color-sunshine);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-sunshine);
}

.footer-bottom {
    max-width: 1200px;
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    html { font-size: 15px; }
}

@media (max-width: 900px) {
    html { font-size: 14px; }
    
    .hero-section { min-height: 90vh; }
    .hero-sun { width: 80px; height: 80px; }
}

@media (max-width: 600px) {
    .hero-content { padding: var(--space-md); }
    .cta-group { flex-direction: column; }
    .btn { width: 100%; }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-button__link {
    background: var(--color-wood);
    color: var(--color-text-white);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.wp-block-button__link:hover {
    background: var(--color-wood-dark);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.aligncenter {
    display: block;
    margin: var(--space-md) auto;
}

.alignleft {
    float: left;
    margin: 0 var(--space-md) var(--space-md) 0;
}

.alignright {
    float: right;
    margin: 0 0 var(--space-md) var(--space-md);
}




