/* ===============================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: #120507;
    color: white;
    font-family: Georgia, serif;
}


/* ===============================
   OPENING SCREEN
================================ */

.opening {

    min-height: 100vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #5a1725 0%,
            #260910 35%,
            #080304 80%
        );

    padding: 30px;
}


.opening p {

    color: #e8b4bd;

    letter-spacing: 6px;

    text-transform: uppercase;

    font-size: 14px;

    margin-bottom: 30px;

    opacity: 0;

    animation:
        fadeIn 2s ease forwards;
}


.opening h1 {

    font-size: 70px;

    letter-spacing: 12px;

    color: #f5d5d9;

    margin-bottom: 15px;

    opacity: 0;

    transform: translateY(25px);

    animation:
        titleReveal 2s ease forwards;

    animation-delay: 0.8s;
}


.opening span {

    font-size: 18px;

    color: #d8a4ad;

    letter-spacing: 3px;

    margin-bottom: 45px;

    opacity: 0;

    animation:
        fadeIn 2s ease forwards;

    animation-delay: 1.6s;
}


.opening button {

    padding: 16px 30px;

    border: 1px solid #d7a1aa;

    border-radius: 50px;

    background: transparent;

    color: white;

    font-size: 13px;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.4s;

    opacity: 0;

    transform: translateY(20px);

    animation:
        buttonReveal 2s ease forwards;

    animation-delay: 2.4s;
}


.opening button:hover {

    background: #d7a1aa;

    color: #1a0509;

    transform: scale(1.05);
}


/* ===============================
   BIRTHDAY SCREEN
================================ */

.birthday {
    min-height: 100vh;
    display: none;

    position: relative;
    overflow: hidden;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 60px 20px;

    background:
        radial-gradient(
            circle at center,
            #5a1725 0%,
            #260910 40%,
            #080304 85%
        );
}


/* ===============================
   PHOTO
================================ */

.photo-frame {

    width: 220px;

    height: 280px;

    padding: 8px;

    border: 1px solid #9b5965;

    border-radius: 14px;

    margin-bottom: 35px;

    box-shadow:
        0 0 30px rgba(180, 80, 100, 0.25);
}


.photo-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 8px;

    background:
        linear-gradient(
            145deg,
            #35101a,
            #120507
        );

    color: #b97884;

    letter-spacing: 3px;

    font-size: 12px;
}


/* ===============================
   TITLES
================================ */

.small-title {

    color: #d7a1aa;

    letter-spacing: 5px;

    font-size: 13px;

    margin-bottom: 25px;
}


.birthday h2 {

    font-size: 75px;

    letter-spacing: 12px;

    color: #f5d5d9;

    margin-bottom: 15px;
}


.birthday h3 {

    color: #d8a4ad;

    font-weight: normal;

    letter-spacing: 3px;

    margin-bottom: 40px;
}


/* ===============================
   DATE
================================ */

.date {

    border-top: 1px solid #8d4c58;

    border-bottom: 1px solid #8d4c58;

    padding: 18px 35px;

    color: #f2c5cc;

    letter-spacing: 5px;

    font-size: 18px;

    margin-bottom: 35px;
}


/* ===============================
   EVENT DETAILS
================================ */

.event-details {

    display: flex;

    gap: 20px;

    margin: 10px 0 35px;
}


