:root {
    --clr-neutral-0: #FFFFFF;
    --clr-neutral-1000: #000000;

    --clr-blue-050: #85a8c7;
    --clr-blue-100: #DEDEDE99;
    --clr-blue-400: #2775bd;
    --clr-blue-500: #004e9c;

    --clr-red-500: #f9001d;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body,
p,
ul,
h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

body {
    font-family: "National2", sans-serif;
    font-weight: 400;
    color: var(--clr-neutral-0);
    background-color: var(--clr-blue-500);
    /*background-image: url("../assets/clouds.png");*/
    /*background-repeat: no-repeat;*/
    /*background-position: top left;*/
    /*background-size: cover;*/
    position: relative;
}

.clouds-bg-image {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header */

header {
    height: 68px;
}
@media (min-width: 768px) {
    header {
        height: 92px;
    }
}
header .container {
    height: 100%;
}

.header-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    width: 88px;
    height: auto;
}

section {
    margin-top: 60px;
}

.section-headline {
    font-family: "National2Condensed", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--clr-neutral-0);
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
}
@media (min-width: 768px) {
    .section-headline {
        font-size: 40px;
    }
}

.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-7-14 17:44:28
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}
@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

/* Hero */

.hero {
    margin-top: 32px;
}

.hero-headline {
    width: 355px;
    height: auto;
    margin: 0 auto;
    position: relative;
}
@media (min-width: 768px) {
    .hero-headline {
        width: 640px;
    }
}
.hero-headline img {
    width: 100%;
    height: auto;
}

.hero-headline .heart {
    width: 280px;
    height: auto;
    display: block;
    margin-inline: auto;
}
@media (min-width: 768px) {
    .hero-headline .heart {
        width: 500px;
    }
}

.hero-headline .title,
.hero-headline .subtitle {
    position: absolute;
}
.hero-headline .title {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hero-headline .subtitle {
    width: auto;
    height: 24px;
    left: 16px;
    bottom: 32px;
}
@media (min-width: 768px) {
    .hero-headline .subtitle {
        height: 40px;
        left: 53px;
        bottom: 56px;
    }
}

.hero-countdown-wrapper {
    width: fit-content;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-neutral-0);
    margin-top: 32px;
}
@media (min-width: 768px) {
    .hero-countdown-wrapper {
        margin-top: 40px;
    }
}
#countdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
#countdown .digit,
#countdown .colon {
    font-weight: 700;
    color: var(--clr-neutral-0);
}
#countdown > * {
    display: flex;
    flex-direction: row;
    gap: 4px;
}
#countdown .digit {
    width: 44px;
    height: 64px;
    border-radius: 6px;
    font-size: 56px;
    line-height: 1;
    display: grid;
    place-items: center;
    padding-top: 6px;
}
@media (min-width: 480px) {
    #countdown .digit {
        width: 70px;
        height: 86px;
        font-size: 70px;
        padding-top: 8px;
    }
}
#countdown .digit.black {
    background-color: var(--clr-neutral-1000);
}
#countdown .digit.red {
    background-color: var(--clr-red-500);
}
#countdown .colon {
    font-size: 40px;
}

/* Video */

.video-wrapper {
    width: auto;
    height: 90svh;
    aspect-ratio: 9 / 16;
    margin: 40px auto;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px) {
    .video-wrapper {
        width: 100%;
        max-width: 800px;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-wrapper #toggle-video-btn {
    width: 72px;
    height: 72px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.3s ease;
    pointer-events: auto;
}
@media (min-width: 768px) {
    .video-wrapper #toggle-video-btn {
        width: 100px;
        height: 100px;
    }
}
.video-wrapper #toggle-video-btn:hover {
    transform: translate(-50%, -50%) scale(.9);
}
.video-wrapper #toggle-video-btn.hidden {
    opacity: 0;
    pointer-events: none;
}
.video-wrapper #toggle-video-btn img {
    width: 100%;
    height: auto;
}

.steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 768px) {
    .steps {
        flex-direction: row;
        gap: 40px;
    }
}
.step {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.step-icon {
    width: 90px;
    height: 90px;
}
.step-content {

}
.step-content h3 {
    font-size: 24px;
    font-weight: 700;
}
.step-content p {
    font-size: 16px;
    font-weight: 500;
}

#install-app-btn {
    width: fit-content;
    background-color: var(--clr-neutral-1000);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-neutral-0);
    padding: 12px 32px;
    border-radius: 99px;
    transition: all .3s ease-in-out;
    margin: 40px auto;
    display: block;
    text-decoration: none;
    position: relative;
    z-index: 3;
}
@media (min-width: 768px) {
    #install-app-btn {
        padding: 17px 62px;
        font-size: 1.2rem;
    }
}
#install-app-btn:hover {
    background-color: var(--clr-neutral-0);
    color: var(--clr-neutral-1000);
}
#install-app-btn img {
    width: 32px;
    height: auto;
    margin-left: 12px;
}

.pulsate-bck {
    -webkit-animation: pulsate-bck 1s ease-in-out infinite both;
    animation: pulsate-bck 1s ease-in-out infinite both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-7-15 15:17:25
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-bck
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes pulsate-bck {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


/* Notifications */

#accordionNotifications {
    width: 100%;
    max-width: 430px;
    margin: 40px auto;
}

#accordionNotifications .accordion-item,
#accordionNotifications .accordion-button {
    background: transparent;
    color: var(--clr-neutral-0);
}
#accordionNotifications .accordion-button {
    font-weight: 700;
    font-size: 20px;
}
#accordionNotifications .accordion-button:hover {
    background-color: var(--clr-blue-050);
}
#accordionNotifications .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3e%3c/svg%3e");
    transition: transform 0.2s ease-in-out;
}

#accordionNotifications .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

#accordionNotifications .accordion-body {
    font-size: 1rem;
    color: var(--clr-neutral-0);
}

/* Produse */

.produse {
    position: relative;
    z-index: 2;
}

.produse img {
    width: 100%;
    height: auto;
}

/* Footer */

footer {
    background-color: #000000;
    padding-top: 56px;
    position: relative;
    z-index: 2;
}
@media (min-width: 768px) {
    footer {
        padding-top: 80px;
    }
}
footer .footer-inner {
    color: #FFFFFF;
    display: grid;
    grid-template-areas: "logo social" "logo copyright";
    gap: 28px;
    justify-content: space-between;
    align-items: flex-start;
}
@media (min-width: 768px) {
    footer .footer-inner {
        grid-template-areas: "logo copyright social";
    }
}
footer .footer-inner .footer-logo-wrapper {
    width: fit-content;
    position: relative;
    padding-bottom: 40px;
    grid-area: logo;
}
footer .footer-inner .footer-logo-wrapper .footer-logo {
    width: 70px;
    height: auto;
}
footer .footer-inner .footer-logo-wrapper .footer-stripes {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-inline: auto;
    width: auto;
    height: 20px;
}
footer .footer-inner .footer-copyright {
    text-align: center;
    margin-bottom: 8px;
    grid-area: copyright;
}
footer .footer-inner .footer-copyright a {
    text-decoration: underline;
    color: #FFFFFF;
}
footer .footer-inner .footer-social-section {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    grid-area: social;
    gap: 20px;
}
@media (min-width: 380px) {
    footer .footer-inner .footer-social-section {
        gap: 40px;
    }
}
@media (min-width: 768px) {
    footer .footer-inner .footer-social-section {
        gap: 64px;
    }
}
footer .footer-inner .footer-social-section a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
@media (min-width: 768px) {
    footer .footer-inner .footer-copyright,
    footer .footer-inner .footer-social-section {
        margin-top: 24px;
    }
}

/* Clouds */

.clouds {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
.clouds .cloud {
    --horizontal-value: -400px;
    --cloud-width: 400px;

    width: var(--cloud-width);
    height: auto;
    position: fixed;
    mix-blend-mode: screen;
    z-index: -1;
}
@media (min-width: 768px) {
    .clouds .cloud {
        --horizontal-value: -560px;
        --cloud-width: 560px;
    }
}

.cloud.top-left {
    top: 10%;
    left: var(--horizontal-value);
}
.cloud.top-right {
    top: 12%;
    right: var(--horizontal-value);
}
.cloud.bottom-left {
    bottom: 10%;
    left: var(--horizontal-value);
}
.cloud.bottom-right {
    bottom: 0;
    right: var(--horizontal-value);
}
