:root {
    --color-primary: #4A6B4F; /* Dark Green */
    --color-secondary: #D1E2C4; /* Light Green */
    --color-background: #F6F5ED; /* Off-White/Cream */
    --color-footer-bg: #2C3E30; /* Darker Green/Grey */
    --color-button: #7CA17B; /* Muted Green */
    --color-text-dark: #2C3E30;
    --color-text-light: #F6F5ED;

    --font-heading: 'Mont-Blanc', sans-serif;
    --font-body: 'Noto Sans', sans-serif;

    --spacing-unit: 1rem; /* Base spacing unit */
    --border-radius-soft: 0.75rem; /* Softly rounded corners */
    --transition-duration: 0.3s;
    --shadow-subtle: 0 4px 8px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);

    --section-bg-1: #F6F5ED;
    --section-bg-2: #EDEBE4;
    --section-bg-3: #E1DFD6;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.7;
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    letter-spacing: -0.02em; /* Slightly tighter for headings */
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
}

p {
    margin-bottom: 1em;
    font-size: 1.125rem; /* Slightly larger body text */
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-duration) ease-in-out;
}

a:hover {
    color: var(--color-button);
}

/* Layout & Spacing */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 calc(var(--spacing-unit) * 2);
}

section {
    padding: calc(var(--spacing-unit) * 6) 0;
    position: relative;
    overflow: hidden; /* For organic shapes/overlays */
}

/* Backgrounds for Sections */
.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);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: var(--border-radius-soft);
    background-color: var(--color-button);
    color: var(--color-text-dark); /* Bold text color for buttons */
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-duration) ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.05em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.0) 50%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-duration) ease-in-out;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px); /* Slight lift */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* More pronounced shadow */
    background-color: var(--color-primary); /* Darker on hover */
    color: var(--color-text-light); /* Text becomes light on hover */
}

.btn:hover::before {
    opacity: 1; /* Slight 3D emboss effect on hover */
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly translucent */
    padding: var(--spacing-unit) 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-subtle);
    backdrop-filter: blur(5px); /* Glassmorphism effect */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(var(--spacing-unit) * 2); /* Consistent padding */
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-duration) ease-in-out;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: calc(var(--spacing-unit) * 4) 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
}

.footer-site-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary); /* Prominent site name */
    margin-bottom: var(--spacing-unit);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-unit);
}

.footer-links a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-duration) ease-in-out;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--color-button);
}

.footer-contact-info {
    margin-top: var(--spacing-unit);
}

/* Organic shapes / Brutalism touches */
.organic-shape-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 10% 20%, rgba(209, 226, 196, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(74, 107, 79, 0.2) 0%, transparent 50%);
    transform: translate(-50%, -50%) rotate(5deg);
    z-index: -1;
    border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; /* Organic blob shape */
    animation: blob-move 15s infinite alternate ease-in-out;
}

@keyframes blob-move {
    0% {
        transform: translate(-50%, -50%) rotate(5deg) scale(1);
        border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
    }
    50% {
        transform: translate(-52%, -48%) rotate(-2deg) scale(1.02);
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    }
    100% {
        transform: translate(-50%, -50%) rotate(5deg) scale(1);
        border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
    }
}

/* Utility for slightly asymmetric layouts / sections */
.section-skew {
    overflow: hidden;
    position: relative;
}

.section-skew.top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Adjust height for desired skew */
    background: var(--color-background); /* Match body background */
    transform: skewY(-2deg);
    transform-origin: top left;
    z-index: -1;
}

.section-skew.bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Adjust height for desired skew */
    background: var(--color-background); /* Match body background */
    transform: skewY(2deg);
    transform-origin: bottom left;
    z-index: -1;
}

/* Cards/Elements with subtle texture (example) */
.card {
    background-color: var(--color-secondary); /* Use a secondary color for cards */
    border-radius: var(--border-radius-soft);
    padding: calc(var(--spacing-unit) * 3);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-duration) ease-in-out, box-shadow var(--transition-duration) ease-in-out;
    position: relative;
    overflow: hidden;
    /* Subtle texture overlay */
    background-image: url('data:image/svg+xml,%3Csvg width="6" height="6" viewBox="0 0 6 6" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23000000" fill-opacity="0.03" fill-rule="evenodd"%3E%3Cpath d="M5 0h1L0 6V5zM6 5v1H5z"/%3E%3C/g%3E%3C/svg%3E');
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: var(--spacing-unit);
    }

    .nav-menu ul {
        flex-direction: column;
        gap: var(--spacing-unit);
        text-align: center;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    h2 {
        font-size: clamp(1.75rem, 6vw, 2.75rem);
    }

    p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    section {
        padding: calc(var(--spacing-unit) * 4) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-unit);
    }

    .footer-links ul {
        flex-direction: column;
    }
}


/* 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;
    }
}