body {
    margin: 0;
    background-color: var(--black);
    font-family: Poppins, sans-serif;
}

.scroll-container {
    position: block;
    height: 110vh;
}

.container {
    height: 100vh;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-container {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
    height: calc(100vh - 20px);
    width: calc(100vw - 20px);
    border-radius: 20px;

    @media screen and (min-width: 768px) {
        margin: 20px;
        height: calc(100vh - 40px);
        width: calc(100vw - 40px);
    }
}


.hero-section {
    background-color: var(--red);
    z-index: 1;
}

.flexibility-section {
    background-color: var(--orange);
    z-index: 2;
    width: 100%;

    h1 {
        color: var(--red);
    }

    p {
        color: var(--black);
    }
}

.optimization-section {
    background-color: var(--yellow);
    z-index: 3;

    h1 {
        font-size: 34px;
        color: var(--orange);

        @media screen and (min-width: 768px) {
            font-size: 68px;
        }
    
        @media screen and (min-width: 1080px) {
            font-size: 92px;
        }
    }

    p {
        color: var(--black);
    }
}

.design-section {
    background-color: var(--green);
    z-index: 4;

    h1 {
        color: var(--yellow);
    }

    p {
        color: var(--black);
    }
}

.technology-section {
    background-color: var(--petrol);
    z-index: 5;

    h1 {
        color: var(--green);
    }

    p {
        color: var(--black);
    }
}

.project-section {
    background-color: var(--lavendel);
    z-index: 6;

    h1 {
        color: var(--petrol);
    }

    p {
        color: var(--black);
    }

    a {
        color: var(--petrol);
        text-decoration: none;
        font-weight: 600;
    }

    a:hover {
        text-decoration: underline;
    }
}

.about-section {
    background-color: var(--red);
    z-index: 7;

    h1 {
        color: var(--black);
    }

    p {
        color: var(--white);
    }
}

.contact-section {
    background-color: var(--orange);
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 20px 0;

    @media screen and (min-width: 768px) {
        font-size: 64px;
    }
}

.contact-info {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    margin: 0;
    line-height: 1.4;

    @media screen and (min-width: 768px) {
        font-size: 24px;
    }
}

.contact-button {
    margin-top: 30px;
    padding: 16px 40px;
    background-color: var(--red);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    @media screen and (min-width: 768px) {
        font-size: 20px;
        padding: 18px 50px;
    }
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.language-switcher {
    position: absolute;
    top: 36px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 10;

    @media screen and (min-width: 768px) {
        top: 40px;
        right: 40px;
        gap: 16px;
    }
}

.language-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease;

    @media screen and (min-width: 768px) {
        font-size: 18px;
        padding: 10px 16px;
    }
}

.language-link:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.language-link.active {
    background-color: var(--red);
    color: var(--white);
}

.logo-menu-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
    padding-right: 12px;

    @media screen and (min-width: 768px) {
        padding-right: 24px;
    }
}

.only-menu-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
    padding-right: 12px;

    @media screen and (min-width: 768px) {
        padding-right: 24px;
        
    }
}

.logo-image {
    position: absolute;
    width: 160px;
    top: 36px;
    left: 30px;

    @media screen and (min-width: 768px) {
        width: 200px;
        top: 32px;
        left: 36px;
    }
}

.hero-container {
    display: block;
    line-height: 1;
    padding: 0 30px 30px 30px;

    @media screen and (min-width: 768px) {
        line-height: 0;
        display: flex;
        flex-direction: column;
        padding: 0 40px 40px 40px;
    }
}

.content-container {
    display: block;
    line-height: 1;
    padding: 20px;
    width: calc(100% - 40px);

    @media screen and (min-width: 1080px) {
        line-height: 0;
        display: flex;
        flex-direction: column;
        padding: 0 40px 40px 40px;
        width: 70%;
    }
}

