/* Smooth transitions for theme switching */
html, body, section, div, button, card {
    transition: background-color 0.5s ease, border-color 0.5s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Decorative Background Elements */
.glass-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.bg-video-overlay {
    background: rgba(0, 0, 0, 0.6);
}
