:root {
    /* Colors */
    --primary-color: #6B8E23; /* Olive Drab */
    --secondary-color: #DDA0DD; /* Plum */
    --background-color: #F8F8F8; /* Light Grayish White */
    --footer-bg-color: #36454F; /* Charcoal */
    --button-color: #6B8E23; /* Olive Drab */
    --text-color: #333333; /* Dark Gray */
    --heading-color: #2F4F4F; /* Dark Slate Gray */
    --accent-color: #8B008B; /* Dark Magenta for subtle highlights */
    --section-bg-1: #FFFFFF;
    --section-bg-2: #F0F5EE; /* Light greenish-gray */
    --section-bg-3: #E6EBE0; /* Slightly darker greenish-gray */
    --section-bg-4: #F0F8F0; /* Even lighter greenish-gray */

    /* Typography */
    --font-family-body: 'Cormorant Garamond', serif;
    --font-family-heading: 'Lora', serif;
    --base-font-size: 18px;
    --line-height-body: 1.6;
    --line-height-heading: 1.2;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.05);

    /* Glassmorphism effect */
    --glass-blur: 10px;
    --glass-bg-opacity: 0.2;
    --glass-border-opacity: 0.3;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    font-size: var(--base-font-size);
    line-height: var(--line-height-body);
    color: var(--text-color);
    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-family-heading);
    color: var(--heading-color);
    line-height: var(--line-height-heading);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

h1 { font-size: 3.5rem; letter-spacing: -0.05em; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

a:hover, a:focus {
    color: var(--accent-color);
    text-decoration: underline;
    transform: translateY(-1px);
}

ul, ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

li {
    margin-bottom: var(--spacing-xs);
}

/* Utilities (to complement Tailwind, not redefine) */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.section-padding {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-heading);
    font-size: var(--base-font-size);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background-color: var(--button-color);
    color: var(--section-bg-1); /* White for text on primary button */
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--primary-color);
    color: var(--section-bg-1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Cards */
.card {
    background-color: var(--section-bg-1);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* For glassmorphism content */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Glassmorphism Card (specific to the 'clean girl' aesthetic) */
.card-glass {
    background-color: rgba(255, 255, 255, var(--glass-bg-opacity));
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, var(--glass-border-opacity));
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
    padding: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.12);
}

/* Form Elements */
.form-group {
    margin-bottom: var(--spacing-md);
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid #D1D5DB; /* Tailwind's default border color */
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-body);
    font-size: var(--base-font-size);
    background-color: var(--section-bg-1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.2); /* Primary color with transparency */
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* 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); }

/* Footer */
.footer {
    background-color: var(--footer-bg-color);
    color: #E0E0E0;
    padding: var(--spacing-xl) 0;
    text-align: center;
    font-size: 0.9rem;
    font-family: var(--font-family-body);
}

.footer a {
    color: var(--secondary-color);
}

.footer a:hover {
    color: var(--primary-color);
}

/* Alpine.js specific styles */
[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: all 0.4s ease-out;
}
.slide-up-enter-from, .slide-up-leave-to {
    opacity: 0;
    transform: translateY(20px);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
    .section-padding {
        padding-top: var(--spacing-lg);
        padding-bottom: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .btn {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-sm);
    }
}

/* "Clean Girl" Aesthetic Enhancements */
/* Subtle textures or patterns */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgNiA2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCAzdjNNNiAzVjBNMyAwSDZNMzYwSDdNMCAzSDZNMzYwSDZNMzA2SDZNMzA2SDdNMDMwSDZNMzYwSDZNMzYwSDZNMzYwSDZNMzYwSDZNMzYwSDZNMzYwSDZNMzYwSDZNMzYwSDZNM3Y2TTAgM0wzIDBWNkwwIDNWMEwzIDZWMEwwIDNWMEwzIDZWMCIgc3Ryb2tlPSIjRThFMEQ4IiBzdHJva2Utd2lkdGg9IjAuMiIvPgo8L3N2Zz4=');
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* Elegant divider */
.divider {
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
    margin: var(--spacing-xl) auto;
    border-radius: 1px;
    opacity: 0.7;
}

/* Image styling for a soft, natural look */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

/* Decorative elements (e.g., for hero sections or special cards) */
.decorative-blob {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    background-color: var(--secondary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(80px);
    animation: blob-animation 10s infinite alternate;
}

@keyframes blob-animation {
    0% {
        transform: scale(1) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        transform: scale(1.1) rotate(10deg);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        transform: scale(1) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}


/* 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;
    }
}