@font-face {
    font-family: 'Bebas Neue';
    src: url('/fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('/fonts/BebasNeue-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

.fsl-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #1b2a5c;
    overflow: hidden;
    font-family: 'Bebas Neue', sans-serif;
}

/* Keeps the whole composition together and centered on very wide screens
   (decorations are positioned relative to this stage, not the full viewport). */
.fsl-stage {
    position: relative;
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

.fsl-hero img {
    position: absolute;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Decorative layers */
.fsl-paper {
    bottom: 0;
    right: 0;
    width: 34%;
    max-width: 520px;
    z-index: 1;
    animation: fslFadeIn 0.8s ease-out 0.2s backwards;
}

.fsl-girl {
    bottom: 0;
    right: 21%;
    height: 84%;
    max-height: 720px;
    z-index: 3;
    animation: fslSlideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s backwards;
}

.fsl-star50 {
    bottom: 3%;
    left: 29%;
    width: 20%;
    max-width: 270px;
    z-index: 4;
    animation: fslPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s backwards;
}

.fsl-heart {
    top: 53%;
    right: 2.5%;
    width: 19%;
    max-width: 260px;
    z-index: 4;
    animation: fslPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s backwards;
}

.fsl-sun {
    top: 31%;
    right: 15%;
    width: 6%;
    max-width: 90px;
    z-index: 2;
    animation: fslSpin 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s backwards;
}

.fsl-bird {
    width: 4.5%;
    max-width: 64px;
    z-index: 4;
}

.fsl-bird-top {
    top: 17%;
    right: 6%;
    animation: fslFadeIn 0.6s ease-out 0.9s backwards;
}

.fsl-bird-bottom {
    bottom: 13%;
    left: 5%;
    transform: scaleX(-1);
    animation: fslFadeIn 0.6s ease-out 1s backwards;
}

.fsl-circles {
    bottom: 0;
    left: 0;
    width: 7%;
    max-width: 110px;
    z-index: 2;
    animation: fslSlideRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s backwards;
}

.fsl-flower {
    bottom: 0;
    right: 0;
    width: 3.5%;
    max-width: 48px;
    z-index: 4;
    animation: fslFadeIn 0.6s ease-out 1.1s backwards;
}

.fsl-5g {
    bottom: 4%;
    right: 8%;
    width: 7%;
    max-width: 100px;
    z-index: 4;
    animation: fslFadeIn 0.6s ease-out 1s backwards;
}

/* Content */
.fsl-content {
    position: relative;
    z-index: 5;
    margin: 0;
    padding: 0 5% 0 9%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fsl-content h1 {
    margin: 0 0 1.6rem;
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    line-height: 0.92;
    text-transform: uppercase;
    animation: fslSlideDown 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.1s backwards;
}

.fsl-content h1 .fsl-line1 {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4.3vw, 78px);
}

.fsl-content h1 .fsl-line2 {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: bold;
    font-size: clamp(36px, 5.7vw, 104px);
}

.fsl-content p {
    margin: 0 0 2rem;
    max-width: 480px;
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.275rem;
    font-weight: 400;
    line-height: 1.5;
    animation: fslFadeIn 0.6s ease-out 0.4s backwards;
}

.fsl-content p strong {
    font-weight: 700;
}

.fsl-btn {
    align-self: flex-start;
    display: inline-block;
    padding: 0.95rem 2.2rem;
    background: #e6007e;
    color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    /* font-size: 1.275rem; */
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease-in;
    animation: fslFadeIn 0.6s ease-out 0.6s backwards;
}

.fsl-btn:hover,
.fsl-btn:focus {
    background: #c4006b;
    color: #ffffff;
    text-decoration: none;
}

/* Above 1080p: the design is fixed-size at 1920px (fonts/decorations are
   pixel-capped here), so scale every capped value with the viewport (anchored
   to 1920w / 1080h) — 1440p and 4K (16:9) become 1080p, just bigger. */
@media (min-width: 1921px) {
    .fsl-stage {
        max-width: none;
    }

    .fsl-content h1 {
        margin-bottom: 0.833vw;
    }

    .fsl-content h1 .fsl-line1 {
        font-size: 4.06vw;
    }

    .fsl-content h1 .fsl-line2 {
        font-size: 5.42vw;
    }

    .fsl-content p {
        max-width: 25vw;
        margin-bottom: 1.04vw;
        font-size: 0.664vw;
    }

    .fsl-btn {
        font-size: 0.729vw;
        padding: 0.495vw 1.146vw;
        border-radius: 0.417vw;
    }

    .fsl-paper {
        max-width: 27.08vw;
    }

    .fsl-girl {
        max-height: 66.67vh;
    }

    .fsl-star50 {
        max-width: 14.06vw;
    }

    .fsl-heart {
        max-width: 13.54vw;
    }

    .fsl-sun {
        max-width: 4.69vw;
    }

    .fsl-bird {
        max-width: 3.33vw;
    }

    .fsl-circles {
        max-width: 5.73vw;
    }

    .fsl-flower {
        max-width: 2.5vw;
    }

    .fsl-5g {
        max-width: 5.21vw;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .fsl-content p {
        font-size: 1.175rem;
    }
}

@media (max-width: 1024px) {
    .fsl-content h1 .fsl-line1 {
        font-size: 5.5vw;
    }

    .fsl-content h1 .fsl-line2 {
        font-size: 7vw;
    }

    .fsl-girl {
        right: 4%;
        height: 75%;
    }

    .fsl-star50 {
        left: 24%;
        width: 22%;
    }
}

@media (max-width: 768px) {
    .fsl-hero {
        height: 100svh;
        min-height: 600px;
    }

    /* Hide the foreground figures; keep the star / heart / paper / circles composition */
    .fsl-girl,
    .fsl-sun,
    .fsl-bird,
    .fsl-flower,
    .fsl-5g {
        display: none;
    }

    /* Text centered in the space above the bottom composition */
    .fsl-content {
        position: relative;
        z-index: 5;
        height: 100%;
        justify-content: center;
        padding: 90px 6% 50vh;
        text-align: center;
    }

    .fsl-content h1,
    .fsl-content h1 span {
        width: 100%;
        white-space: normal !important;
    }

    .fsl-content h1 .fsl-line1 {
        font-size: 6.5vw;
    }

    .fsl-content h1 .fsl-line2 {
        font-size: 7.6vw;
    }

    .fsl-content p {
        margin: 0 auto 2rem;
        font-size: 1.2rem;
    }

    .fsl-btn {
        align-self: center;
        padding: 1.05rem 2.6rem;
        font-size: 1.35rem;
        border: 2px solid #ff6fb0;
    }

    /* Bottom decorative composition: star (left), heart (right), paper behind, circles corner */
    /* Widths are min(viewport-width %, viewport-height) so the composition
       shrinks on short/wide viewports instead of overflowing into the text. */
    .fsl-circles {
        bottom: 0;
        left: 0;
        width: min(34%, 22vh);
        max-width: 200px;
    }

    .fsl-paper {
        bottom: 0;
        right: 0;
        width: min(64%, 46vh);
        max-width: 420px;
    }

    .fsl-star50 {
        top: auto;
        bottom: 25%;
        left: 2%;
        right: auto;
        width: min(50%, 30vh);
        max-width: 300px;
    }

    .fsl-heart {
        top: auto;
        bottom: 8%;
        right: 3%;
        left: auto;
        width: min(56%, 34vh);
        max-width: 320px;
        z-index: 6;
    }
}

/* Tablet / large-phone / resized-desktop middle ground: the width-driven
   composition gets too big, so use smaller type and a top-anchored text block. */
@media (min-width: 480px) and (max-width: 768px) {
    .fsl-content {
        justify-content: flex-start;
        height: auto;
        padding: 92px 8% 0;
    }

    .fsl-content h1 .fsl-line1 {
        font-size: 4.6vw;
    }

    .fsl-content h1 .fsl-line2 {
        font-size: 5.8vw;
    }

    .fsl-content p {
        font-size: 1.05rem;
    }
}

/* Animations */
@keyframes fslSlideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fslSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fslSlideRight {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fslFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fslPop {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fslSpin {
    from {
        transform: scale(0) rotate(-90deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}
