:root {
    --color-primary: #1A4D2E;
    --color-secondary: #B4D9A0;
    --color-background: #F0F5EE;
    --color-footer-bg: #2F3C2C;
    --color-button: #6A994E;
    --color-text: #333;
    --color-light-text: #f9f9f9;
    --color-heading: #1A4D2E;
    --color-section-1: #F8FBF6;
    --color-section-2: #E9F1E5;
    --color-section-3: #DCE7D6;
    --color-section-4: #CCDCD0;
    --color-section-5: #B4D9A0;
    --color-section-6: #A2C890;

    --font-family-sans: 'Raleway', sans-serif;
    --font-family-serif: 'Playfair Display', serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;

    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 2rem;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-serif);
    color: var(--color-heading);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 2.2rem;
    font-weight: 700;
}

h4 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
    color: var(--color-button);
    text-decoration: underline;
    transform: translateY(-1px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm);
}

/* Layout and Sections */
.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;
    position: relative;
    overflow: hidden;
}

section:nth-of-type(odd) {
    background-color: var(--color-section-1);
}

section:nth-of-type(even) {
    background-color: var(--color-section-2);
}

/* Organic Shapes for sections */
section:nth-of-type(1) {
    background-color: var(--color-background);
}
section:nth-of-type(2) {
    background-color: var(--color-section-3);
    clip-path: ellipse(120% 100% at 50% 100%);
    margin-bottom: -100px;
    padding-bottom: calc(var(--spacing-xxl) + 100px);
}
section:nth-of-type(3) {
    background-color: var(--color-section-4);
    clip-path: ellipse(120% 100% at 50% 0%);
    margin-top: -100px;
    padding-top: calc(var(--spacing-xxl) + 100px);
}
section:nth-of-type(4) {
    background-color: var(--color-section-5);
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0% 92%);
    margin-bottom: -80px;
    padding-bottom: calc(var(--spacing-xxl) + 80px);
}
section:nth-of-type(5) {
    background-color: var(--color-section-6);
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 92%);
    margin-top: -80px;
    padding-top: calc(var(--spacing-xxl) + 80px);
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-lg); /* More rounded for organic feel */
    font-family: var(--font-family-sans);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--color-button);
    color: var(--color-light-text);
    background-image: linear-gradient(135deg, var(--color-button) 0%, darken(var(--color-button), 10%) 100%);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 6px 6px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(135deg, lighten(var(--color-button), 5%) 0%, var(--color-button) 100%);
}

.btn-secondary {
    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-light-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Cards */
.card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(var(--color-primary), 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-button) 0%, var(--color-secondary) 100%);
    opacity: 0.8;
    transition: height 0.3s ease;
}

.card:hover::before {
    height: 12px;
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--color-primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--color-section-1);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-button);
    box-shadow: 0 0 0 3px rgba(var(--color-button), 0.2);
    background-color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-light-text);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    color: var(--color-button);
    text-decoration: underline;
}

/* Utility Classes for Alpine.js */
[x-cloak] {
    display: none !important;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s ease;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
}

.slide-up-enter-active, .slide-up-leave-active {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
}
.slide-up-enter-from, .slide-up-leave-to {
    opacity: 0;
    transform: translateY(20px);
}

/* Micro-interactions and Premium feel */
.hover-grow:hover {
    transform: scale(1.03);
}

.hover-shadow:hover {
    box-shadow: var(--shadow-lg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    section {
        padding: var(--spacing-xl) 0;
    }
    .btn {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
    .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
}

/* Specific styling for organic natural accents */
.text-gradient {
    background: linear-gradient(45deg, var(--color-primary), var(--color-button));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-organic {
    background: linear-gradient(135deg, var(--color-section-5) 0%, var(--color-section-6) 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.icon-leaf {
    color: var(--color-secondary);
    font-size: 1.5em;
    margin-right: 0.5em;
    transform: rotate(15deg);
}
.icon-leaf:hover {
    color: var(--color-button);
    transform: rotate(0deg) scale(1.1);
}

/* Example of a hero section with soft gradients and organic feel */
.hero-section {
    background: linear-gradient(to bottom right, var(--color-background), var(--color-section-1));
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    opacity: 0.3;
    animation: float1 10s ease-in-out infinite;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--color-button) 0%, transparent 70%);
    opacity: 0.2;
    animation: float2 12s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, -25px) scale(1.03); }
    100% { transform: translate(0, 0) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.08);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation - assuming it's part of header */
.main-nav {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
}

.main-nav-item a {
    font-family: var(--font-family-sans);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav-item a:hover,
.main-nav-item a.active {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    text-decoration: none;
}


/* 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;
    }
}