:root {
    --color-primary: #2e4a3d;
    --color-secondary: #bfa168;
    --color-accent: #7a9b70;
    --color-background: #f5f5dc;
    --color-footer-bg: #233a2d;
    --color-text-dark: #2e4a3d;
    --color-text-light: #fcfbf7;
    --color-glass-light: rgba(255, 255, 255, 0.15);
    --color-glass-dark: rgba(0, 0, 0, 0.05);

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    --font-family-heading: 'Lora', serif;
    --font-family-body: 'Merriweather Sans', sans-serif;

    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.75rem;

    --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.1);
}

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&family=Merriweather+Sans:wght@300;400;700&display=swap');

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-body);
    line-height: 1.6;
    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-heading);
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

h4 {
    font-size: 1.4rem;
    font-weight: 700;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

a:hover {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-family: var(--font-family-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card {
    background-color: var(--color-glass-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section:nth-of-type(odd) {
    background-color: #fcfbf7;
}
.section:nth-of-type(even) {
    background-color: #edebe7;
}

.section-hero {
    background-color: var(--color-background);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.07em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-family-heading);
    font-style: italic;
    opacity: 0.9;
}

.header {
    background-color: var(--color-glass-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-family-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-link {
    color: var(--color-primary);
    margin-left: var(--spacing-md);
    padding: var(--spacing-xs) 0;
    position: relative;
    font-weight: 400;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.footer p {
    margin-bottom: var(--spacing-xs);
    opacity: 0.8;
}

.footer a {
    color: var(--color-secondary);
}

.footer a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* Alpine.js specific styles */
[x-cloak] {
    display: none !important;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s ease;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
}

/* Form elements */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    color: var(--color-primary);
}

.form-input, .form-textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(191, 161, 104, 0.2);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Placeholder styling */
.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(var(--color-text-dark), 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .nav {
        margin-top: var(--spacing-sm);
    }
    .nav-link {
        margin: 0 var(--spacing-xs);
    }
    .section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.9rem;
    }
}

/* Premium minimalist touches */
.text-gold {
    color: var(--color-secondary);
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px; /* Adjust as needed */
    width: 100%;
    height: 8px; /* Thickness of the highlight */
    background: linear-gradient(90deg, rgba(191, 161, 104, 0.3) 0%, rgba(191, 161, 104, 0.1) 100%);
    z-index: -1;
    border-radius: 2px;
}

/* Subtle border for sections */
.section + .section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Glassmorphism for specific elements */
.glass-panel {
    background-color: var(--color-glass-light);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-glass);
    padding: var(--spacing-md);
}

.glass-button-hover:hover {
    background-color: var(--color-glass-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Specific section background colors as requested */
.bg-section-1 { background-color: #fcfbf7; }
.bg-section-2 { background-color: #edebe7; }
.bg-section-3 { background-color: #e0ded8; }
.bg-section-4 { background-color: #d2cfc7; }
.bg-section-5 { background-color: #c5c2be; }

/* Utility for text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }


/* 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;
    }
}