body{
    background-color: white;
    margin: auto;
    padding: 0%;
    text-align: center;
    font-family: 'Noto Sans'; 
    gap: 2vw;
}

header{
    color: black;
    a{
        color: black; 
        text-decoration: none;
    }
    nav{
        height: 6rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2vw;
        font-weight: 100;
        /* list-style: none; */
        a:hover{
    text-decoration: underline;
     }
    }
    .nav_right{
        margin: 70px;
        .nav1{
            padding: 20px;
        }
        .nav2{
            padding: 20px;
        }
        .nav3{
            padding: 20px;
        }
        .nav4{
            padding: 20px;
        }
    }
    .nav_left{
        margin: 90px; 
    }
}

.collage{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    .eye{
        position:absolute;
        max-height: 1000px;
        top: -120px;
        left: 160px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-prompt {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 12px;
}

.scroll-arrow {
    font-size: 32px;
    animation: bounce 2s infinite;
    color: black;
}

.title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    color: rgb(31, 78, 230);
    font-weight: 700;
    z-index: 10;
    margin: 0;
    font-family: 'Noto Sans'
}

.projects-preview {
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 500px;
}

.gallery-preview {
    padding: 40px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-box {
    background-color: #FFD700;
    border-radius: 8px;
}

.contact{
    padding: 60px 20px;
}

.contact h2{
    font-size: 40px;
    text-align: left;
    margin-left: 150px;
    font-weight: 300;
    color: black;
    margin-bottom: 30px;
}

.contact-grid{
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-left{
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.contact-vertical-box{
    width: 220px;
    height: 360px;
    background: rgb(31, 78, 230);
    border-radius: 8px;
}

.instagram{
    font-size: 20px;
    margin: 0;
    font-weight: 300;
}

.contact-right{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-line{
    height: 60px;
    background: rgb(31, 78, 230);
    border-radius: 8px;
}

.swiper-wrapper {
    flex: 1;
    max-width: 800px;
    overflow: hidden;
}

.swiper-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.project-box {
    min-width: 100%;
    height: 400px;
    background-color: #FFD700;
    border-radius: 8px;
    flex-shrink: 0;
}

.swiper-arrow {
    background: none;
    border: 1px rgb(31, 78, 230);
    font-size: 24px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    color: rgb(31, 78, 230);
}

.swiper-arrow:hover {
    background-color: rgb(31, 78, 230);
    color: white;
}

.swiper-arrow.left {
    order: -1;
}

.learn{
    border: 1.6px black solid;
    border-radius: 12px; 
    width: 120px;
    margin: -20px auto 20px auto;
    font-weight: 300;
    font-size: 20px;
}

.learn:hover{
    background-color: black;
    color: white;
    cursor: pointer;
}

.photo{
    width: 900px;
    margin-top: 50px;
}

.intro{
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 100px;
    font-weight: 300;
    color: black; 
}











footer{
    color: white;
    text-transform: uppercase;
    a{
        color: white;
    }
}