:root {
    /* Colors */
    --primary-color: #6B8E23; /* Olive Drab */
    --secondary-color: #FFD700; /* Gold */
    --background-color: #F0F5F0; /* Light Greyish Green */
    --footer-bg-color: #36454F; /* Charcoal */
    --text-color-dark: #36454F;
    --text-color-light: #F0F5F0;
    --button-bg-color: #6B8E23;
    --button-text-color: #FFFFFF;

    /* Section Backgrounds */
    --section-bg-1: #F8FBF8;
    --section-bg-2: #F3F8F3;
    --section-bg-3: #E8EDE8;
    --section-bg-4: #DFE5DF;
    --section-bg-5: #D5DDD5;
    --section-bg-6: #CED4CE;

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    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-heading);
    font-weight: 700; /* Montserrat bold */
    color: var(--text-color-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.8rem; line-height: 1.2; }
h3 { font-size: 2.2rem; line-height: 1.3; }
h4 { font-size: 1.8rem; line-height: 1.4; }
h5 { font-size: 1.4rem; line-height: 1.5; }
h6 { font-size: 1.1rem; line-height: 1.6; }

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Layout & Structure */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-lg);
}

/* 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); }
.section-bg-5 { background-color: var(--section-bg-5); }
.section-bg-6 { background-color: var(--section-bg-6); }


/* Header */
.header {
    background-color: rgba(240, 245, 240, 0.85); /* Slightly transparent background-color */
    padding: var(--spacing-sm) var(--spacing-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px); /* Initial subtle glassmorphism */
    border-bottom: 1px solid rgba(107, 142, 35, 0.1);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
}

.header.scrolled {
    background-color: rgba(240, 245, 240, 0.7); /* More transparent when scrolled */
    backdrop-filter: blur(10px); /* Enhanced glassmorphism */
    box-shadow: var(--shadow-glass);
    border-bottom: 1px solid rgba(107, 142, 35, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color-dark);
    letter-spacing: -0.03em;
}

.header-logo:hover {
    color: var(--primary-color);
    transform: none;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-lg);
}

.nav-menu a {
    color: var(--text-color-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    background: linear-gradient(145deg, var(--button-bg-color), darken(var(--button-bg-color), 10%));
    color: var(--button-text-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: linear-gradient(145deg, lighten(var(--button-bg-color), 5%), var(--button-bg-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-color-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid rgba(107, 142, 35, 0.2);
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color-dark);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(54, 69, 79, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.3), var(--shadow-glass);
    background-color: rgba(255, 255, 255, 0.9);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Claymorphism for small icons/elements */
.icon-clay {
    display: inline-block;
    padding: 0.8rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(145deg, #e0e5ec, #ffffff);
    box-shadow: 6px 6px 12px #b8bece, -6px -6px 12px #ffffff;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.icon-clay:hover {
    box-shadow: inset 2px 2px 5px #b8bece, inset -3px -3px 7px #ffffff;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--footer-bg-color);
    color: var(--text-color-light);
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
    font-family: var(--font-body);
    border-top: 5px solid var(--primary-color); /* Brutalist touch */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.footer-section {
    flex: 1 1 250px;
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    color: var(--text-color-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.4rem;
    border-bottom: 2px solid var(--secondary-color); /* Brutalist accent */
    padding-bottom: var(--spacing-sm);
    letter-spacing: 0.05em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--text-color-light);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* AOS (Animate On Scroll) styles - subtle animations */
[data-aos] {
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: ease-out;
    opacity: 0;
    transform: translateY(20px);
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-right"] {
    transform: translateX(-20px);
}

[data-aos="fade-left"] {
    transform: translateX(20px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.3rem; }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm);
        width: 100%;
        text-align: center;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(107, 142, 35, 0.1);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: var(--spacing-md);
    }

    .footer-section:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .btn {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
    }
}


/* 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;
    }
}