/* =====================================================
   ICTGroepTwente – Shared Animation Styles
   ===================================================== */

/* Typewriter cursor blink */
@keyframes logo-cursor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

@media (prefers-reduced-motion: no-preference) {
    .logo-cursor {
        display: inline-block;
        width: 2px;
        height: 1.1em;
        background-color: #00e5ff;
        margin-left: 1px;
        vertical-align: middle;
        animation: logo-cursor-blink 0.75s step-end infinite;
    }
}

/* Prevent layout shift: reserve minimum width so nav doesn't jump
   as text cycles between "ICTGT" and "ICTGROEPTWENTE" */
#logo-text {
    display: inline-block;
    min-width: 9.5ch;
}
