/* =========================================================
   Luna & Leo — 6th birthday invite
   Mobile-first single page. Two worlds: unicorn + mountain bike.
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #f72c7d;
    --purple: #7c0dff;
    --blue: #1c4e65;
    --blue-l: #88b2c4;
    --ink: #2a2540;
}

html,
body {
    background: #efe6ff;
    font-family: "Fredoka", system-ui, sans-serif;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 8px;
    background:
        radial-gradient(circle at 20% 0%, #ffe3f3 0%, transparent 45%),
        radial-gradient(circle at 90% 100%, #cfeaff 0%, transparent 45%),
        #efe6ff;
}

.card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px -12px rgba(80, 20, 120, 0.35);
}

/* =========================================================
   HERO — diagonal two-world split
   ========================================================= */
.hero {
    position: relative;
    height: 515px;
    overflow: hidden;
    isolation: isolate;
}

/* unicorn sky (top-left triangle) */
.sky-unicorn {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, #ff9ec7 0%, #c77dff 55%, #7c0dff 100%);
}
/* bike sky (bottom-right triangle) revealed by clip */
.sky-bike {
    position: absolute;
    inset: 0;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    background: linear-gradient(
        0deg,
        rgba(83, 121, 138, 1) 0%,
        rgba(136, 178, 196, 1) 35%,
        rgba(28, 78, 101, 1) 99%
    );
}
/* the diagonal seam */
.divider {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        to top right,
        transparent calc(50% - 2px),
        rgba(255, 255, 255, 0.85) 50%,
        transparent calc(50% + 2px)
    );
}

