@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --purple-1: #422680;
    --purple-2: #341671;
    --purple-3: #280659;
    --purple-4: #660F56;
    --purple-5: #AE2D68;
    --purple-6: #F54952;
}

/*html {
    scroll-behavior: smooth;
}*/

body {
    background-color: black;
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
}

section {
    position: relative;
    width: 100%;
    height: 85vh;
    margin-bottom: 15px;
}

.section-container {
    margin: 15px;
    position: relative;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
}

.section-1 {
    height: 85vh;
}
.section-1 h1 {
    position: absolute;
    top: 5vh;
    padding: 5px;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 6em;
    text-align: center;
    z-index: 2;
}
.section-1 h2 {
    position: absolute;
    top: 20vh;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2em;
    text-align: center;
    opacity: 0.8;
    z-index: 2;
}
.section-1 img {
    position: absolute;
    height: 70%;
    min-width: 100%;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.section-1 .arrow {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.25, 0, 0.25, 1);
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.section-1 .arrow:hover {
    transform: translateX(-50%) scale(1.2) rotateZ(180deg);
    background-color: rgba(255, 255, 255, 0.15);
}
.section-1 .arrow svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.section-1 .blob {
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 30vh;
    background-color: var(--purple-1);
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.section-2 .section-container {
    display: flex;
}
.section-2 .section-container .text-container {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-size: 2em;
    font-weight: 500;
    z-index: 2;
}
.section-2 .section-container .text-container h1 {
    margin: 20px;
    font-size: 2em;
    max-width: 80%;
    text-align: center;
}
.section-2 .section-container .text-container p {
    margin: 0;
    max-width: 80%;
    text-align: center;
    opacity: 0.8;
}
.section-2 .section-container .image-container {
    position: relative;
    width: 50%;
    height: 100%;
    z-index: 2;
}
.section-2 .section-container .image-container .text-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    z-index: 2;
    transition: 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}
.section-2 .section-container .image-container .image-overflow-container {
    position: absolute;
    width: 75%;
    height: 75%;
    overflow: hidden;
    border-radius: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 5px 5px 20px rgba(0,0,0,1);
}
.section-2 .section-container .image-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.7s cubic-bezier(0.25, 0, 0.25, 1), filter 0.35s cubic-bezier(1, 0, 0, 1);
}
.section-2 .section-container .image-container:hover img {
    transform:  translate(-50%, -50%) scale(1.1);
    /*transform:  translate(-50%, -50%) rotateY(180deg);
    filter: brightness(0.1);*/
}
.section-2 .section-container .image-container:hover .text-container {
    opacity: 1;
}
.section-2 .blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.section-2 .blob {
    position: absolute;
    aspect-ratio: 1;
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
}
.section-2 .blob-1 {
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 70%;
    background: radial-gradient(circle, var(--purple-6) 20%, rgba(0,0,0,0) 50%);
}
.section-2 .blob-2 {
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    background: radial-gradient(circle, var(--purple-5) 20%, rgba(0,0,0,0) 50%);
}
.section-2 .blob-3 {
    left: 0;
    top: 70%;
    transform: translate(-40%, -25%);
    width: 70%;
    background: radial-gradient(circle, var(--purple-4) 20%, rgba(0,0,0,0) 50%);
}


.section-3 {

}
.section-3 .section-container {
    background: linear-gradient(black 20%, var(--purple-1));
}
.section-3 .images-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}
.section-3 .images-container .image-container {
    overflow: hidden;
    width: 30%;
    height: 70%;
    border-radius: 20px;
    box-shadow: 5px 5px 20px rgba(0,0,0,1);
    position: relative;
}
.section-3 .images-container .image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.2);
    transition: 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}
.section-3 .images-container .image-container:hover img {
    filter: brightness(1);
    transform: scale(1.1);
}
.section-3 .images-container .image-container .text-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    z-index: 2;
    transition: 0.5s cubic-bezier(0.25, 0, 0.25, 1);
}
.section-3 .images-container .image-container .text-container h2 {
    margin: 0;
    font-size: 2.5em;
    max-width: 90%;
    margin-bottom: 15px;
}
.section-3 .images-container .image-container .text-container p {
    margin: 0;
    opacity: 0.8;
    font-size: 1.5em;
    max-width: 90%;
}
.section-3 .images-container .image-container:hover .text-container {
    opacity: 1;
}

h1 {
    transition: 0.4s cubic-bezier(0.25, 0, 0.25, 1);
    background: linear-gradient(to right, var(--purple-1), var(--purple-6));
    -webkit-background-clip: text;
}
h1:hover {
    color: transparent;
}

@media (max-width: 800px) {
    .section-1 h1 {
        font-size: 3em;
    }

    .section-2 .section-container {
        display: block;
    }
    .section-2 .section-container .text-container {
        width: 100%;
        font-size: 1.75em;
    }
    .section-2 .image-container {
        display: none;
    }
    .section-2 .blob {
        scale: 2;
    }

    .section-3 {
        height: 150vh;
    }
    .section-3 .images-container {
        flex-wrap: wrap;
    }
    .section-3 .images-container .image-container {
        width: 90%;
        height: 30%;
        margin: 10px 0;
    }
    .section-3 .images-container .image-container img {
        filter: brightness(1);
        transform: scale(1.1);
    }
    .section-3 .images-container .image-container .text-container {
        opacity: 1;
    }
    .section-3 .images-container .image-container .text-container h2 {
        font-size: 2.25em;
    }
    .section-3 .images-container .image-container .text-container p {
        font-size: 1.25em;
    }
}