/**
 * Dark Mode Overrides for Asite Landing Theme
 * 
 * Minimal overrides that can't be handled by Tailwind classes
 * Most dark mode styling is now handled by Tailwind v4 with @custom-variant
 */

/* Dark mode color variables for CSS custom properties */
.dark {
    --color-bg-primary: #0f172a;
    --color-bg-secondary: #1e293b;
    --color-bg-tertiary: #334155;
    --color-text-primary: #f1f5f9;
    --color-text-secondary: #cbd5e1;
    --color-text-tertiary: #94a3b8;
    --color-border: #334155;
}

/* Header dark mode - special backdrop filter */
.dark .site-header {
    background-color: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid var(--color-border);
}

/* Footer dark mode gradient override */
.dark .site-footer {
    background: linear-gradient(180deg, #0f172a 0%, #000000 100%);
    border-top: 1px solid var(--color-border);
}

/* Domain Awaiting Configuration badge dark mode */
.dark .bg-gradient-to-r.from-orange-50.to-yellow-50 {
    background: linear-gradient(to right, rgba(251, 146, 60, 0.1), rgba(251, 191, 36, 0.1)) !important;
    border-color: rgba(251, 146, 60, 0.2) !important;
}

/* Theme toggle button special hover state */
.dark #theme-toggle:hover {
    background-color: rgba(4, 214, 142, 0.1);
}

/* Dark mode scrollbar */
.dark::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

.dark::-webkit-scrollbar-thumb {
    background: var(--color-bg-tertiary);
}

.dark::-webkit-scrollbar-thumb:hover {
    background: #475569;
}