/* twinkly sparkles on the unicorn side */
.sparkles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 30px 40px, #fff, transparent),
        radial-gradient(2px 2px at 120px 90px, #fff6, transparent),
        radial-gradient(1.5px 1.5px at 70px 150px, #fff, transparent),
        radial-gradient(2px 2px at 180px 30px, #fff8, transparent),
        radial-gradient(1.5px 1.5px at 230px 110px, #fff, transparent);
    animation: twinkle 2.4s ease-in-out infinite alternate;
}
@keyframes twinkle {
    from {
        opacity: 0.35;
    }
    to {
        opacity: 1;
    }
}

/* =========================================================
   ART WRAPPERS — scale the fixed-size pixel art for mobile
   ========================================================= */
.art {
    position: absolute;
    z-index: 2;
}

.art--unicorn {
    top: 35px;
    left: 40px;
    width: 350px;
    height: 294px;
    transform: scale(0.52);
    transform-origin: top left;
}
.art--bike {
    right: -16px;
    bottom: -52px;
    z-index: 5;
    width: 265px;
}
.moto {
    width: 100%;
}
.moto svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

/* =========================================================
   HERO TEXT
   ========================================================= */
.hero-text {
    position: absolute;
    z-index: 6;
    top: 205px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 14px rgba(20, 5, 40, 0.8);
    padding: 26px 14px;
    background: radial-gradient(
        ellipse 80% 100% at 50% 50%,
        rgba(25, 6, 45, 0.55) 0%,
        rgba(25, 6, 45, 0) 72%
    );
}
.eyebrow {
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0.95;
    margin-bottom: 2px;
}
.names {
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 46px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.names em {
    font-style: normal;
    font-size: 28px;
    font-weight: 700;
    color: #ffe14d;
    -webkit-text-fill-color: #ffe14d;
}
.turning {
    font-family: "Baloo 2", cursive;
    font-weight: 500;
    font-size: 17px;
    margin-top: 4px;
}
.turning strong {
    font-weight: 800;
    font-size: 20px;
    color: #ffe14d;
}

/* =========================================================
   DETAILS
   ========================================================= */
.details {
    padding: 26px 24px 30px;
}

.join {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #5a4b78;
    margin-bottom: 22px;
    line-height: 1.45;
}

.info {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 26px;
}
.info li {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fdf3ff, #eef6ff);
    border: 1px solid #f0e4ff;
    border-radius: 18px;
    padding: 14px 16px;
}
.info .ico {
    font-size: 26px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(124, 13, 255, 0.12);
    flex: 0 0 auto;
}
.info div {
    display: flex;
    flex-direction: column;
}
.info .label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a07fce;
    font-weight: 600;
}
.info .value {
    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    line-height: 1.2;
}
.info .value.sub {
    font-family: "Fredoka", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6b5e85;
}

.rsvp {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: "Baloo 2", cursive;
    font-weight: 800;
    font-size: 19px;
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    background: linear-gradient(
        120deg,
        var(--pink) 0%,
        var(--purple) 60%,
        var(--blue) 130%
    );
    box-shadow: 0 12px 24px -6px rgba(124, 13, 255, 0.5);
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease;
}
.rsvp:active {
    transform: scale(0.97);
    box-shadow: 0 6px 14px -6px rgba(124, 13, 255, 0.5);
}
.rsvp.pop {
    animation: pop 0.4s ease;
}
@keyframes pop {
    50% {
        transform: scale(1.06);
    }
}

.rsvp-note {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: #9385ad;
}
sup {
    font-size: 0.6em;
}

/* small phones */
@media (max-width: 360px) {
    .names {
        font-size: 40px;
    }
    .hero {
        height: 480px;
    }
    .hero-text {
        top: 185px;
    }
    .art--bike {
        width: 240px;
    }
}

/* =========================================================
   ===============  UNICORN ART  (LESS → CSS)  =============
   Dark "scene" shapes recolored to soft shadows for pink sky
   ========================================================= */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 294px;
    overflow: hidden;
}
.head {
    position: absolute;
    top: 50px;
    left: 10px;
    width: 0;
    height: 0;
    border-bottom: 100px solid #f2f2f2;
    border-left: 100px solid transparent;
    border-bottom-left-radius: 10px;
}
.head::before {
    content: "";
    position: absolute;
    top: 73px;
    left: -94px;
    width: 100px;
    height: 69px;
    background: #f2f2f2;
    border-radius: 10px;
    transform: rotate(-30deg);
}
.head::after {
    content: "";
    position: absolute;
    top: 59px;
    left: -73px;
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 100px solid #f2f2f2;
    border-radius: 10px;
}
.head-back {
    position: absolute;
    top: 50px;
    left: 169px;
    width: 0;
    height: 0;
    border-bottom: 100px solid #f2f2f2;
    border-right: 25px solid transparent;
}
.head-back::before {
    content: "";
    position: absolute;
    top: 1px;
    left: -61px;
    width: 63px;
    height: 100px;
    background: #f2f2f2;
}
.ear {
    position: absolute;
    top: 40px;
    left: 164px;
    width: 41px;
    height: 10px;
    border-radius: 40px 40px 0 0;
    background: #f2f2f2;
    transform: rotate(-40deg);
}
.ear::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 7px;
    width: 34px;
    height: 15px;
    border-radius: 0 0 40px 40px;
    background: #f2f2f2;
}
.neck {
    z-index: -1;
    position: absolute;
    top: 148px;
    left: 120px;
    width: 85px;
    height: 152px;
    background: #f2f2f2;
}
.neck::before {
    content: "";
    position: absolute;
    top: 42px;
    left: -145px;
    width: 150px;
    height: 150px;
    border-right: 25px solid #f2f2f2;
    border-bottom: 25px solid #f2f2f2;
    border-radius: 0 0 150px 0;
    transform: rotate(-8deg);
}
.neck::after {
    content: "";
    position: absolute;
    top: -82px;
    left: -74px;
    width: 150px;
    height: 285px;
    border-right: 25px solid #f2f2f2;
    border-bottom: 25px solid #f2f2f2;
    border-radius: 0 0 150px 0;
    transform: rotate(-15deg);
}
.horn {
    z-index: -1;
    position: absolute;
    top: -5px;
    left: 45px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 90px solid #ffd98a;
    transform: rotate(-45deg);
}
.horn-shadow {
    z-index: -2;
    position: absolute;
    top: -10px;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 90px solid rgba(80, 20, 110, 0.22);
    transform: rotate(-55deg);
}
.sunglass {
    position: absolute;
    top: 100px;
    left: 25px;
    width: 75px;
    height: 35px;
    border-radius: 0 0 60px 60px;
    background: #000;
}
.sunglass::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 75px;
    height: 10px;
    border-radius: 15px;
    background: #000;
}
.sunglass.right {
    left: 101px;
}