.detail-box {

    min-width: 150px;

    padding: 20px;

    border: 1px solid #6f3541;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.03);

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.detail-box span {

    color: #b97884;

    font-size: 11px;

    letter-spacing: 3px;
}


.detail-box strong {

    color: #f1c7ce;

    font-size: 15px;

    font-weight: normal;
}


/* ===============================
   MESSAGE
================================ */

.message {

    max-width: 450px;

    color: #d8b8bd;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* ===============================
   MUSIC PLAYER
================================ */

.music-player {

    width: 100%;

    min-height: 500px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    margin-top: 60px;

    padding: 50px 20px;
}


.music-heading {

    color: #d7a1aa;

    letter-spacing: 5px;

    font-size: 12px;

    margin-bottom: 25px;
}


.music-card {

    width: 330px;

    max-width: 90vw;

    padding: 35px 25px;

    border: 1px solid #6f3541;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.04);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5);

    backdrop-filter: blur(10px);
}


/* ===============================
   VINYL
================================ */

.vinyl {

    width: 150px;

    height: 150px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background:
        repeating-radial-gradient(
            circle,
            #090909 0px,
            #090909 3px,
            #242424 4px,
            #090909 6px
        );

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow:
        0 0 30px rgba(190, 90, 110, 0.25);

    transition: 0.4s;
}


.vinyl-center {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #5a1725;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #f5d5d9;

    font-size: 22px;
}


/* ===============================
   SONG INFO
================================ */

.song-info h3 {

    color: #f5d5d9;

    font-size: 24px;

    margin-bottom: 8px;
}


.song-info p {

    color: #b97884;

    font-size: 13px;

    letter-spacing: 1px;
}


/* ===============================
   PLAY BUTTON
================================ */

.music-controls {

    margin: 25px 0;
}


.play-btn {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    border: 1px solid #d7a1aa;

    background: #d7a1aa;

    color: #1a0509;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s;
}


.play-btn:hover {

    transform: scale(1.1);

    box-shadow:
        0 0 25px rgba(
            215,
            161,
            170,
            0.5
        );
}


/* ===============================
   PROGRESS BAR
================================ */

.progress-area {

    width: 100%;
}


.progress-bar {

    width: 100%;

    height: 3px;

    background: #4b2029;

    border-radius: 10px;
}


.progress {

    width: 0%;

    height: 100%;

    background: #d7a1aa;

    border-radius: 10px;

    transition: width 0.1s linear;
}


/* ===============================
   VINYL ANIMATION
================================ */

.vinyl.playing {

    animation:
        rotateVinyl 5s linear infinite;

    box-shadow:
        0 0 40px rgba(
            215,
            161,
            170,
            0.35
        );
}


@keyframes rotateVinyl {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* ===============================
   OPENING ANIMATIONS
================================ */

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes titleReveal {

    from {

        opacity: 0;

        transform:
            translateY(25px);

        letter-spacing: 25px;

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

        letter-spacing: 12px;

    }

}


@keyframes buttonReveal {

    from {

        opacity: 0;

        transform:
            translateY(20px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 600px) {

    .opening h1 {

        font-size: 48px;

        letter-spacing: 8px;

    }


    .opening span {

        font-size: 15px;

    }


    .birthday h2 {

        font-size: 48px;

        letter-spacing: 8px;

    }


    .event-details {

        flex-direction: column;

        width: 100%;

        align-items: center;

    }


    .detail-box {

        width: 220px;

    }


    .photo-frame {

        width: 190px;

        height: 240px;

    }

}
.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.6s ease;
}

.photo-frame:hover img {
    transform: scale(1.04);
}
/* CINEMATIC PHOTO ANIMATION */

.photo-frame {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    animation: photoReveal 1.5s ease forwards;
    animation-delay: 0.3s;
}

@keyframes photoReveal {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(30px);
    }

    70% {
        opacity: 1;
        transform: scale(1.03) translateY(0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
/* =================================
   LUXURY LASYA TITLE ANIMATION
================================= */

.birthday h2 {
    opacity: 0;
    transform: translateY(25px);
    letter-spacing: 25px;

    animation: lasyaReveal 1.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes lasyaReveal {

    0% {
        opacity: 0;
        transform: translateY(25px);
        letter-spacing: 25px;
        filter: blur(8px);
    }

    60% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 15px;
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 12px;
        filter: blur(0);
    }

}
.birthday h3 {
    opacity: 0;
    transform: translateY(15px);

    animation: subtitleReveal 1.2s ease forwards;
    animation-delay: 1.4s;
}

@keyframes subtitleReveal {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* DATE CINEMATIC REVEAL */

.date {
    opacity: 0;
    transform: scaleX(0.7);
    filter: blur(5px);

    animation: dateReveal 1.2s ease forwards;
    animation-delay: 1.9s;
}

@keyframes dateReveal {

    0% {
        opacity: 0;
        transform: scaleX(0.7);
        filter: blur(5px);
    }

    70% {
        opacity: 1;
        transform: scaleX(1.05);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
        filter: blur(0);
    }

}
/* EVENT DETAILS REVEAL */

.detail-box {
    opacity: 0;
    transform: translateY(25px);

    animation: detailReveal 1s ease forwards;
}

.detail-box:nth-child(1) {
    animation-delay: 2.3s;
}

.detail-box:nth-child(2) {
    animation-delay: 2.5s;
}

@keyframes detailReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* MESSAGE REVEAL */

.message {
    opacity: 0;
    transform: translateY(20px);

    animation: messageReveal 1.2s ease forwards;
    animation-delay: 2.8s;
}

@keyframes messageReveal {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* =================================
   PREMIUM MUSIC PLAYER
================================ */

.music-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(215, 161, 170, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 30px rgba(215, 161, 170, 0.04);

    animation: musicCardReveal 1.5s ease forwards;
    animation-delay: 3.2s;

    opacity: 0;
    transform: translateY(30px);
}

@keyframes musicCardReveal {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =================================
   VINYL PREMIUM LOOK
================================ */

.vinyl {
    position: relative;

    border: 4px solid #111;

    box-shadow:
        0 0 0 1px rgba(215, 161, 170, 0.15),
        0 0 35px rgba(215, 161, 170, 0.25),
        0 15px 35px rgba(0, 0, 0, 0.5);
}


/* Vinyl center glow */

.vinyl-center {
    box-shadow:
        0 0 15px rgba(215, 161, 170, 0.35);
}


/* =================================
   SONG TITLE
================================ */

.song-info h3 {
    letter-spacing: 2px;

    text-shadow:
        0 0 15px rgba(245, 213, 217, 0.2);
}


/* =================================
   PLAY BUTTON
================================ */

.play-btn {
    box-shadow:
        0 5px 20px rgba(215, 161, 170, 0.25);
}

.play-btn:active {
    transform: scale(0.92);
}


/* =================================
   MUSIC HEADING
================================ */

.music-heading {
    position: relative;
}

.music-heading::before,
.music-heading::after {

    content: "";

    display: inline-block;

    width: 35px;

    height: 1px;

    background: #8d4c58;

    vertical-align: middle;

    margin: 0 12px;
}
/* =================================
   FLOATING ROMANTIC PARTICLES
================================ */

.birthday {
    position: relative;
    overflow: hidden;
}


/* Small floating lights */

.birthday::before,
.birthday::after {
    content: "";
    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #f5d5d9;

    box-shadow:
        0 0 10px #f5d5d9,
        0 0 25px rgba(215, 161, 170, 0.8);

    opacity: 0.5;

    animation: floatingLight 8s linear infinite;
}


/* First light */

.birthday::before {
    left: 15%;
    bottom: -20px;
}


/* Second light */

.birthday::after {
    right: 18%;
    bottom: -20px;

    width: 4px;
    height: 4px;

    animation-delay: 3s;
    animation-duration: 10s;
}


@keyframes floatingLight {

    0% {
        transform:
            translateY(0)
            translateX(0);

        opacity: 0;
    }

    15% {
        opacity: 0.6;
    }

    50% {
        transform:
            translateY(-50vh)
            translateX(30px);

        opacity: 0.4;
    }

    100% {
        transform:
            translateY(-110vh)
            translateX(-20px);

        opacity: 0;
    }

}
/* =================================
   CINEMATIC PAGE TRANSITION
================================ */

.opening {
    transition:
        opacity 1s ease,
        transform 1s ease,
        filter 1s ease;
}

.opening.hide {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(8px);
    pointer-events: none;
}


/* Birthday screen entrance */

.birthday.show {
    animation: birthdayEntrance 1.5s ease forwards;
}

@keyframes birthdayEntrance {

    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}
/* =================================
   BIRTHDAY COUNTDOWN
================================ */

.countdown {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin: 0 0 35px;

    opacity: 0;

    animation:
        countdownReveal 1s ease forwards;

    animation-delay: 2.1s;
}


.count-box {

    min-width: 72px;

    padding: 12px 8px;

    border: 1px solid #6f3541;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.03);

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.count-box strong {

    color: #f5d5d9;

    font-size: 22px;

    font-weight: normal;
}


.count-box span {

    color: #b97884;

    font-size: 8px;

    letter-spacing: 1.5px;
}


@keyframes countdownReveal {

    from {

        opacity: 0;

        transform:
            translateY(15px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* MOBILE */

@media (max-width: 600px) {

    .countdown {

        gap: 6px;

    }

    .count-box {

        min-width: 65px;

        padding: 10px 5px;

    }

    .count-box strong {

        font-size: 19px;

    }

}
.photo-frame {
    position: relative;

    box-shadow:
        0 0 20px rgba(215, 161, 170, 0.2),
        0 0 50px rgba(215, 161, 170, 0.15);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.photo-frame:hover {
    transform: scale(1.03);

    box-shadow:
        0 0 30px rgba(215, 161, 170, 0.35),
        0 0 70px rgba(215, 161, 170, 0.2);
}
/* =================================
   PHOTO LIGHT SWEEP
================================ */

.photo-frame {
    position: relative;
    overflow: hidden;
}

.photo-frame::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );

    transform: skewX(-20deg);

    animation: photoLightSweep 4s ease-in-out infinite;
}

@keyframes photoLightSweep {

    0% {
        left: -120%;
    }

    45% {
        left: 140%;
    }

    100% {
        left: 140%;
    }

}
/* =================================
   BIRTHDAY WISH
================================ */

.birthday-wish {
    max-width: 520px;

    margin-top: 55px;
    padding: 45px 30px;

    text-align: center;

    border-top: 1px solid rgba(215, 161, 170, 0.35);
    border-bottom: 1px solid rgba(215, 161, 170, 0.35);

    opacity: 0;

    transform: translateY(25px);

    animation:
        wishReveal 1.5s ease forwards;

    animation-delay: 3.3s;
}

.wish-small {
    color: #b97884;

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.birthday-wish h4 {
    margin: 0 0 20px;

    color: #f5d5d9;

    font-size: 38px;

    line-height: 1.2;

    font-weight: normal;

    letter-spacing: 2px;

    text-shadow:
        0 0 20px rgba(245, 213, 217, 0.2);
}

.wish-text {
    max-width: 400px;

    margin: auto;

    color: #d8b8bd;

    font-size: 14px;

    line-height: 1.9;
}

@keyframes wishReveal {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}
@media (max-width: 600px) {

    .birthday-wish {
        margin-top: 40px;

        padding:
            35px 20px;
    }

    .birthday-wish h4 {
        font-size: 30px;
    }

    .wish-text {
        font-size: 13px;
    }

}
/* =================================
   LOVE SIGNATURE
================================ */

.love-signature {
    width: 100%;
    max-width: 500px;

    margin: 70px auto 20px;

    padding: 50px 20px;

    text-align: center;

    opacity: 0;

    transform: translateY(25px);

    animation:
        signatureReveal 1.5s ease forwards;

    animation-delay: 4s;
}

.signature-small {
    color: #b97884;

    font-size: 10px;

    letter-spacing: 5px;

    margin-bottom: 18px;
}

.signature-line {
    width: 50px;
    height: 1px;

    background: #9b5965;

    margin: 0 auto 22px;
}

.love-signature h4 {
    margin: 0;

    color: #f5d5d9;

    font-size: 32px;

    font-weight: normal;

    letter-spacing: 3px;

    text-shadow:
        0 0 20px rgba(245, 213, 217, 0.2);
}

.signature-heart {
    color: #d7a1aa;

    font-size: 20px;

    margin: 18px 0;

    animation: heartBeat 1.8s ease-in-out infinite;
}

.signature-date {
    color: #8d4c58;

    font-size: 10px;

    letter-spacing: 4px;
}

@keyframes signatureReveal {

    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}

@keyframes heartBeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

}
@media (max-width: 600px) {

    .love-signature {
        margin-top: 50px;
        padding: 40px 15px;
    }

    .love-signature h4 {
        font-size: 26px;
        letter-spacing: 2px;
    }

}
/* FIX MUSIC + SIGNATURE OVERLAP */

.music-player {
    position: relative;
    z-index: 2;
}

.love-signature {
    position: relative;
    z-index: 3;

    clear: both;

    margin-top: 80px;
    padding: 50px 20px;

    width: 100%;
    max-width: 500px;
}

.love-signature h4 {
    font-size: 28px;
    line-height: 1.3;
}

.signature-small {
    font-size: 10px;
}

.signature-date {
    font-size: 10px;
}
/* =================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 600px) {

    body {
        overflow-x: hidden;
    }

    /* OPENING */

    .opening {
        min-height: 100svh;
        padding: 25px 20px;
    }

    .opening p {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .opening h1 {
        font-size: 48px;
        letter-spacing: 8px;
    }

    .opening span {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 35px;
    }

    .opening button {
        padding: 14px 22px;
        font-size: 11px;
    }


    /* BIRTHDAY */

    .birthday {
        min-height: 100svh;
        padding: 50px 18px;
    }


    /* PHOTO */

    .photo-frame {
        width: 190px;
        height: 245px;
        margin-bottom: 28px;
    }


    /* TITLE */

    .small-title {
        font-size: 10px;
        letter-spacing: 4px;
        margin-bottom: 18px;
    }

    .birthday h2 {
        font-size: 48px;
        letter-spacing: 8px;
        margin-bottom: 12px;
    }

    .birthday h3 {
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 28px;
    }


    /* DATE */

    .date {
        padding: 14px 20px;
        font-size: 15px;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }


    /* COUNTDOWN */

    .countdown {
        width: 100%;
        gap: 6px;
        margin-bottom: 28px;
    }

    .count-box {
        min-width: 0;
        width: 25%;
        padding: 10px 4px;
    }

    .count-box strong {
        font-size: 18px;
    }

    .count-box span {
        font-size: 7px;
        letter-spacing: 1px;
    }


    /* EVENT DETAILS */

    .event-details {
        width: 100%;
        gap: 10px;
        margin-bottom: 28px;
    }

    .detail-box {
        min-width: 0;
        width: 50%;
        padding: 15px 8px;
    }

    .detail-box span {
        font-size: 9px;
    }

    .detail-box strong {
        font-size: 13px;
    }


    /* MESSAGE */

    .message {
        max-width: 330px;
        font-size: 13px;
        line-height: 1.7;
    }


    /* BIRTHDAY WISH */

    .birthday-wish {
        width: 100%;
        margin-top: 40px;
        padding: 35px 18px;
    }

    .birthday-wish h4 {
        font-size: 29px;
    }

    .wish-text {
        font-size: 13px;
        line-height: 1.8;
    }


    /* MUSIC */

    .music-player {
        min-height: auto;
        margin-top: 45px;
        padding: 40px 10px;
    }

    .music-card {
        width: 100%;
        max-width: 330px;
        padding: 30px 20px;
    }

    .vinyl {
        width: 130px;
        height: 130px;
    }

    .vinyl-center {
        width: 42px;
        height: 42px;
    }

    .song-info h3 {
        font-size: 21px;
    }

    .song-info p {
        font-size: 11px;
    }


    /* LOVE SIGNATURE */

    .love-signature {
        margin-top: 45px;
        padding: 40px 15px;
    }

    .love-signature h4 {
        font-size: 26px;
        letter-spacing: 2px;
    }

}
/* =================================
   HEART OVERLAY
================================ */

.birthday {
    position: relative;
    overflow: hidden;
}

.hearts-overlay {
    position: absolute;
    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}

.heart {
    position: absolute;

    bottom: -40px;

    color: #d7a1aa;

    opacity: 0;

    font-size: 18px;

    text-shadow:
        0 0 8px rgba(215, 161, 170, 0.7),
        0 0 20px rgba(215, 161, 170, 0.4);

    animation: floatingHeart 8s linear forwards;
}

@keyframes floatingHeart {

    0% {
        transform:
            translateY(0)
            translateX(0)
            scale(0.5)
            rotate(0deg);

        opacity: 0;
    }

    15% {
        opacity: 0.65;
    }

    50% {
        transform:
            translateY(-50vh)
            translateX(30px)
            scale(1)
            rotate(15deg);

        opacity: 0.45;
    }

    100% {
        transform:
            translateY(-115vh)
            translateX(-30px)
            scale(1.2)
            rotate(-15deg);

        opacity: 0;
    }
}


/* Keep content above hearts */

.birthday > *:not(.hearts-overlay) {
    position: relative;
    z-index: 1;
}
.location-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid #8d4c58;
  border-radius: 20px;
  color: #f1c7ce;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.location-btn:hover {
  background: #d7a1aa;
  color: #1a0509;
  transform: scale(1.05);
}