:root {
    /* Colors */
    --color-primary: #6A057F;
    --color-secondary: #8A2BE2;
    --color-background: #E0FFFF; /* Light Cyan */
    --color-footer-bg: #30005C; /* Dark Purple */
    --color-button: #FF6B6B; /* Vibrant Red-Orange */
    --color-text-dark: #333333;
    --color-text-light: #FFFFFF;
    --color-accent-light: #FFD700; /* Gold for subtle highlights */

    /* Section Backgrounds - Neo-Art Deco inspired palette */
    --section-bg-1: #E6E6FA; /* Lavender Blush */
    --section-bg-2: #DDA0DD; /* Plum */
    --section-bg-3: #BA55D3; /* Medium Orchid */
    --section-bg-4: #9370DB; /* Medium Purple */
    --section-bg-5: #A2B9EE; /* Light Periwinkle */
    --section-bg-6: #B0E0E6; /* Powder Blue */

    /* Typography */
    --font-heading: 'Syncopate', sans-serif; /* Geometric, modern */
    --font-body: 'DM Sans', sans-serif; /* Clean, readable */
    --font-size-base: 18px;
    --line-height-body: 1.75;
    --letter-spacing-heading: 0.05em;

    /* Spacing */
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Shadows */
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-button: 0 6px 20px rgba(255, 107, 107, 0.4);

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-ease: ease-in-out;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-body);
    color: var(--color-text-dark);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    font-weight: 700;
    letter-spacing: var(--letter-spacing-heading);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3.5rem; /* Larger for impact */
    line-height: 1.1;
    color: var(--color-secondary); /* A touch of secondary for headings */
    text-align: center;
}

h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: center;
}

h3 {
    font-size: 2.2rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-ease),
                transform var(--transition-speed) var(--transition-ease);
}

a:hover {
    color: var(--color-secondary);
    transform: translateY(-1px);
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--border-radius-md);
    background-color: var(--color-button);
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    transition: all var(--transition-speed) var(--transition-ease);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all var(--transition-speed) var(--transition-ease);
    z-index: -1;
}

.btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-button);
}

/* Section Backgrounds */
.section-bg-1 {
    background-color: var(--section-bg-1);
    padding: var(--spacing-lg) 0;
}

.section-bg-2 {
    background-color: var(--section-bg-2);
    padding: var(--spacing-lg) 0;
}

.section-bg-3 {
    background-color: var(--section-bg-3);
    padding: var(--spacing-lg) 0;
}

.section-bg-4 {
    background-color: var(--section-bg-4);
    padding: var(--spacing-lg) 0;
}

.section-bg-5 {
    background-color: var(--section-bg-5);
    padding: var(--spacing-lg) 0;
}

.section-bg-6 {
    background-color: var(--section-bg-6);
    padding: var(--spacing-lg) 0;
}

/* Cards (example) */
.card {
    background-color: var(--color-text-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-light);
    padding: var(--spacing-md);
    margin: 1.5rem 0;
    transition: transform var(--transition-speed) var(--transition-ease),
                box-shadow var(--transition-speed) var(--transition-ease);
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Subtle top border */
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0.8;
}

/* Forms (basic example) */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: all var(--transition-speed) var(--transition-ease);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08); /* Subtle inner shadow */
}

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(255, 107, 107, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer Style */
footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-lg) 0;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.3); /* Inset shadow for depth */
}

footer a {
    color: var(--color-accent-light);
    margin: 0 0.5rem;
}

footer a:hover {
    color: var(--color-button);
    transform: translateY(-2px);
}

/* Utility Classes (to complement Tailwind) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Neo-Art Deco inspired geometric patterns/lines (optional, could be background images) */
/* Example for a hero section or specific decorative element */
.geometric-pattern {
    position: relative;
    overflow: hidden;
}

.geometric-pattern::before,
.geometric-pattern::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05); /* Very subtle overlay */
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
}

.geometric-pattern::before {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -50px;
}

.geometric-pattern::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -80px;
}

/* Subtle animations for elements on scroll (requires JS for full effect, but defines base) */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--transition-ease), transform 0.6s var(--transition-ease);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.4rem;
    }
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .section-bg-1, .section-bg-2, .section-bg-3, .section-bg-4, .section-bg-5, .section-bg-6 {
        padding: var(--spacing-md) 0;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-base: 16px;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    .btn {
        width: 100%;
        padding: 0.7rem 1.5rem;
    }
    .card {
        margin: 1rem 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;
    }
}