/* typing-animation.css */

/* Typing Animation Styles */
.typing-animation-section {
    font-family: 'Lato', sans-serif;
    text-align: center;
    padding: 3.125rem 1.25rem;
    margin-top: 3.125rem;
    font-weight: 500;
    font-size: 24px;
}

.text-line {
    font-family: 'Lato', sans-serif;
    font-size: 3rem;
    color: #707070;
    display: inline-block;
    white-space: pre-wrap;
    overflow: hidden;
    letter-spacing: 0.05em;
    width: 100%;
    text-align: center;
    margin: 0.625rem 0;
}

.text-line.cursor::after {
    content: '|';
    display: inline-block;
    animation: blink .75s step-end infinite;
    margin-left: 5px;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

@media (max-width: 1280px) {
    .text-line {
        font-size: 2rem;
    }
}

.horizontal-twirl {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.horizontal-twirl img {
    max-width: 100%;
    height: auto;
}
