/* ================================
   TYPOGRAPHY AND ANIMATION FIXES
================================ */

/* Fix hero subtitle layout */
.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 40px;
    margin-bottom: 20px;
}

.typing-text {
    min-width: 300px;
    display: inline-block;
}

.typing-cursor {
    margin-left: 2px;
    animation: blink 1s infinite;
}

.ph-flag {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-left: auto;
}

/* Ensure smooth typing without layout shift */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Philippines flag pulse - smoother */
@keyframes ph-pride-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 210, 63, 0.3));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 15px rgba(255, 210, 63, 0.5));
    }
}