.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 1000;
    transition: background-color 0.5s, z-index 0.5s 0.5s;
    background-color: var(--white);

    .logo {
        display: block;
        width: 60vw;
        max-width: 600px;
        min-width: 250px;
        height: 90svh;
        padding: 1rem;
        overflow: visible;
    }
}

.loaded {
    .loading {
        background-color: transparent;
        z-index: -1 !important;
    }
}

.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .hero__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;

        .hero__title {
            font-size: clamp(28px, 4.5vw, 100px);
            font-variation-settings: 'wght' 460;
            line-height: 105%;
            padding: 0 1rem;

            strong {
                font-variation-settings: 'wght' 600;
            }
        }

        .hero__image {
            position: absolute;
            inset: 0;
            height: 100%;
            width: 100%;
            z-index: -1;
            mix-blend-mode: multiply;
        }

        svg {
            position: absolute;
            inset: 0;
            height: 100%;
            width: 100%;
            z-index: -1;

            defs {
                mask {
                    path {
                        transform: scale(1.15);
                        transform-origin: center;
                    }
                }
            }
        }
    }

    @media (max-width:900px) {
        .hero__content {
            .hero__title {
                max-width: 400px;
            }
        }
    }
}

#curvedText {
    width: 100%;
    height: fit-content;
    transform: scale(1.1);
    z-index: -1;
}
.text-path {
    fill: none;
    stroke: #BBEF6C;
    font-family: Arial, sans-serif;
    font-weight: bold;
}
text {
    fill: #010101;
    font-family: Arial, sans-serif;
    font-size: 40px;
    transform: translateY(16px);
}
.headerLogo {
    display: block;
    width: 300px;
}