/* ========================================================== */
/* TYPING EFFECT
/* ========================================================== */
.typing {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10px;
    margin-bottom: 20px;
}

.typing span {
    display: inline-block;
    opacity: 0;
    transform: translateY(25px);
    filter: blur(6px);
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
}

.typing span.show {opacity: 1; transform: translateY(0); filter: blur(0);}

/* ========================================================== */
/* TWO LINES ON BOTH SIDES (CENTER DARK TITLE)
/* ========================================================== */
.CenterDText {
    color: var(--w);
    place-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 5px;
    display: flex;
    width: auto;
}

.CenterDText .RightL {
    background: linear-gradient(270deg, #ffffff00 0%, #ffffff80 100%);
    opacity: 1;
    width: 80px;
    height: 1px;
}

.CenterDText .LeftL {
    background: linear-gradient(90deg, #ffffff00 0%, #ffffff80 100%);
    opacity: 1;
    width: 80px;
    height: 1px;
}
/* ========================================================== */
/* TYPING EFFECT TWO : TYPEWRITER EFFECT (Cycle through <p> tags)
/* ========================================================== */
.typing-b {
    /* Container for the typewriter element */
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--c-3, #edc8a1);
    letter-spacing: 2px;
    min-height: 4rem;
}

.typing-b .typed-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: currentColor;
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 0.8s step-end infinite;
}

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

/* Optional: fade in animation for the typewriter */
.typing-b.fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: typewriterFadeUp 0.5s ease forwards;
}

@keyframes typewriterFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ========================================================== */


