:root {
    /* Colors */
    --color-primary: #2E8B57; /* Sea Green */
    --color-secondary: #8FBC8F; /* Dark Sea Green */
    --color-background: #F0FFF0; /* Honeydew */
    --color-footer-bg: #2F4F4F; /* Dark Slate Gray */
    --color-button: #3CB371; /* Medium Sea Green */
    --color-text-light: #E0FFFF; /* Light Cyan for footer text */
    --color-text-dark: #333;
    --color-placeholder: #A9A9A9; /* Dark Gray */

    /* Section Backgrounds (from user preferences) */
    --section-bg-1: #F0FFF0;
    --section-bg-2: #FAEBD7; /* Antique White */
    --section-bg-3: #FFF8DC; /* Cornsilk */
    --section-bg-4: #E0FFFF; /* Light Cyan */
    --section-bg-5: #AFEEEE; /* Pale Turquoise */
    --section-bg-6: #F5F5DC; /* Beige */
    --section-bg-7: #F8F8F8; /* White Smoke */
    --section-bg-8: #DCDCDC; /* Gainsboro */

    /* Typography */
    --font-family-body: 'Lato', sans-serif;
    --font-family-heading: 'Montserrat Alternates', sans-serif;
    --font-family-button: 'Open Sans Condensed', sans-serif; /* Custom font for buttons */

    --font-size-base: 1.125rem; /* 18px */
    --font-size-h1: 3.5rem; /* 56px */
    --font-size-h2: 2.5rem; /* 40px */
    --font-size-h3: 1.75rem; /* 28px */

    /* Spacing */
    --spacing-lg: 3rem;
    --spacing-md: 2rem;
    --spacing-sm: 1rem;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;

    /* Shadows */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-clay-3d: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(255, 255, 255, 0.7);
    --shadow-button-inner: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-button-lift: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    line-height: 1.7; /* Generous line-height for readability */
    color: var(--color-text-dark);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em; /* Slightly tighter for headings */
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

p {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-base);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--color-button);
}

/* Section Background Classes */
.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); }
.section-bg-5 { background-color: var(--section-bg-5); }
.section-bg-6 { background-color: var(--section-bg-6); }
.section-bg-7 { background-color: var(--section-bg-7); }
.section-bg-8 { background-color: var(--section-bg-8); }

/* Header Styles */
.header-container {
    background-color: var(--color-background);
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-image 0.5s ease, box-shadow 0.5s ease;
}

.header-container.scrolled {
    background-image: linear-gradient(to right, var(--color-primary), var(--color-button));
    box-shadow: var(--shadow-soft);
}

.header-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
    text-align: center;
    /* Claymorphism effect for logo */
    background-color: var(--color-background); /* Base for claymorphism */
    border-radius: var(--border-radius-lg);
    padding: 10px 15px;
    box-shadow: var(--shadow-clay-3d);
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: var(--spacing-sm);
}

.nav-menu a {
    display: block;
    padding: 10px 18px;
    color: var(--color-primary);
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap; /* Prevent wrapping */
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--color-button);
    color: white;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: var(--color-button);
    color: white;
    font-family: var(--font-family-button);
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-button-inner); /* Inner shadow */
    letter-spacing: 0.05em; /* Slightly expanded letter spacing */
    text-transform: uppercase;
}

.btn:hover {
    background-image: linear-gradient(to right, var(--color-button), var(--color-primary));
    transform: translateY(-3px);
    box-shadow: var(--shadow-button-lift);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-button-inner);
}

/* Form Elements */
.form-field {
    margin-bottom: var(--spacing-sm);
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text-dark);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    color: var(--color-text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--color-placeholder);
    opacity: 1; /* Ensures placeholder is visible */
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field input[type="tel"]:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2); /* Softer focus ring */
}

/* Image Styles (Brutalist inspired frames) */
.image-container {
    padding: 1.5rem;
    background-color: var(--color-secondary); /* A subtle background for the frame */
    border: 2px solid var(--color-primary); /* Strong border */
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15); /* Brutalist offset shadow */
    display: inline-block; /* Adjust if used with flex/grid */
    margin: var(--spacing-sm); /* Example margin */
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: translate(-4px, -4px); /* Slight lift on hover */
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.2);
}

.image-container img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid var(--color-background); /* Inner border for image */
}

/* Footer Styles */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-lg) var(--spacing-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-family: var(--font-family-heading);
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    font-weight: bold; /* Bold headers */
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
    position: relative; /* For the underline effect */
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--color-button); /* Green underline */
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-button);
}
.footer-section ul li a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-text-light);
    border-radius: 50%;
    color: var(--color-text-light);
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-size: 1.2rem; /* Example size for icon content */
}

.social-icons a:hover {
    border-color: var(--color-button);
    background-image: linear-gradient(45deg, var(--color-button), var(--color-primary));
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Subtle shadow for copyright */
}

/* Scroll Animation (AOS library integration - placeholder for actual JS) */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Example AOS types - actual values depend on AOS library */
[data-aos="fade-up"] {
    transform: translateY(20px);
}
[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Parallax Effect (Example for a hero section) */
.hero-parallax-bg {
    background-image: url('path/to/your/natural-background-image.jpg'); /* Replace with actual image */
    background-attachment: fixed; /* Key for parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0; /* Example padding */
    overflow: hidden; /* Important for containing parallax children */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        --font-size-h1: 2.5rem;
        --font-size-h2: 2rem;
        --font-size-h3: 1.5rem;
        --font-size-base: 1rem;
    }

    .header-container {
        flex-direction: column;
        padding: var(--spacing-sm);
    }

    .nav-menu {
        flex-direction: column;
        margin-top: var(--spacing-sm);
        width: 100%;
        align-items: center;
    }

    .nav-menu li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    .nav-menu a {
        padding: 12px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: var(--spacing-sm);
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}


/* 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;
    }
}