.shadow {
    z-index: -3;
    position: absolute;
    top: 206px;
    left: 35px;
    width: 0;
    height: 0;
    border-top: 80px solid rgba(80, 20, 110, 0.16);
    border-left: 140px solid transparent;
}
.shadow::before {
    content: "";
    position: absolute;
    top: -237px;
    left: -12px;
    width: 200px;
    height: 300px;
    background: linear-gradient(rgba(80, 20, 110, 0.16), rgba(80, 20, 110, 0));
    transform: rotate(-55deg);
}
.shadow::after {
    content: "";
    position: absolute;
    top: -285px;
    left: -25px;
    width: 0;
    height: 0;
    border-bottom: 80px solid rgba(80, 20, 110, 0.16);
    border-right: 80px solid transparent;
    transform: rotate(-20deg);
}
.hair-top {
    z-index: -2;
    position: absolute;
    top: 26px;
    left: 100px;
    width: 30px;
    height: 30px;
    background: #7c0dff;
    transform: skew(45deg);
    border-radius: 5px;
}
.hair-top::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 23px;
    width: 40px;
    height: 40px;
    background: #f72c7d;
    border-radius: 5px;
}
.mane,
.mane-two,
.mane-three,
.mane-four,
.mane-five,
.mane-six {
    z-index: -2;
    position: absolute;
    width: 60px;
    height: 45px;
    transform: skew(45deg);
    border-radius: 5px;
}
.mane {
    top: 64px;
    left: 158px;
    background: #f55c66;
    animation: color1 1.2s infinite alternate;
}
.mane-two {
    top: 98px;
    left: 170px;
    background: #ffb838;
    animation: color2 1.4s infinite alternate;
}
.mane-three {
    top: 135px;
    left: 180px;
    background: #14f791;
    animation: color3 1.3s infinite alternate;
}
.mane-four {
    top: 173px;
    left: 185px;
    background: #253ff9;
    animation: color4 1s infinite alternate;
}
.mane-five {
    top: 213px;
    left: 190px;
    background: #f341d3;
    animation: color5 1.2s infinite alternate;
}
.mane-six {
    top: 248px;
    left: 185px;
    background: #7c0dff;
    animation: color6 1.1s infinite alternate;
}

.hand {
    position: absolute;
    top: 288px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #f2f2f2;
    border-radius: 100%;
}
.popsicle {
    position: absolute;
    top: 230px;
    left: 25px;
    width: 30px;
    height: 50px;
    background: #ffb43c;
    border-radius: 3px;
}
.popsicle::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 7px;
    width: 6px;
    height: 30px;
    background: #fe994a;
    border-radius: 3px;
}
.popsicle::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 17px;
    width: 6px;
    height: 30px;
    background: #fe994a;
    border-radius: 3px;
}
.stick {
    z-index: -1;
    position: absolute;
    top: 265px;
    left: 35px;
    width: 10px;
    height: 30px;
    background: #885c3a;
}
.pop-shadow {
    z-index: -3;
    position: absolute;
    top: 230px;
    left: 54px;
    width: 58px;
    height: 100px;
    background: rgba(80, 20, 110, 0.14);
    transform: rotate(-60deg);
}

@keyframes color1 {
    from {
        background-color: #8e44ad;
    }
    to {
        background-color: #f55c66;
    }
}
@keyframes color2 {
    from {
        background-color: #73c6b6;
    }
    to {
        background-color: #ffb838;
    }
}
@keyframes color3 {
    from {
        background-color: #f1948a;
    }
    to {
        background-color: #14f791;
    }
}
@keyframes color4 {
    from {
        background-color: #f39c12;
    }
    to {
        background-color: #253ff9;
    }
}
@keyframes color5 {
    from {
        background-color: #d0ece7;
    }
    to {
        background-color: #f341d3;
    }
}
@keyframes color6 {
    from {
        background-color: #85c1e9;
    }
    to {
        background-color: #7c0dff;
    }
}

/* =========================================================
   ===============  BIKE ART  (LESS → CSS)  ================
   ========================================================= */
