:root {
    /* Colors */
    --color-primary: #2F502B;
    --color-secondary: #8A9A5B;
    --color-background: #F8FAF5;
    --color-footer-bg: #1B2B18;
    --color-button: #4A6B3C;
    --color-text-dark: #1B2B18;
    --color-text-light: #F8FAF5;
    --color-accent-hover: #6C814F; /* Slightly lighter secondary for hover */

    /* Section Backgrounds */
    --section-bg-1: #FFFFFF;
    --section-bg-2: #F8FAF5;
    --section-bg-3: #E8EDE3;
    --section-bg-4: #F0F5ED;

    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Sizing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 2rem;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-button: 0 6px 20px rgba(74, 107, 60, 0.3); /* Button specific shadow */
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition-ease: all 0.3s ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    line-height: 1.7; /* Generous line height for readability */
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: 2.8rem; font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: 2.2rem; font-weight: 600; }
h4 { font-size: 1.8rem; font-weight: 500; }
h5 { font-size: 1.4rem; font-weight: 500; }
h6 { font-size: 1.1rem; font-weight: 500; }

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-ease);
}

a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

/* Layout & Spacing */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

section {
    padding: var(--spacing-xxl) 0;
    margin-bottom: var(--spacing-lg); /* Add some breathing room between sections */
}

/* Section Backgrounds */
.section-bg-1 { background-color: var(--section-bg-1); }
.section-bg-2 { background-color: var(--section-bg-2); }
.section-bg-3 { background-color: var(--section-bg-3); }
.section-bg-4 { background-color: var(--section-bg-4); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-full); /* Rounded-full shape */
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-ease);
    box-shadow: var(--shadow-button); /* Soft, natural shadow */
    background-image: linear-gradient(135deg, var(--color-button) 0%, var(--color-secondary) 100%); /* Subtle linear gradient */
    color: var(--color-text-light);
}

.btn:hover {
    transform: scale(1.02); /* Slight scale */
    box-shadow: 0 8px 25px rgba(74, 107, 60, 0.45); /* Enhanced shadow on hover */
    background-image: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-secondary) 100%); /* Color shift */
}

.btn-secondary {
    background-image: none;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: scale(1.02);
    box-shadow: var(--shadow-subtle);
}

/* Header */
.header {
    background-color: var(--section-bg-1);
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-subtle); /* Subtle shadow for floating effect */
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-body); /* Using Inter for header as per overall style */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-secondary); /* Color for the abstract leaf icon */
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-lg);
}

.nav-menu li a {
    color: var(--color-text-dark);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px; /* Space for underline */
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease-out; /* Subtle slide animation */
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-xxl) 0;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden; /* Ensure texture doesn't overflow */
}

/* Subtle organic pattern overlay - placeholder for a real texture */
.footer::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="%232F502B" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zm0 30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0 0v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm18 0v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0 0v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0 0v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0 0v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zm0 0v-4H4v4H0v2h4v4h2v-4h4v-2H6zm0 0v-4H4v4H0v2h4v4h2v-4h4v-2H6zm0 0v-4H4v4H0v2h4v4h2v-4h4v-2H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.1;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2; /* Ensure content is above the texture */
}

.footer-section h4 {
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section p,
.footer-section ul {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--color-text-light);
    opacity: 0.8;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--color-secondary);
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    transition: var(--transition-ease);
}

.social-icon:hover {
    background-color: var(--color-secondary); /* Hover color change */
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

/* Card Component (Example) */
.card {
    background-color: var(--section-bg-1);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    padding: var(--spacing-xl);
    transition: var(--transition-ease);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes (if not using Tailwind directly for these) */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.4rem; }
    h3 { font-size: 1.9rem; }
    p { font-size: 1rem; }

    .nav-menu ul {
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    p { font-size: 0.95rem; }

    section {
        padding: var(--spacing-xl) 0;
    }

    .header-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}



/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}