:root {
    /* Colors */
    --primary-color: #5DAB6C; /* Main accent color */
    --secondary-color: #F0EAD6; /* Soft, warm secondary */
    --background-color: #F8FBF8; /* Light, natural background */
    --footer-bg-color: #4A7C59; /* Darker green for footer */
    --text-color-dark: #333333;
    --text-color-light: #F8FBF8;
    --accent-color: #5DAB6C; /* Button color, same as primary for consistency */
    --white: #FFFFFF;

    /* Section Backgrounds */
    --section-bg-1: #FFFFFF;
    --section-bg-2: #F8FBF8;
    --section-bg-3: #F0EAD6;
    --section-bg-4: #EAF7E8;

    /* Fonts */
    --font-family-primary: 'Lato', sans-serif;
    --font-family-secondary: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;

    /* Shadows */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08); /* For cards */
    --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.12); /* For card hover */
    --shadow-button: 0 2px 6px rgba(0, 0, 0, 0.1); /* For buttons */
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-secondary);
    color: var(--text-color-dark);
    line-height: 1.7;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    color: var(--text-color-dark);
    line-height: 1.2;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

/* Utility Classes for Tailwind to use */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.section-padding {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-family: var(--font-family-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--background-color);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background-color: rgba(248, 251, 248, 0.95); /* Slightly less opaque */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px); /* Glassmorphism effect on scroll */
}

.header-nav a {
    font-family: var(--font-family-primary);
    font-weight: 500;
    margin-left: var(--spacing-lg);
    color: var(--text-color-dark);
    position: relative;
    padding-bottom: 5px;
}

.header-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

/* Cards (for content sections and testimonials) */
.card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

/* Glassmorphism card variant */
.card-glass {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* 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);
}

/* Footer */
.footer {
    background-color: var(--footer-bg-color);
    color: var(--text-color-light);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden; /* For plant graphics */
}

.footer a {
    color: var(--secondary-color); /* Light color for links */
    font-weight: 400;
    border-bottom: 1px solid transparent;
}

.footer a:hover {
    color: var(--white);
    border-bottom: 1px solid var(--white);
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

/* Subtle plant graphics for footer (example, using pseudo-elements or background images) */
.footer::before,
.footer::after {
    content: '';
    position: absolute;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%235DAB6C" opacity="0.1" d="M50 0C25 0 0 25 0 50s25 50 50 50 50-25 50-50S75 0 50 0zM50 10c22.1 0 40 17.9 40 40S72.1 90 50 90 10 72.1 10 50 27.9 10 50 10zM50 20c16.6 0 30 13.4 30 30S66.6 80 50 80 20 66.6 20 50 33.4 20 50 20zM50 30c11 0 20 9 20 20s-9 20-20 20-20-9-20-20 9-20 20-20z"/></svg>'); /* Abstract leaf pattern, very subtle */
    background-size: contain;
    opacity: 0.05; /* Very subtle */
    pointer-events: none;
}

.footer::before {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -50px;
    transform: rotate(20deg);
}

.footer::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -80px;
    transform: rotate(-30deg);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }

    .section-padding {
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
    }

    .header-nav a {
        margin-left: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .header-nav a {
        margin-left: var(--spacing-sm);
        font-size: 0.9rem;
    }
}

/* Scroll to top button (example) */
.scroll-to-top {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    background-color: var(--primary-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-button);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--footer-bg-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Subtle animation for elements on scroll (example for cards) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form elements */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-secondary);
    font-size: 1rem;
    color: var(--text-color-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(93, 171, 108, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}


/* 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;
    }
}