/* custom.css */

/* Nav logo overflow fix */
.section[data-section="navigation"],
.navigation,
.navigation__box_side_left,
.logo {
    overflow: visible !important;
}
.logo__img {
    height: auto !important;
}

/* Preload loading effect */
.preload__logo {
    animation: preload-pulse 2s ease-in-out infinite;
}

@keyframes preload-pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(255, 160, 50, 0)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(255, 160, 50, 0.6)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(255, 160, 50, 0)); }
}

.preload__items {
    animation: preload-dots 1.5s ease-in-out infinite;
}

@keyframes preload-dots {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
