:root {
    /* Colors */
    --color-primary: #FF8C00; /* Primary Orange */
    --color-secondary: #FFD700; /* Secondary Gold */
    --color-background: #F0EAD6; /* Light Tan Background */
    --color-footer-bg: #2C3E50; /* Dark Blue Footer */
    --color-button: #FFA000; /* Button Orange */
    --color-text-dark: #333333;
    --color-text-light: #FFFFFF;
    --color-accent-gold: #FDD835; /* Accent Gold */
    --color-accent-light-gold: #FFEE58; /* Accent Light Gold */

    /* Section Backgrounds */
    --color-section-bg-1: #F8F4E3;
    --color-section-bg-2: #EDE8D6;
    --color-section-bg-3: #E2DCC9;

    /* Fonts */
    --font-family-primary: 'Montserrat', sans-serif;
    --font-family-secondary: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-unit: 1rem;
    --padding-section: 6rem 0;
    --margin-element: 1.5rem;

    /* Borders & Shadows */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --shadow-deep: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-clay: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.7);
    --shadow-clay-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.7);

    /* Transitions */
    --transition-ease: all 0.3s ease-in-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-secondary);
    color: var(--color-text-dark);
    line-height: 1.7;
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll due to skew */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    color: var(--color-primary);
    line-height: 1.2;
    margin-top: 2em;
    margin-bottom: 0.8em;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 3.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 3em;
    position: relative;
    padding-bottom: 0.5em;
}
h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent-gold);
    border-radius: 2px;
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-button);
    text-decoration: none;
    transition: var(--transition-ease);
}

a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    opacity: 0.9;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Header & Hero Section */
.header-hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text-light);
    padding: var(--padding-section);
    padding-top: 10rem;
    padding-bottom: 8rem;
    overflow: hidden;
    z-index: 1;
}

.header-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: inherit;
    transform: skewY(-4deg); /* Brutalist skew effect */
    transform-origin: top left;
    z-index: -1;
}

.header-hero .container {
    position: relative;
    z-index: 2;
}

.header-hero h1 {
    color: var(--color-text-light);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.header-hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-light);
    background-color: var(--color-button);
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-ease);
    box-shadow: var(--shadow-clay); /* Claymorphism effect */
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    opacity: 0;
    transition: var(--transition-ease);
    z-index: -1;
}

.btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.6), 0 0 15px var(--color-accent-gold); /* Subtle glow */
}

.btn:hover::before {
    transform: scale(2);
    opacity: 1;
}

.btn:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-clay-inset);
}


/* Section Backgrounds */
.section-bg-1 {
    background-color: var(--color-section-bg-1);
    padding: var(--padding-section);
}

.section-bg-2 {
    background-color: var(--color-section-bg-2);
    padding: var(--padding-section);
}

.section-bg-3 {
    background-color: var(--color-section-bg-3);
    padding: var(--padding-section);
}

.section-accent-gold {
    background-color: var(--color-accent-gold);
    color: var(--color-text-dark);
    padding: var(--padding-section);
    position: relative;
    overflow: hidden;
}
.section-accent-gold::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 120%;
    height: 100%;
    background: inherit;
    transform: skewY(2deg); /* Different brutalist skew */
    transform-origin: bottom right;
    z-index: -1;
}

/* Card Style */
.card {
    background-color: var(--color-text-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-deep);
    padding: 2rem;
    transition: var(--transition-ease);
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.card img {
    max-width: 100%;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    display: block; /* Ensures no extra space below image */
}

.card h3 {
    color: var(--color-primary);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.card p {
    font-size: 1rem;
    color: var(--color-text-dark);
}

.card .btn {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.5);
}

/* Images */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: var(--margin-element);
    border: 1px solid var(--color-section-bg-3);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-secondary);
    font-size: 1rem;
    color: var(--color-text-dark);
    background-color: var(--color-section-bg-1);
    box-shadow: var(--shadow-clay-inset);
    transition: var(--transition-ease);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-button);
    box-shadow: 0 0 0 3px rgba(var(--color-button), 0.2), var(--shadow-clay-inset);
    background-color: var(--color-text-light);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--color-footer-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0;
    text-align: center;
    font-size: 0.9rem;
}

footer a {
    color: var(--color-secondary);
}

footer a:hover {
    color: var(--color-primary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 3.2rem;
    }
    h2 {
        font-size: 2.4rem;
    }
    .header-hero h1 {
        font-size: 3.5rem;
    }
    .header-hero p {
        font-size: 1.3rem;
    }
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .card {
        padding: 1.5rem;
    }
    .card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    :root {
        --padding-section: 4rem 0;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .header-hero {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }
    .header-hero h1 {
        font-size: 2.8rem;
    }
    .header-hero p {
        font-size: 1.1rem;
    }
    .header-hero::before {
        transform: skewY(-2deg);
    }
    .section-accent-gold::before {
        transform: skewY(1deg);
    }
    .btn {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }
}

@media (max-width: 480px) {
    :root {
        --padding-section: 3rem 0;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .header-hero h1 {
        font-size: 2.2rem;
    }
    .header-hero p {
        font-size: 1rem;
    }
    .container {
        padding: 0 1rem;
    }
}


/* 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;
    }
}