/* ====================================
   Animations & Legacy - Animations et styles legacy
   ==================================== */

/* Animation typewriter (wave-text) */
.wave-text {
    font-size: 1em;
    font-family: 'Lucida Handwriting', cursive;
    margin: 0px;
    white-space: pre;
    font-weight: bold;
}

.wave-text span {
    display: inline-block;
    animation: typewriter 10s infinite;
    position: relative;
    min-width: 0.6em;
}

.wave-text span.space {
    background: transparent;
    min-width: 0.6em;
}

@keyframes typewriter {
    0% {
        transform: translateY(0);
    }

    6.67% {
        transform: translateY(-4px);
    }

    11.67% {
        transform: translateY(2px);
    }

    15% {
        transform: translateY(-1px);
    }

    16.67% {
        transform: translateY(0);
    }

    83.33%,
    100% {
        transform: translateY(0);
    }
}

/* Animation bounce */
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.bouncing-text {
    color: #000000;
    font-weight: bold;
    font-family: 'Lucida Handwriting', cursive;
    font-style: italic;
    display: inline-block;
    animation: bounce 3s infinite ease-in-out;
}

/* Legacy - templatemo_middle (bannière ancienne version) */
#templatemo_middle {
    font-family: robot;
    height: 200px;
    padding: 35px 60px 0px 60px;
    background: url(/images/templatemo_middle.png) no-repeat;
    position: relative;
}

#templatemo_middle h1 {
    color: #244c54;
    font-size: 22px;
    font-weight: 200;
    line-height: 0px;
    margin-bottom: -108px;
    font-family: roboto;
}

.launch-text h1 {
    text-align: center;
    position: absolute;
    bottom: 286px;
    left: 264px;
    text-shadow: 2px -2px 2px white;
}

/* Legacy - Title container */
.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-container h1 {
    margin: 0;
}
