/* Umka Academy — Custom Styles */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #0c4a6e;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #075985;
}

/* Selection color */
::selection {
    background: #e4ad5c;
    color: #0c4a6e;
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

/* Subtle entrance animations (progressive enhancement) */
@media (prefers-reduced-motion: no-preference) {
    .fade-in-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    nav, #contact, .cta-section {
        display: none;
    }
    body {
        color: #000;
        background: #fff;
    }
}
