/* Smooth transitions for theme switching */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Custom focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Hero background with subtle pattern */
.hero-bg {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" opacity="0.05"><path d="M0 0H100V100H0V0Z" fill="%23ffffff" class="dark:fill-gray-900"/><path d="M50 0V100M0 50H100" stroke="%233b82f6" stroke-width="2"/></svg>');
    background-size: 40px 40px;
}

.dark .hero-bg {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" opacity="0.05"><path d="M0 0H100V100H0V0Z" fill="%23111111"/><path d="M50 0V100M0 50H100" stroke="%233b82f6" stroke-width="2"/></svg>');
}
