#ensemble {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-blue);
}

.ensemble__stars {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-image: url("../assets/images/stars.webp");
    background-size: 60%;
    background-repeat: repeat;
}

.ensemble__cloud {
    position: absolute;
    width: 56vw;
    height: auto;
}

.ensemble__cloud--2 {
    z-index: 3;
    top: 20vw;
    right: -28vw;
}

.ensemble__moon {
    position: relative;
    z-index: 2;
    position: absolute;
    width: 18vw;
    height: auto;
    right: 4vw;
    top: 12vw;
}

.ensemble__title {
    position: relative;
    z-index: 2;
    margin-top: 20vw;
    margin-left: 4vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    text-transform: uppercase;
    width: max-content;

    display: flex;
    flex-direction: column;
    align-items: start;

    font-family: var(--font-heading);
    line-height: 0.6;
    font-size: 6vw;
    font-weight: 100;

    :nth-child(1) {
        color: var(--color-fg-blue-common);
    }

    :nth-child(2) {
        color: var(--color-fg-blue-accent);
        transform: translateX(12vw);
    }
}

.ensemble__image {
    position: relative;
    z-index: 2;
    margin-top: 10vw;
    width: 103%;
    transform: translateX(-1vw);
}

.ensemble__separator {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: auto;
    bottom: 0;
    transform: translateY(4vw);
}


.ensemble__contacts {
    margin-top: 2vw;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.ensemble__socials {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.ensemble__cta-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: 1vw 4vw;
    text-decoration: none;
    color: var(--color-bg-blue);
    background-color: var(--color-fg-blue-accent);
    border-radius: 2vw;

    font-size: 2.5vw;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 500;


    img {
        height: 4vw;
        width: auto;
        object-fit: contain;
    }
}

.ensemble__social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7vw;
    aspect-ratio: 1;
    background-color: var(--color-fg-blue-common);
    border-radius: 2vw;

    img {
        width: 4vw;
        height: auto;
        max-height: 6vw;
        object-fit: contain;
    }
}

.ensemble__social-link-tiktok {
    img {
        height: 4vw;
        width: auto;
    }
}

.ensemble__quote {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-quote);
    color: var(--color-fg-blue-quote);
    font-size: 3vw;
    line-height: 0.9;
}

.ensemble__quote-text-1 {
    width: 65vw;
}

.ensemble__quote-text-2 {
    width: 95vw;
}

.ensemble__quote-1 {
    width: 100%;
    flex-wrap: nowrap;
    position: relative;
    align-items: center;
    z-index: 2;
    margin-top: 20vw;

    text-align: end;
    padding-right: 2vw;
}

.ensemble__quote-2 {
    width: 100%;
    flex-wrap: nowrap;
    position: relative;
    align-items: center;
    z-index: 2;
    margin-top: 8vw;
    padding-left: 2vw;
}

.ensemble__quote-3 {
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    margin-top: 15vw;
    gap: 3vw;
    text-align: center;
    margin-bottom: -10vw;
    z-index: 3;
}

.ensemble__cloud--1 {
    position: static;
    width: 65vw;
    margin-left: -35vw;
    transform: translateX(14vw);
}

.ensemble__cloud--3 {
    position: static;
    width: 75vw;
    margin-right: -55vw;
    margin-bottom: -2vw;
    transform: translateX(-30vw);
}

.ensemble__cloud--4 {
    position: static;
    width: 55vw;
    margin-right: -35vw;
    margin-top: -14vw;
    transform: translateX(-10vw);
}

.ensemble__quote-star {
    width: 25vw;
}

.ensemble__link {
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 3vw;

    min-width: 35vw;
    border-radius: 2vw;
    padding: 2vw 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.3vw solid var(--color-fg-blue-quote);
    color: var(--color-fg-blue-quote);
    transition: all 0.5s ease;
}

.ensemble__link:hover {
    color: var(--color-bg-blue);
    background-color: var(--color-fg-blue-quote);
    box-shadow: 0 0 4vw var(--color-fg-blue-quote), 0 0 10vw var(--color-fg-blue-quote);
}

@media (max-width: 650px) {
    .ensemble__title {
        margin-top: 32vw;
        font-size: 8vw;
        align-items: start;

        :nth-child(1) {
            color: var(--color-fg-blue-common);
            transform: translateX(6vw);
        }

        :nth-child(2) {
            color: var(--color-fg-blue-accent);
            transform: translate(0);
        }
    }

    .ensemble__quote-text {
        font-size: 4vw;
    }

    .ensemble__quote-text-2 {
        width: 55vw;
    }

    .ensemble__cloud--3 {
        margin-right: -70vw;
    }

    .ensemble__cloud--4 {
        margin-right: -40vw;
    }
}