.bike {
    position: relative;
    margin: 10px;
    width: 200px;
    height: 100px;
    transform: scale(1.4);
    animation: vibration 0.4s linear infinite;
    z-index: 1000;
}
.bike::after {
    position: absolute;
    bottom: -22px;
    left: -140px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    content: "";
    width: 280px;
    height: 2px;
    box-shadow: 0 0 6px 5px rgba(0, 0, 0, 0.2);
}
@keyframes vibration {
    0% {
        transform: translate(0, 0) scale(1.4);
    }
    50% {
        transform: translate(0, 0.5px) scale(1.4);
    }
    100% {
        transform: translate(0, 0) scale(1.4);
    }
}
.frame {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100px;
    height: 50px;
    z-index: 100;
}
.to-back {
    position: absolute;
    left: 5px;
    top: -2px;
    width: 54px;
    height: 34px;
    border-bottom: 5px solid #c83504;
}
.to-back::after {
    content: "";
    position: absolute;
    top: 33px;
    left: -1px;
    width: 7px;
    height: 7px;
    background: black;
    border-radius: 50%;
}
.to-back::before {
    position: absolute;
    content: "";
    transform: rotate(-20deg);
    border-bottom: 5px solid #c83504;
    top: -10px;
    left: -6px;
    width: 54px;
    height: 36px;
}
.to-front {
    position: absolute;
    right: 10px;
    top: -30px;
    width: 54px;
    height: 34px;
    border-bottom: 5px solid #c83504;
    transform: rotate(-30deg);
}
.to-front::before {
    position: absolute;
    content: "";
    transform: rotate(-20deg);
    border-bottom: 5px solid #c83504;
    top: 10px;
    left: -6px;
    width: 54px;
    height: 36px;
}
.to-saddle {
    position: absolute;
    right: 7px;
    top: -16px;
    width: 54px;
    height: 34px;
    border-bottom: 5px solid #c83504;
    transform: rotate(70deg);
}
.to-saddle::before {
    position: absolute;
    content: "";
    right: -18px;
    top: -46px;
    width: 74px;
    height: 30px;
    border-bottom: 7px solid black;
}
.to-saddle::after {
    position: absolute;
    content: "";
    right: 24px;
    top: -51px;
    width: 16px;
    height: 34px;
    border-bottom: 10px solid #c83504;
}
.saddle-wrapper {
    position: relative;
    top: -32px;
    left: 11px;
    z-index: 202;
}
.saddle {
    position: absolute;
    top: -10px;
    left: 10px;
    width: 30px;
    height: 12px;
    background: black;
    clip-path: polygon(0 50%, 90% 76%, 100% 100%, 9% 100%);
    border-radius: 10%;
}
.saddle-stick {
    position: absolute;
    left: 26px;
    width: 4px;
    height: 20px;
    transform: rotate(-20deg);
    background: black;
}
.saddle-stick::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: -3px;
    width: 9px;
    height: 3px;
    background: #000;
}
.handle {
    position: absolute;
    top: 11px;
    left: 87px;
    width: 6px;
    height: 8px;
    background: #000;
    transform: rotate(-30deg);
    border-radius: 30%;
}
.handle::before {
    position: absolute;
    top: -5px;
    left: -14px;
    content: "";
    background: black;
    border-radius: 40%;
    width: 20px;
    height: 5px;
    transform: rotate(20deg);
}
.handle::after {
    position: absolute;
    top: -8px;
    left: -14px;
    content: "";
    background: #333;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}
.cables {
    position: absolute;
    top: 18px;
    left: 80px;
    width: 24px;
    height: 14px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    border-bottom: 2px solid transparent;
    border-radius: 45%;
    transform: rotate(50deg) scale(0.8);
    z-index: 200;
}
.cables::after {
    position: absolute;
    top: -20px;
    left: 12px;
    content: "";
    width: 26px;
    height: 56px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    border-radius: 45%;
    transform: rotate(-54deg);
}
.wheels-wrapper {
    position: absolute;
    width: 200px;
    top: 50px;
    left: -28px;
    z-index: 3;
}
.wheel {
    border: 9px solid black;
    display: inline-block;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    animation: spin 1s 1s linear infinite;
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
.front-wheel {
    position: absolute;
    left: 105px;
}
.front-wheel::before,
.back-wheel::before {
    position: absolute;
    top: -10px;
    left: -10px;
    content: "";
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: transparent;
    border: 4px dotted black;
}
.pedals {
    position: absolute;
    top: 78px;
    left: 52px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: black;
    z-index: 201;
    border: 3px solid #333;
    box-shadow: 0 0 0 2px rgba(81, 81, 81, 1);
}
.pedals::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: pink;
    top: 50%;
    right: 7px;
    animation: pedals 1s linear infinite;
    transform-origin: right top;
}
.pedal {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 70px;
    height: 70px;
    animation: pedal 1s linear infinite;
    transform-origin: 50% 50%;
}
.pedal::after {
    content: "";
    position: absolute;
    top: 32px;
    left: 0;
    width: 14px;
    height: 6px;
    background: rgba(48, 49, 49, 1);
    animation: pedalsRev 1s linear infinite;
    transform-origin: 50% 50%;
}
@keyframes pedals {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes pedalsRev {
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes pedal {
    100% {
        transform: rotate(360deg);
    }
}

.wheel-inner {
    display: grid;
    grid-template-columns: repeat(3, [col] auto);
    grid-template-rows: repeat(3, [row] auto);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #666;
}
.wheel-inner::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 5px;
    height: 14px;
    background: orange;
    z-index: 3000;
    border-radius: 50%;
    transform: rotate(30deg);
}
.rim {
    align-self: center;
    justify-self: center;
    grid-column: col 2;
    grid-row: 2;
    width: 16px;
    height: 16px;
    border: 3px solid #444;
    border-radius: 50%;
}
.nav {
    align-self: center;
    justify-self: center;
    grid-column: col 2;
    grid-row: 2;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
}
.spoke {
    align-self: center;
    justify-self: center;
    grid-column: col 2;
    grid-row: 2;
    width: 50px;
    height: 1px;
    background: #444;
}
.spoke:nth-child(3) {
    transform: rotate(30deg);
}
.spoke:nth-child(4) {
    transform: rotate(60deg);
}
.spoke:nth-child(5) {
    transform: rotate(90deg);
}
.spoke:nth-child(6) {
    transform: rotate(-30deg);
}
.spoke:nth-child(7) {
    transform: rotate(-60deg);
}

.wind {
    position: relative;
    background: #000;
    top: 80px;
    left: -50px;
    z-index: 2;
    transform: rotate(180deg);
}
.wind::before {
    position: absolute;
    display: inline-block;
    content: "";
    width: 35px;
    height: 2px;
    box-shadow:
        100px 40px 0 1px rgba(81, 81, 81, 1),
        450px 30px 0 1px rgba(81, 81, 81, 1);
    animation:
        vibration 0.8s linear infinite,
        grow 0.4s linear alternate infinite;
    transform-origin: 50% 50%;
}
.wind::after {
    position: absolute;
    display: inline-block;
    content: "";
    width: 25px;
    height: 1px;
    box-shadow:
        100px 40px 0 1px rgba(0, 0, 0, 0.5),
        130px 30px 0 1px rgba(0, 0, 0, 0.5),
        480px 40px 0 1px rgba(0, 0, 0, 0.5);
    animation:
        vibration 0.8s linear infinite,
        grow 0.4s linear alternate-reverse infinite;
    transform-origin: 50% 50%;
}
@keyframes grow {
    0% {
        transform: translate(0, 0) scale(0.3);
    }
    100% {
        width: 340px;
        transform: translate(-30px, 0) scale(0.3);
        opacity: 0;
    }
}

/* =========================================================
   ===========  MOTORBIKE SVG SCENE animations  ===========
   Scoped under .moto so the generic class names (.shadow,
   .motor, .flits ...) can't collide with the unicorn / page.
   ========================================================= */
.moto .wielen {
    transform-origin: 50% 50%;
    animation: bus 4s ease-in-out infinite;
}
.moto .motor {
    animation: bus 4s ease-in-out infinite;
}
.moto .shadow {
    animation: schaduw 1.5s ease-in-out infinite;
}
.moto .flits {
    animation: flitsen 0.2s ease-in-out infinite;
}
.moto .wolkjes {
    animation: zweven 7s linear infinite;
}
.moto .buildings1 {
    animation: zweven1 40s linear infinite;
}
.moto .buildings2 {
    animation: zweven2 40s linear infinite;
}
.moto .shake {
    animation: shake 0.1s infinite;
}

@keyframes bus {
    0% {
        transform: translate(-25px, -6px);
    }
    50% {
        transform: translate(25px, 6px);
    }
    100% {
        transform: translate(-25px, -6px);
    }
}
@keyframes shake {
    0%,
    100% {
        transform: rotateZ(0deg);
    }
    25% {
        transform: rotateZ(-1deg);
    }
    50% {
        transform: rotateZ(1deg);
    }
}
@keyframes flitsen {
    0% {
        transform: translate(250px, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-250px, 0);
        opacity: 0.5;
    }
}
@keyframes zweven {
    0% {
        transform: translate(1200px, 0);
    }
    100% {
        transform: translate(-1500px, 0);
    }
}
@keyframes zweven1 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-1600px, 0);
    }
}
@keyframes zweven2 {
    0% {
        transform: translate(1600px, 0);
    }
    100% {
        transform: translate(-1600px, 0);
    }
}
@keyframes schaduw {
    0%,
    100% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.05, 1);
    }
}

/* respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
    }
}
