/* ═══════════════════════════════════════
   CSS ANIMATIONS & Reduced Motion
   ═══════════════════════════════════════ */

/* Typewriter cursor blink */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.typewriter-cursor {
    display: inline-block; width: 2px; height: 1em;
    background: var(--bb-rose-ancien);
    margin-left: 2px; vertical-align: text-bottom;
    animation: blink 1s infinite;
}

/* Availability pulse */
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Initial hidden state for GSAP reveals */
.reveal, .reveal-up { opacity: 0; transform: translateY(30px); }

/* Reduced motion: disable all animations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal, .reveal-up {
        opacity: 1 !important;
        transform: none !important;
    }
}