.hero-image {
    position: absolute;
    z-index: -1;
    top: 20%;
    right: -132px;
    width: 180%;

    @media screen and (min-width: 768px) {
        top: 80px;
        right: -36%;
        width: 180%;
    }

    @media screen and (min-width: 1080px) {
        top: -40px;
        right: -80px;
        width: 84%;
    }

    @media screen and (min-width: 1920px) {
        top: -40px;
        right: -80px;
        max-width: 80%;
    }
}

.title-text {
    font-weight: 700;
    font-size: 52px;
    color: var(--black);

    @media screen and (min-width: 768px) {
        font-size: 72px;
    }

    @media screen and (min-width: 1080px) {
        font-size: 100px;
    }
}

.hero-sub-text {
    margin-top: -16px;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: var(--white);
    line-height: 1.2;
  
    @media screen and (min-width: 768px) {
        margin-top: 0;
        font-size: 24px;
        line-height: 1;
    }
}

.flexibility-image {
    position: absolute;
    z-index: -1;
    top: 10%;
    right: -132px;
    width: 180%;
    transform: rotate(-30deg);

    @media screen and (min-width: 768px) {
        top: 80px;
        right: -36%;
        width: 180%;
    }

    @media screen and (min-width: 1080px) {
        top: -40px;
        right: -80px;
        width: 84%;
    }

    @media screen and (min-width: 1920px) {
        top: -40px;
        right: -80px;
        max-width: 72%;
    }
}

.optimization-image {
    position: absolute;
    z-index: -1;
    top: 20%;
    right: -120px;
    width: 180%;
    transform: rotate(-30deg);

    @media screen and (min-width: 768px) {
        top: 80px;
        right: -30%;
        width: 180%;
    }

    @media screen and (min-width: 1080px) {
        top: -80px;
        right: -100px;
        width: 84%;
    }

    @media screen and (min-width: 1920px) {
        top: -80px;
        right: -100px;
        max-width: 72%;
    }
}

.design-image {
    position: absolute;
    z-index: -1;
    top: 20%;
    right: -150px;
    width: 180%;
    transform: rotate(-30deg);

    @media screen and (min-width: 768px) {
        top: 80px;
        right: -35%;
        width: 180%;
    }

    @media screen and (min-width: 1080px) {
        top: 0;
        right: -100px;
        width: 84%;
    }

    @media screen and (min-width: 1920px) {
        top: 0;
        right: -100px;
        max-width: 72%;
    }
}

.technology-image {
    position: absolute;
    z-index: -1;
    top: 20%;
    right: -164px;
    width: 180%;
    transform: rotate(-30deg);

    @media screen and (min-width: 768px) {
        top: 60px;
        right: -40%;
        width: 180%;
    }

    @media screen and (min-width: 1080px) {
        top: -60px;
        right: -100px;
        width: 84%;
    }

    @media screen and (min-width: 1920px) {
        top: -80px;
        right: -100px;
        max-width: 72%;
    }
}

.project-image {
    position: absolute;
    z-index: -1;
    top: 5%;
    right: -150px;
    width: 180%;
    transform: rotate(-30deg);

    @media screen and (min-width: 768px) {
        top: 0px;
        right: -40%;
        width: 180%;
    }

    @media screen and (min-width: 1080px) {
        top: -60px;
        right: -100px;
        width: 84%;
    }

    @media screen and (min-width: 1920px) {
        top: -80px;
        right: -100px;
        max-width: 72%;
    }
}

.about-image {
    position: absolute;
    z-index: -1;
    top: 10%;
    right: -100px;
    width: 170%;
    transform: rotate(-30deg);

    @media screen and (min-width: 768px) {
        top: 80px;
        right: -30%;
        width: 170%;
    }

    @media screen and (min-width: 1080px) {
        top: 20px;
        right: -160px;
        width: 80%;
    }

    @media screen and (min-width: 1920px) {
        top: -80px;
        right: -100px;
        max-width: 72%;
    }
}