:root {
    --primary-color: #2e7d32;
    --secondary-color: #a5d6a7;
    --accent-color: #5cb85c;
    --background-color: #f0f4f8;
    --footer-bg-color: #1b5e20;
    --section-bg-1: #e8f5e9;
    --section-bg-2: #ffffff;
    --section-bg-3: #c8e6c9;
    --section-bg-4: #f0f4f8;
    --section-bg-5: #b2dfdb;

    --text-color-dark: #2c3e50;
    --text-color-light: #ecf0f1;
    --text-color-muted: #7f8c8d;

    --border-radius-soft: 12px;
    --border-radius-pill: 9999px;

    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.1);

    --transition-speed: 0.3s ease-in-out;

    --glass-blur: 10px;
    --glass-backdrop: rgba(255, 255, 255, 0.2);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Lora:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    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: 'Lora', serif;
    color: var(--primary-color);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: 3.2em;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8em;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Header Glassmorphism */
.header-glass {
    background: var(--glass-backdrop);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--shadow-glass);
    padding: 1rem 2rem;
    position: sticky;
    top: 1rem;
    z-index: 1000;
    margin: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.header-glass .logo {
    font-family: 'Lora', serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
}

.header-glass nav a {
    margin-left: 1.5rem;
    color: var(--text-color-dark);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.3rem;
}

.header-glass nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

.header-glass nav a:hover::after,
.header-glass nav a.active::after {
    width: 100%;
}

/* Buttons with Gradient and Shadow */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1.8em;
    border-radius: var(--border-radius-pill);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-color-light);
    background-color: var(--accent-color); /* Fallback */
    background-image: linear-gradient(45deg, var(--accent-color) 0%, var(--primary-color) 100%);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background-image: linear-gradient(45deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-color-light);
}

.btn:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-image: linear-gradient(45deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-color-dark);
}

.btn-secondary:hover {
    background-image: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-color-dark);
}


/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.8em 1em;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius-soft);
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: var(--text-color-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-speed);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.25);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Sections */
.section {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

.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); }

/* Card Component - Organic feel */
.card {
    background-color: var(--section-bg-2);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background-color: var(--footer-bg-color);
    color: var(--text-color-light);
    padding: 3rem 2rem;
    text-align: center;
    border-top-left-radius: var(--border-radius-soft);
    border-top-right-radius: var(--border-radius-soft);
}

.footer a {
    color: var(--secondary-color);
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Alpine.js specific styles */
[x-cloak] {
    display: none !important;
}

.fade-transition {
    transition: all var(--transition-speed);
}

.fade-transition-enter,
.fade-transition-leave-to {
    opacity: 0;
    transform: translateY(10px);
}

.fade-transition-enter-to,
.fade-transition-leave {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    .header-glass {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        margin: 0.5rem;
    }

    .header-glass nav {
        margin-top: 1rem;
    }

    .header-glass nav a {
        margin: 0 0.8rem;
        display: inline-block;
    }

    .section {
        padding: 2rem 1rem;
    }

    .btn {
        padding: 0.7em 1.5em;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.6em;
    }

    .header-glass nav a {
        margin: 0 0.5rem;
    }
}


/* 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;
    }
}