:root {
    /* Colors - Desert Bloom Elegance */
    --color-primary: #2C3E50; /* Rich Blue-Grey */
    --color-secondary: #C29A64; /* Golden Sand */
    --color-background: #F9F9F4; /* Soft Off-White */
    --color-footer-bg: #222C3A; /* Darker Blue-Grey */
    --color-button: #C29A64; /* Golden Sand */
    --color-text-dark: #222C3A;
    --color-text-light: #F9F9F4;
    --color-accent-hover: #D4B07B; /* Slightly lighter golden for hover */
    --color-border-primary: #2C3E50;

    /* Section Backgrounds */
    --section-bg-1: #EAEAE0;
    --section-bg-2: #F3F3E8;

    /* Fonts */
    --font-general: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;

    /* Shadows */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-button: 0 6px 15px rgba(194, 154, 100, 0.3); /* Golden shadow */
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-general);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    line-height: 1.7; /* Generous line-height for readability */
    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);
    line-height: 1.2;
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2.8rem; letter-spacing: -0.02em; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

/* Utility Classes for Layout & Spacing (complementing Tailwind) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Section Backgrounds */
.section-bg-1 {
    background-color: var(--section-bg-1);
}

.section-bg-2 {
    background-color: var(--section-bg-2);
}

/* Header Style */
.header {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly translucent */
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) var(--spacing-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -0.05em;
}

.header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-lg);
}

.header nav ul li a {
    position: relative;
    color: var(--color-text-dark);
    font-weight: 500;
    padding-bottom: 5px;
}

.header nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.header nav ul li a:hover::after,
.header nav ul li a.active::after {
    width: 100%;
}

.header .social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.header .social-icons a {
    color: var(--color-text-dark);
    font-size: 1.2rem;
}

.header .social-icons a:hover {
    color: var(--color-secondary);
}

/* Button Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--color-button);
    color: var(--color-text-light);
    border: none;
    border-radius: var(--border-radius-md); /* Rounded rectangular */
    font-family: var(--font-general);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button); /* Soft shadow */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn:hover {
    background: linear-gradient(to right, var(--color-secondary), var(--color-accent-hover)); /* Subtle golden gradient */
    transform: translateY(-2px); /* Slight lift */
    box-shadow: 0 8px 20px rgba(194, 154, 100, 0.4); /* Enhanced shadow on hover */
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-button);
}

/* Card Elements */
.card {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent; /* For hover effect */
}

.card:hover {
    transform: translateY(-5px); /* Subtle lift */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary); /* Primary color border */
}

.card-image {
    width: 100%;
    height: 200px; /* Or use object-fit for flexible height */
    object-fit: cover;
    display: block;
}

.card-content {
    padding: var(--spacing-md);
}

.card-content h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.card-content p {
    font-size: 0.95rem;
    color: #555;
}

/* Form Elements */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--color-text-dark);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm); /* Soft rounded borders */
    font-family: var(--font-general);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Ensures padding doesn't add to width */
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary); /* Thin primary color outline */
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.2); /* Soft focus shadow */
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Custom styling for select, checkbox, radio (basic example) */
select.form-control {
    appearance: none; /* Remove default arrow */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%232C3E50" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 35px;
}

/* Footer Style */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-xxl) 0 var(--spacing-lg) 0;
    position: relative;
    overflow: hidden; /* For potential asymmetrical elements */
}

.footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Asymmetrical sections */
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
}

.footer h4 {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-md);
    margin-top: 0;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: var(--spacing-xs);
}

.footer ul li a {
    color: var(--color-text-light); /* Golden text for links */
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.footer .contact-info p {
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.footer .social-icons-footer {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.footer .social-icons-footer a {
    color: var(--color-text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer .social-icons-footer a:hover {
    color: var(--color-secondary);
}

.footer .copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7); /* Subtle golden text */
}

/* Iconography (basic styling for consistency) */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke-width: 2px;
    stroke: currentColor;
    fill: none;
    vertical-align: middle;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.4rem; }
    h3 { font-size: 1.9rem; }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-sm);
    }
    .header nav ul {
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm);
    }
    .header .social-icons {
        margin-top: var(--spacing-sm);
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    p { font-size: 1rem; }

    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer .social-icons-footer {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.4rem; }

    .section-padding {
        padding: var(--spacing-lg) 0;
    }
}


/* 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;
    }
}