/* =========================================================================
   Light Theme Variables
   ========================================================================= */
:root.light-theme {
    /* Light Color Palette */
    --bg-dark: #ffffff;
    --bg-card: rgba(0, 0, 0, 0.04);
    --bg-card-hover: rgba(0, 0, 0, 0.08);
    --border-color: rgba(0, 0, 0, 0.1);

    --primary: #6366f1; /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.2);
    --secondary: #ec4899; /* Pink */
    --accent: #8b5cf6; /* Purple */

    --text-primary: #1a1a1a;
    --text-secondary: #65758f;
    --text-muted: #8b96a5;

    /* Typography */
    --font-heading: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --nav-height: 80px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Light theme background blob */
:root.light-theme .blob-bg {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(99, 102, 241, 0.06) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(236, 72, 153, 0.06) 0%,
            transparent 40%
        );
}

/* Light theme navbar */
:root.light-theme .navbar {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

:root.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Light theme form inputs */
:root.light-theme .form-group input,
:root.light-theme .form-group textarea {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

:root.light-theme .form-group input:focus,
:root.light-theme .form-group textarea:focus {
    background: rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Light theme cards */
:root.light-theme .glass-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

:root.light-theme .hover-glow:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

/* Light theme footer */
:root.light-theme .footer {
    background: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Control buttons in light theme */
:root.light-theme .control-btn {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

:root.light-theme .control-btn:hover {
    background: rgba(0, 0, 0, 0.12);
}

/* Light theme dropdown */
:root.light-theme .theme-dropdown {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

:root.light-theme .theme-option {
    color: var(--text-primary);
}

:root.light-theme .theme-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Light theme lofi override */
:root.light-theme.theme-lofi {
    --bg-dark: #f5f0e8;
    --text-primary: #1a1710;
    --text-secondary: #5d5247;
}

:root.light-theme.theme-lofi .theme-dropdown {
    background: #f5f0e8;
}
