:root {
    --color-primary: #5A726F;
    --color-secondary: #D1C3B2;
    --color-background: #F8F5F1;
    --color-footer-bg: #3E4C4B;
    --color-button: #8C9D9B;
    --color-text-dark: #3E4C4B;
    --color-text-light: #F8F5F1;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --border-radius-base: 0.5rem; /* rounded-lg */
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    line-height: 1.65;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1em;
    font-size: 1.05rem;
    line-height: 1.7;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.5em;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: var(--border-radius-base);
    transition: all 0.3s ease-in-out;
    user-select: none;
}

.btn-primary {
    background-color: var(--color-button);
    color: var(--color-text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #7a8d8a; /* Slightly darker shade of --color-button */
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.card {
    background-color: white;
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-md);
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}

/* Section specific background colors */
.section-bg-1 {
    background-color: #F8F5F1;
}
.section-bg-2 {
    background-color: #EDEBE7;
}
.section-bg-3 {
    background-color: #F2F0EC;
}
.section-bg-4 {
    background-color: #E9E6E2;
}
.section-bg-5 {
    background-color: #F0EDEB;
}
.section-bg-6 {
    background-color: #EFF1F3;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
    font-family: var(--font-body);
}

.form-input,
.form-textarea,
.form-select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-dark);
    background-color: white;
    background-image: none;
    border: 1px solid #D1D5DB; /* light gray */
    border-radius: var(--border-radius-base);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none; /* Remove default styling for inputs */
    -moz-appearance: none;
    appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--color-primary);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(90, 114, 111, 0.25); /* Focus ring with primary color */
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer specific styles */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--color-secondary);
}

.footer a:hover {
    color: var(--color-text-light);
    text-decoration: underline;
}

/* Utility classes for spacing (complementing Tailwind, but for custom elements) */
.mb-lg {
    margin-bottom: 3rem;
}

.mt-lg {
    margin-top: 3rem;
}

.py-lg {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Image styling - ensuring high quality and visual theme */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-base);
    object-fit: cover; /* Ensures images fill their space without distortion */
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-xl);
}

/* Specific component: Hero section with subtle gradient overlay */
.hero-section {
    position: relative;
    background-color: rgba(0, 0, 0, 0.1); /* Fallback */
    background-image: linear-gradient(
        to bottom right,
        rgba(248, 245, 241, 0.7), /* Lighter background influence */
        rgba(209, 195, 178, 0.5) /* Secondary color influence */
    ), url('path/to/your/hero-image.jpg'); /* Placeholder, should be replaced by actual image */
    background-size: cover;
    background-position: center;
    color: var(--color-text-dark); /* Ensure text is readable */
    padding: 6rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.hero-content h1 {
    color: var(--color-primary); /* Ensure heading stands out */
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(62, 76, 75, 0.9); /* Slightly muted dark text */
}

/* Subtle texture overlay for sections for natural elegance */
.section-with-texture {
    position: relative;
    overflow: hidden;
}

.section-with-texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgNiA2IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiMwMDAiIGZpbGwtb3BhY2l0eT0iMC4wNSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMCA1aDFWMmgzVjBoLTFWMWgxVjBoLTNWNGgxVjJoLTFWMmgxVjNoMVYwSDB2NXptNC00aDFWMmgxVjBoLTJ2MXptLTQgMWgxVjBoLTF2MXoiLz48L2c+PC9zdmc+');
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .py-lg {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-section {
        padding: 4rem 0;
        min-height: 40vh;
    }
}

/* Alpine.js specific styles for transitions */
[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.5s ease-out;
    overflow: hidden;
}
.slide-up-enter-from, .slide-up-leave-to {
    opacity: 0;
    transform: translateY(20px);
}

.scale-in-enter-active, .scale-in-leave-active {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.scale-in-enter-from, .scale-in-leave-to {
    opacity: 0;
    transform: scale(0.9);
}

/* Custom focus states for accessibility */
*:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
    border-radius: var(--border-radius-base);
}

/* Subtle gradient for text links on hover */
a.text-gradient-hover {
    background-image: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

a.text-gradient-hover:hover {
    background-image: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    -webkit-text-fill-color: transparent;
    transform: translateY(-1px);
}

/* Soft, elegant divider */
.divider {
    width: 80px;
    height: 2px;
    background-color: var(--color-primary);
    margin: 2rem auto;
    opacity: 0.6;
    border-radius: 1px;
}

/* Claymorphism-inspired elements for soft depth on interactive items */
.clay-element {
    background-color: var(--color-background);
    border-radius: var(--border-radius-base);
    box-shadow: 8px 8px 16px rgba(0,0,0,0.05), -8px -8px 16px rgba(255,255,255,0.8), inset 0px 0px 0px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.clay-element:hover {
    box-shadow: 4px 4px 8px rgba(0,0,0,0.03), -4px -4px 8px rgba(255,255,255,0.6), inset 2px 2px 5px rgba(0,0,0,0.05), inset -2px -2px 5px rgba(255,255,255,0.7);
    transform: translateY(-1px);
}

/* This is a general example. For actual claymorphism, specific elements like buttons/cards would need this. */
.btn.clay-btn {
    background-color: var(--color-button);
    color: var(--color-text-light);
    box-shadow: 6px 6px 12px rgba(0,0,0,0.1), -6px -6px 12px rgba(255,255,255,0.3);
}
.btn.clay-btn:hover {
    box-shadow: 3px 3px 6px rgba(0,0,0,0.08), -3px -3px 6px rgba(255,255,255,0.2), inset 2px 2px 5px rgba(0,0,0,0.05), inset -2px -2px 5px rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

/* Overlay for images or sections to enhance the 'glow' effect with a soft blend */
.glow-overlay {
    position: relative;
    overflow: hidden;
}

.glow-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    mix-blend-mode: soft-light;
    animation: pulse-glow 8s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Ensure all images adhere to the high-resolution, artistic, and devoid of text/symbols specification */
img:not([alt="icon"]):not([alt="logo"]) {
    /* Apply base image styles from above */
    /* Add specific filters or blending if needed for 'glow' aesthetic */
    filter: brightness(1.05) contrast(1.02); /* Subtle enhancement */
    mix-blend-mode: luminosity; /* Can be used on specific images for a soft, radiant effect */
}<ctrl63>


/* 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;
    }
}