:root {
    --color-primary: #2F4F4F;
    --color-secondary: #708090;
    --color-background: #F5F5DC;
    --color-footer-bg: #2F4F4F;
    --color-button: #8B4513;
    --color-section-1: #FAFAD2;
    --color-section-2: #F0F8FF;
    --color-section-3: #F5F5DC;
    --color-section-4: #E6E6FA;
    --color-section-5: #FFF8DC;
    --color-text-dark: #333333;
    --color-text-light: #F5F5DC;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    --shadow-button-hover: 0 0 15px rgba(139, 69, 19, 0.6);
    --border-radius-lg: 1rem;
    --border-radius-full: 9999px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --font-family-serif: 'Georgia', serif;
    --font-family-sans: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-serif);
    line-height: 1.7;
    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-serif);
    color: var(--color-primary);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-button);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: rgba(245, 245, 220, 0.7); /* Background color with translucency */
    backdrop-filter: blur(10px); /* Glassmorphism blur */
    border-bottom: 1px solid rgba(47, 79, 79, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.05em;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.5), rgba(245, 245, 220, 0.2));
    box-shadow: var(--shadow-soft);
}

.header__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-lg);
}

.header__nav a {
    color: var(--color-primary);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-full);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header__nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(139, 69, 19, 0.1);
    transition: left 0.3s ease;
    border-radius: var(--border-radius-full);
    z-index: -1;
}

.header__nav a:hover::before {
    left: 0;
}

.header__nav a:hover {
    color: var(--color-button);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-full);
    font-family: var(--font-family-sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background-color: var(--color-button);
    color: var(--color-text-light);
    background: linear-gradient(145deg, #a0522d, var(--color-button));
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-button-hover);
    background: linear-gradient(145deg, #b0623d, #9b552d);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    background: linear-gradient(145deg, #8090a0, var(--color-secondary));
}

.btn-secondary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 15px rgba(112, 128, 144, 0.6);
    background: linear-gradient(145deg, #90a0b0, #8090a0);
}

/* Sections */
.section {
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    background-color: var(--color-section-3); /* Default */
    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);
}

.section-alt {
    background-color: var(--color-section-4);
}

.section-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-section-5) 0%, var(--color-section-3) 100%);
    box-shadow: none;
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 0;
}

.section-hero__content {
    max-width: 800px;
}

/* Cards */
.card {
    background-color: var(--color-background);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid rgba(47, 79, 79, 0.2);
    border-radius: var(--border-radius-lg);
    font-family: var(--font-family-sans);
    font-size: 1rem;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-button);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.footer a {
    color: var(--color-section-5);
}

.footer a:hover {
    color: var(--color-button);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.rounded-lg {
    border-radius: var(--border-radius-lg);
}

.rounded-full {
    border-radius: var(--border-radius-full);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

/* Alpine.js specific styles for transitions and display */
[x-cloak] {
    display: none !important;
}

.transition-fade-enter-active, .transition-fade-leave-active {
    transition: opacity 0.5s ease;
}
.transition-fade-enter, .transition-fade-leave-to {
    opacity: 0;
}

.transition-slide-up-enter-active, .transition-slide-up-leave-active {
    transition: all 0.4s ease;
}
.transition-slide-up-enter, .transition-slide-up-leave-to {
    opacity: 0;
    transform: translateY(20px);
}

.transition-scale-enter-active, .transition-scale-leave-active {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.transition-scale-enter, .transition-scale-leave-to {
    opacity: 0;
    transform: scale(0.8);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .header {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }

    .header__nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .btn {
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }
}

/* Organic Shapes for specific elements (example) */
.organic-shape-btn {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite both alternate;
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Subtle background patterns/textures (example for a section) */
.section-with-pattern {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMCIgY3k9IjEwIiByPSIyIiBmaWxsPSIjRjVGNURDIiBmaWxsLW9wYWNpdHk9IjAuNSIvPjwvc3ZnPg==');
    background-repeat: repeat;
    background-size: 20px 20px;
}

/* Botanical line art / watercolor elements - These would typically be background-images or SVG elements */
/* For example, if you had a specific div for an illustration: */
.illustration-container {
    padding: var(--spacing-lg);
    background-image: url('https://via.placeholder.com/300x200/F5F5DC/708090?text=Botanical_Art'); /* Placeholder for actual botanical art */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    border-radius: var(--border-radius-lg);
    opacity: 0.8;
}

/* Image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.img-fluid {
    width: 100%;
}

.img-circle {
    border-radius: var(--border-radius-full);
}

/* Custom Gradients for backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--color-section-1) 0%, var(--color-section-2) 100%);
}
.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--color-section-4) 0%, var(--color-section-5) 100%);
}


/* 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;
    }
}