/* ==========================================
   CSS Custom Properties (Variables)
   ========================================== */
:root {
    /* Color Palette - Aligned with Intelligent Art Logo */
    --primary-teal: #16A085;
    --light-teal: #1ABC9C;
    --secondary-blue: #2C3E50;
    --text-gray: #4F4F4F;
    --accent-rust: #B53C2E;
    --light-rust: #E67E73;
    --light-grey: #EDF2F4;
    --white: #FFFFFF;
    --deep-black: #0A0A0A;

    /* Semantic color mappings */
    --charcoal: #2C3E50;
    --slate: #4F4F4F;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================
   Global Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ==========================================
   Utility Classes
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-title {
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    color: var(--slate);
    font-size: 1.125rem;
    font-weight: var(--font-weight-light);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-rust) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary {
    background-color: var(--charcoal);
    color: var(--white);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-secondary {
    background-color: var(--charcoal);
    color: var(--white);
    border: 2px solid transparent;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    text-decoration: none;
}

.logo {
    width: 120px;
    height: 120px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    line-height: 1.2;
    align-items: flex-start;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-rust) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--charcoal);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--charcoal);
    font-weight: var(--font-weight-medium);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-rust) 100%);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: var(--spacing-md);
}

.lang-btn {
    padding: 0.5rem 0.75rem;
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    border: 2px solid var(--light-grey);
    background-color: var(--white);
    color: var(--charcoal);
}

.lang-btn:hover {
    border-color: var(--primary-teal);
    background-color: var(--light-grey);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-rust) 100%);
    color: var(--white);
    border-color: transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    background-color: var(--light-grey);
    border: 1px solid rgba(43, 45, 66, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
}

.highlight {
    color: var(--primary-teal);
    position: relative;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-rust) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Library Scene */
.library-scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.library-svg {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 500px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.shelf-book {
    transition: all 0.3s ease;
}

.picking-animation {
    animation: bookPick 4s ease-in-out infinite;
}

#pick-1 {
    animation-delay: 0s;
}

#pick-2 {
    animation-delay: 1s;
}

#pick-3 {
    animation-delay: 2s;
}

#pick-4 {
    animation-delay: 3s;
}

@keyframes bookPick {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    15% {
        transform: translateY(-20px) scale(1.05);
    }
    30% {
        transform: translateY(-15px) scale(1.02);
    }
    45% {
        transform: translateY(0) scale(1);
    }
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: var(--spacing-lg) 0;
    background-color: var(--light-grey);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-md);
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-teal);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--slate);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.stat-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.stat-label {
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
}

/* ==========================================
   Catalog Section
   ========================================== */
.catalog {
    padding: var(--spacing-lg) 0;
}

.catalog-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.category-card {
    background-color: var(--light-grey);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(22, 160, 133, 0.15);
    border-color: var(--primary-teal);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.category-title {
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.category-description {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.category-age {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.1) 0%, rgba(181, 60, 46, 0.1) 100%);
    color: var(--primary-teal);
    border: 1px solid rgba(22, 160, 133, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.coming-soon {
    background: linear-gradient(135deg, var(--light-grey) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    border: 2px dashed rgba(22, 160, 133, 0.3);
}

.coming-soon-content h3 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-rust) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-content p {
    color: var(--slate);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   Authors Section
   ========================================== */
.authors {
    padding: var(--spacing-lg) 0;
    background-color: var(--light-grey);
}

.authors-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-md);
}

.authors-text h3 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.authors-text h4 {
    color: var(--charcoal);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.authors-text p {
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--slate);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.features-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary-teal);
}

.submission-card {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.submission-card h3 {
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.guideline-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.guideline-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.25rem;
}

.guideline-text h4 {
    color: var(--charcoal);
    font-size: 1rem;
    margin-bottom: 4px;
}

.guideline-text p {
    color: var(--slate);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.submission-card .btn {
    margin-top: var(--spacing-sm);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: var(--spacing-lg) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-md);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-rust) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--slate);
    margin: 0;
    line-height: 1.6;
}

.location-link {
    color: var(--slate);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.location-link:hover {
    color: var(--primary-teal);
    text-decoration: underline;
}

.contact-form {
    background-color: var(--light-grey);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    color: var(--charcoal);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--white);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--charcoal);
    background-color: var(--white);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(180deg, #1a2530 0%, #2C3E50 100%);
    color: var(--light-grey);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-logo-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    text-decoration: none;
}

.footer-logo {
    width: 160px;
    height: 160px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    line-height: 1.2;
    align-items: flex-start;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-rust) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-subtitle {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--light-grey);
}

.footer-links {
    display: flex;
    justify-content: flex-end;
}

.footer-column h4 {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-rust) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-column a {
    color: var(--light-grey);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--light-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(141, 153, 174, 0.2);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-grey);
    font-size: 0.875rem;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero {
        padding-bottom: var(--spacing-lg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .hero-visual {
        height: auto;
        order: -1;
        margin-bottom: var(--spacing-md);
        min-height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .authors-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand {
        margin-bottom: var(--spacing-md);
    }

    .about {
        position: relative;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .nav-container {
        gap: var(--spacing-sm);
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.75rem;
    }

    .language-switcher {
        order: 1;
        margin-left: auto;
        margin-right: 0;
    }

    .hamburger {
        order: 2;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: left var(--transition-medium);
        box-shadow: var(--shadow-md);
        border-top: 3px solid var(--primary-teal);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: var(--spacing-sm) 0;
        font-size: 1.125rem;
        border-bottom: 1px solid var(--light-grey);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-cta {
        flex-direction: column;
    }

    .catalog-categories {
        grid-template-columns: 1fr;
    }

    .footer-content {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo-title {
        justify-content: center;
    }

    .footer-logo {
        width: 100px;
        height: 100px;
    }

    .footer-brand-name {
        font-size: 1.25rem;
    }

    .footer-brand-subtitle {
        font-size: 0.875rem;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .logo {
        width: 60px;
        height: 60px;
    }

    .brand-name {
        font-size: 0.875rem;
    }

    .brand-subtitle {
        font-size: 0.625rem;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-logo {
        width: 80px;
        height: 80px;
    }

    .footer-brand-name {
        font-size: 1rem;
    }

    .footer-brand-subtitle {
        font-size: 0.75rem;
    }

    .footer-content {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo-title {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }
}

/* ==========================================
   Decorative Elements & Graphics
   ========================================== */
.decorative-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.pattern-left {
    top: 10%;
    left: -50px;
    background: radial-gradient(circle at center, var(--primary-teal) 0%, transparent 70%);
}

.pattern-right {
    top: 20%;
    right: -50px;
    background: radial-gradient(circle at center, var(--accent-rust) 0%, transparent 70%);
}

.decorative-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
    background-image: radial-gradient(circle, var(--primary-teal) 2px, transparent 2px);
    background-size: 20px 20px;
}

.dots-top-right {
    top: 50px;
    right: 50px;
}

.dots-bottom-left {
    bottom: 50px;
    left: 50px;
}

/* Ensure sections have relative positioning for decorative elements */
.about, .catalog, .authors, .contact {
    position: relative;
    overflow: hidden;
}

/* Enhanced category cards with subtle background patterns */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, var(--primary-teal) 0%, transparent 70%);
    opacity: 0.03;
    pointer-events: none;
}

.category-card {
    position: relative;
}

/* ==========================================
   Animations
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
