@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6{
    color: white;
    font-family: "Inter", sans-serif;
}

p{
    color: white;
}

html{
    scroll-behavior: smooth;
}



/* scroll custom */
::-webkit-scrollbar {
    width: 5px;
  }
  

   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgb(88, 88, 88); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #ffffff; 
  }

/* body */


/* bg video */
.bg{
    overflow-y: hidden;
    width: 100%;
    z-index: -1;
}

.bg video{
    overflow-y: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    z-index:-100;
    opacity: .5;
}


*{
    margin: 0;
    padding: 0;
}


body{
    background-color: black;
    font-family: "Inter", sans-serif;
}

/* nav */

li{
    list-style: none;
}

a {
    text-decoration: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    list-style: none;
    position: fixed;
    z-index: 100;
    width: 100%;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /* background-color: #101010; */
    background-color: #fff;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 95px;
}
.nav-logo h3{
    font-size: 20px;
}

.nav-link {
    text-decoration: none;
    overflow: hidden;
    color: white;
    font-size: 20px;
    transition: .3s ease;
    font-weight: 300;
}

.nav-link:hover {
    color: grey;
}

.nav-logo {
    font-size: 20px;
    text-decoration: none;
    overflow: hidden;
    color: white;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #222222;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.5s;
        box-shadow:
            0 10px 27px rgb(0, 0, 0);
    }

    .nav-link {
        color: #fff;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}

/* add styles on elements */


/* headline */

.headline{
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    left: 50%;
    width: 100%;
    font-size: 64px;
    animation: motion-oppacity 2s ease-in-out;
    mix-blend-mode: difference;
}

@keyframes motion-oppacity{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


.dare{
    padding-left: 20px;
    animation: motion 4s ease-in-out;
}

@keyframes motion{
    0%{
        transform: translateX(270%);
    }
    70%{
        transform: translateX(270%);
    }
}


.dare h3{
    font-weight: 600;
}

.explore{
    padding-right: 20px;
    animation: motionright 4s ease-in-out;
}

@keyframes motionright{
    0%{
        transform: translateX(-180%);
    }
    70%{
        transform: translateX(-180%);
    }
}


.explore h3{
    font-weight: 600;
}

.to h3{
    font-style: italic;
    font-weight: 100;
}

/* footer */

footer{
    position: absolute;
    width: 100%;
    bottom: 0%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    font-size: 20px;
}

.left{
    padding-left: 20px;
}

.right{
    padding-right: 20px;
    font-weight: 400;
}





/* about */

.headline-about{
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
}

.curious h1{
    font-size: 200px;
    font-weight: 400;
    padding-left: 10px;
    padding-top: 100px;
    animation: curious 2s ease-in-out;
}

@keyframes curious{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.and-active{
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-left: 10px;
}

.and-active h2{
    font-size: 200px;
    font-weight: 100;
    line-height: 1px;
    padding-left: 10px;
    animation: h2 3s ease-in-out;
}

@keyframes h2{  
    0%{
        opacity: 0;
    }
    30%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.and-active h3{
    font-size: 200px;
    font-weight: 400;
    line-height: 1px;
    margin-right: 10px;
    padding-left: 20px;
    animation: h3 3s ease-in-out;
}

@keyframes h3{
    0%{
        opacity: 0;
    }
    60%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

/* premis */

.subhead01{
    max-width: 100%;
    margin-top: 250px; 
    padding-left: 36%;
    font-size: 20px;
    animation: premis 5s ease-in-out;
}


.sh1{
    display: flex;
    align-items: first baseline;
    gap: 190px;
}


.sh1 h4{
    font-size: 20px;
    font-weight: 600;
}

.sh1 p{
    margin-top: 20px;
    font-weight: 400;
    width: 60%;
    padding-left: 20px;
}

@keyframes premis{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

/* isi */

.isi{
    margin-top: 200px; 
    padding-bottom: 111px;
    display: flex;
    padding-left: 160px;
    gap: 200px;
    width: 100%;
}

.isi img{
    width: 100%;
}

.materi{
    font-size: 20px;
}

.judul{
    justify-content: first baseline;
}




.judul h4{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}

.judul p{
    font-weight: 300;
    padding-bottom: 40px;
    width: 85%;
}

.judul2{
    padding-top: 100px;
}

.judul2 h4{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}

.judul2 p{
    font-weight: 300;
    padding-bottom: 40px;
}

.judul p{
    max-width: 90%;
}

.judul3{
    padding-top: 100px;
}

.judul3 h4{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}

.judul3 p{
    font-weight: 300;
    padding-bottom: 40px;
}

.judul4{
    padding-top: 100px;
    margin-bottom: 400px;
}

.judul4 H4{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}

.judul4 p{
    font-weight: 300;
    padding-bottom: 40px;
}


.kontak{
    font-size: 40px;
    padding-bottom: 80px;
    padding-left: 20px;
    width: 100%;
}

.kontak p{
    line-height: 1.25px;
}

.link{
    text-decoration: none;
    overflow: hidden;
    color: grey;
    transition: .3s ease;
}

.kontak p a:hover{
    color: white;
}





/* service */

.headline-service{
    padding-top: 130px;
    line-height: 170px;
    padding-left: 10px;
}


.dare-1 {
    display: flex;
    gap: 40px;
}


.explore-1{
    display: flex;
    align-items: first baseline;
    animation: h3h4 3s ease-in-out;
}


.dare-1 h1{
    font-size: 200px;
    font-weight: 400;
    animation: h1 2s ease-in-out;
}


.dare-1 h2{
    font-size: 200px;
    font-weight: 100;
    animation: h2 3s ease-in-out;
}


.explore-1 h3{
    font-size: 200px;
    font-weight: 400;
}


.explore-1 h4{
    font-size: 200px;
    font-weight: 400;
    animation: h4 5s ease forwards;
}

@keyframes h1{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes h3{
    0%{
        opacity: 0;
    }
    60%{
        opacity: 1;
    }
}

@keyframes h3h4{
    0%{
        opacity: 0;
    }
    60%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes h4{
    0%{
        transform: translateX(0px);
    }
    60%{
        transform: translateX(0px);
    }
    100%{
        transform: translateX(257px);
    }
}



/* premis 2 */

.subhead02{
    padding-top: 200px;
    padding-left: 33.55%;
    padding-bottom: 80px;
    animation: premis2 8s ease-in-out;
}


.sh2{
    display: flex;
    align-items: first baseline;
    gap: 236px;
}


.sh2 h4{
    font-size: 20px;
    font-weight: 600;
}

.sh2 p{
    font-size: 20px;
    font-weight: 400;
    width: 50%;
}

@keyframes premis2{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


/* isi2 */

.isi-2{
    margin-top: 100px; 
    padding-left: 55.45%;
    justify-content: first baseline;
    font-size: 20px;
}

.judul-s1 h4{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}

.judul-s1{
    padding-top: 100px;
}

.judul-s1 p{
    max-width: 85%;
    font-weight: 300;
}

.judul-s2 h4{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}

.judul-s2{
    padding-top: 100px;
}

.judul-s2 p{
    max-width: 90%;
    font-weight: 300;
}

.judul-s3 h4{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}

.judul-s3{
    padding-top: 100px;
}

.judul-s3 p{
    max-width: 90%;
    font-weight: 300;
}

.judul-s4 h4{
    font-size: 20px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 20px;
}

.judul-s4{
    padding-top: 100px;
    padding-bottom: 200px;
}

.judul-s4 p{
    max-width: 90%;
    font-weight: 300;
}

.closing{
    max-width: 90%;
    font-size: 20px;
    padding-bottom: 440px;
    padding-top: 100px;
}





/* contact */

.headline-contact{
    align-items: center;
    margin-bottom: 80px;
    padding-top: 100px;
}

.lets h1{
    font-size: 200px;
    font-weight: 400;
    padding-left: 10px;
    padding-top: 00px;
    animation: lets 2s ease-in-out;
}

@keyframes lets{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.lets{
    display: flex;
    justify-content: first baseline;
    align-items: first center;
    padding-top: 0px;
    padding-left: 10px;
}

.lets h2{
    font-size: 200px;
    font-weight: 100;
    line-height: 1px;
    padding-left: 40px;
    animation: h2 3s ease-in-out;
}

@keyframes h2{  
    0%{
        opacity: 0;
    }
    30%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.together h3{
    font-size: 200px;
    font-weight: 400;
    line-height: 1px;
    margin-right: 10px;
    padding-left: 30px;
    padding-top: 50px;
    padding-bottom: 100px;
    animation: h3 3s ease-in-out;
}

@keyframes h3{
    0%{
        opacity: 0;
    }
    60%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


.kontak2{
    padding-top: 150px;
    font-size: 30px;
    padding-bottom: 80px;
    padding-left: 20px;
    animation: last 5s ease-in-out ;
}

@keyframes last{
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.kontak2 p{
    line-height: 1.25px;
    padding-left: 55.4%;
}

.kontak2 p a:hover{
    color: white;
}






/* works */


.photo-collage {
    padding: 200px 20px 0; 
    display: flex;
    flex-direction: column;
    gap: 40px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 20px;
    animation: works 1s ease-in-out;
}


.grid-4x3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.grid-16x9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom */
    gap: 20px; 
}


.photo-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Rata kiri untuk judul */
}


.grid-4x3 img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}


.grid-16x9 img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}


.photo-title {
    margin-top: 5px;
    font-size: 20px;
    text-align: left;
}

@keyframes works {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.see-more{
    max-width: 90%;
    font-size: 20px;
    padding-bottom: 440px;
    padding-top: 300px;
    font-size: 40px;
    padding-left: 50.5%;
}

.see-more a:hover{
    color: white;
}



/* responsive */

@media only screen and (max-width: 768px) {
    .headline{
        width: 100%;
    }

    .headline h3{
        font-size: 20px;
    }


        
    @keyframes motion{
        0%{
            transform: translateX(120px);
        }
        70%{
            transform: translateX(120px);
        }
    }

        
    @keyframes motionright{
        0%{
            transform: translateX(-140%);
        }
        70%{
            transform: translateX(-140%);
        }
    }

    .headline-about{
        width: 100%;
    }

    .curious h1{
        font-size: 50px;
        font-weight: 400;
        padding-left: 10px;
        padding-top: 100px;
    }

    .and-active h2{
        font-size: 50px;
        font-weight: 100;
        line-height: 1px;
        padding-left: 10px;
    }

    .and-active h3{
        font-size: 50px;
        font-weight: 100;
        line-height: 1px;
        padding-left: 10px;
    }

    .subhead01{
        width: 100%;
        margin-top: 200px;
        padding-left: 10px;
        font-size: 15px;
    }

    .sh1 h4{
        font-size: 15px;
    }

    .isi{
        display: flex;
        flex-direction: column;
        padding:10px ;
        gap: 100px;
    }
    .isi img{
        width: 100%;
    }

    .kontak{
        width: 100%;
        font-size: 20px;
    }

    /* works */

    .photo-collage{
        padding: 100px 20px 0;
    }

    .grid-4x3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .grid-16x9 {
        display: grid;
        grid-template-columns: repeat(1, 1fr); /* 2 kolom */
        gap: 20px; 
    }

    .see-more{
        font-size: 20px;
    }

    .headline-service{
        line-height: 70px;
    }

    .dare-1 h1{
        font-size: 100px;
        font-weight: 400;
        animation: h1 2s ease-in-out;
    }

    
    .dare-1 h2{
        font-size: 100px;
        font-weight: 100;
        animation: h2 3s ease-in-out;
    }


    .explore-1 h3{
        font-size: 100px;
        font-weight: 400;
    }

    @keyframes h4{
        0%{
            transform: translateX(0px);
        }
        60%{
            transform: translateX(0px);
        }
        100%{
            transform: translateX(100px);
        }
    }

    .subhead02{
        padding-top: 200px;
        padding-left: 10px;
        padding-bottom: 80px;
    }

    .sh2{
        gap: 100px;
    }

    .isi-2{
        margin-top: 100px; 
        padding-left: 45%;
        font-size: 20px;
    }


    .headline-contact{
        width: 100%;
    }

    .lets h1{
        font-size: 100px;
    }

    .lets h2{
        font-size: 100px;
    }

    .together h3{
        font-size: 100px;
    }

    .kontak2{
        padding-top: 150px;
        font-size: 20px;
        padding-bottom: 80px;
        padding-left: 0px;
        animation: last 5s ease-in-out ;
    }

    .kontak2 p{
        padding-left: 20%;
    }


}