/* ==========================================================================
   ENTWINED HEARTS: THE LIVING HEARTBEAT BRAND TEXT EFFECT
   ========================================================================== */

.eh-heartbeat-title {
    display: inline-block;
    color: #ffb6c1; /* Soft romantic rose pink */
    text-shadow: 0 0 10px rgba(255, 182, 193, 0.3);
    will-change: transform, text-shadow;
    /* Mimics a real dual-thump heartbeat rhythm (lub-dub... lub-dub...) */
    animation: eh-core-heartbeat 3.5s infinite ease-in-out;
}

@keyframes eh-core-heartbeat {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 182, 193, 0.3);
    }
    14% {
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(255, 105, 180, 0.7), 0 0 30px rgba(255, 105, 180, 0.4);
    }
    28% {
        transform: scale(1.02);
        text-shadow: 0 0 12px rgba(255, 182, 193, 0.5);
    }
    42% {
        transform: scale(1.07);
        text-shadow: 0 0 20px rgba(255, 105, 180, 0.8), 0 0 35px rgba(255, 105, 180, 0.5);
    }
    70% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 182, 193, 0.3);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 182, 193, 0.3);
    }
}