﻿@media (min-width: 1200px) {
    .content-container {
        max-width: 1140px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(10dvh);
}

/* Section1 */
.website-section1-container {
    width: 96%;
    margin: 0 auto;
    margin-top: 3rem;
    min-height: 30rem;
    border-radius: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 3rem;
    background-image: url(/images/OnYourWebsite/Section1-background.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.website-section1-h1, .website-section1-p {
    color: var(--PrimaryColor7);
}

.website-section1-h1 {
    font-size: 2.5rem;
}

/* Section2 */
.website-section2-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10rem;
}

.section2-part1-img {
    width: 100%;
}

.website-section2-h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--PrimaryColor6);
}

.section2-icon {
    width: 3rem;
}

.website-section2-p {
    text-align: center;
}

.section2-part1-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-top: 7rem;
}

.section2-item-title {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
}

.section2-specialitems-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.section2-special-item {
    margin: 0;
    padding: 0.5rem 1.5rem;
    border-radius: 1rem;
    color: var(--PrimaryColor7);
    background-color: var(--PrimaryColor1);
}

.section2-part1-image {
    width: 55%;
}

.section2-part1-information {
    width: 45%;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 1rem;
    transition: all 0.2s ease-in-out;
}

    .section2-part1-information:hover {
        transform: translateY(-4px);
        box-shadow: 0px 4px 10px #5555;
    }

/* Section3 */
.website-section3-container {
    width: 100%;
    border-radius: 1.3rem;
    margin-top: 8rem;
    background-image: url(/images/OnYourWebsite/Section3-background.png);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.website-section3-h2 {
    color: var(--PrimaryColor7);
    text-align: center;
    font-size: 2.5rem;
}

.section3-item-icon {
    width: 3rem;
}

.section3-item {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.section3-item-info {
    color: var(--PrimaryColor7);
    margin: 0;
    font-size: 1.3rem;
}

.section3-items-container {
    display: flex;
    gap: 10rem;
    margin-top: 3rem
}

.section3-content-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

/* RESPONSIVE */
@media (max-width: 950px) {
    .website-section1-container {
        background-size: 110%;
    }

    .website-section1-p, .website-section2-p {
        font-size: 1.3rem;
    }

    .section2-part1 {
        flex-direction: column;
    }

    .section2-part2 {
        flex-direction: column-reverse;
    }

    .section2-part1-image, .section2-part1-information {
        width: 75%;
    }

    .website-section3-container {
        width: 95%;
        margin: 0 auto;
        margin-top: 8rem;
    }
}

@media (max-width: 500px) {
    .website-section1-container {
        padding-left: 0;
        background-size: cover;
    }

    .website-section1-h1 {
        font-size: 1.6rem;
    }

    .website-section1-p {
        font-size: 1rem;
    }

    .website-section1-p, .website-section1-h1 {
        text-align: center;
        margin: 0 auto;
    }

    .website-section2-h2 {
        font-size: 1.6rem;
    }

    .website-section2-p {
        font-size: 1rem;
        width: 80%;
    }

    .section2-part1-image, .section2-part1-information {
        width: 85%;
    }

    .section2-item-title {
        font-size: 1.6rem;
    }

    .website-section3-h2 {
        font-size: 1.6rem;
    }

    .section3-item-info {
        font-size: 1rem;
    }

    .section3-items-container {
        flex-direction: column;
    }

    .section3-items-container, .section3-content-container {
        width: 15rem;
        gap: 2rem;
    }
}
