/*
Theme Name: Orbita
Theme URI: https://orbitanov.ru
Author: Kirill
Description: Кастомная тема
Version: 0.1.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: orbita
*/

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-category-enter {
    animation: fadeSlideIn 0.35s ease-out forwards;
}

html {
    scroll-behavior: smooth;
}

.is-highlighted {
    animation: orbita-highlight 2.5s ease-out;
}

@keyframes orbita-highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
        background-color: rgb(248, 250, 252);
    }
    20% {
        box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.25);
        background-color: rgb(219, 234, 254);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
        background-color: rgb(248, 250, 252);
    }
}