@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@font-face {
    font-family: 'junicode';
    src: url('/font/junicode.regular.ttf')
}
@font-face {
    font-family: 'junicode-italic';
    src: url('font/junicode.italic.ttf');
}
:root{
    --orange: #F76F53;
    --black: #252525;
    --white: #EDEDED;
    --cream: #D1CFC0;
    --gray: #4F4F51;
    --max-white: #FFFFFF;
    --nav-text: #BABABA;
    --side-bar: #252525c5;
    --form-hover: #363637;
    --form: #4F4F51;
    --contact: #4F4F51;
    --cream-btn: #D1CFC0;
}
.lightmode {
    --orange: #F76F53;
    --black: #EDEDED;
    --white: #252525;
    --cream: #D1CFC0;
    --gray: #BABABA;
    --max-white: #000000;
    --nav-text: #4F4F51;
    --side-bar: #edededcd;
    --form-hover: #4f4f515b;
    --form: #d7d7d7;
    --contact: #4F4F51;
    --cream-btn: #5a5a55;
}
@keyframes appear {
    to {
        opacity: 1;
        scale: 1;
        transform: translateY(0);
    }
}
.animate {
    scale: 0.5;
    opacity: 0;
    transform: translateY(40px);
}
.in {
    animation: appear linear forwards;
    animation-timeline: view();
    animation-range: 0px 150px;
}
.media-controller::-webkit-scrollbar {
    height: .8em;
} 
.media-controller::-webkit-scrollbar-track:horizontal {
    background: #D9D9D9;
    border-radius: 10px;
    margin-block: .5em;
}
.media-controller::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 10px;
    border: 1px solid #D9D9D9;
}
.media-controller::-webkit-scrollbar-thumb:hover {
    background: #383839;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    background-color: var(--black);
    min-height: 100vh;
}
a {
    text-decoration: none;
}
h2 {
    margin: 0;
}
.navbar {
    background-color: var(--black);
    height: 80px;
    position:sticky;
    display: flex;
    flex-direction: row;
    align-items: center;
    outline: 1px solid var(--gray);
    top: 0;
    padding: 0 15px;
    z-index: 1;
}
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    list-style: none;
    display: none;
    flex-direction: column;
    width: 250px;
    height: 100vh;
    background-color: var(--side-bar);
    padding: 5px 0;
    margin: 0;
    border-left: 1px solid var(--gray);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}
.sidebar img {
    width: 150px;
    display: flex;
    padding: 25px;
}
.sidebar > div{
    display: flex;
    height: auto;
    padding: 250px 35px 20px 35px;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-end;
}
.sidebar li {
    height: 10vh;
    width: 100%;
    padding: 0 45px;
}
.sidebar li:hover {
    background-color: var(--gray);
}
.sidebar a{
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--nav-text);
    font-weight: 500;
    font-size: clamp(16px, 1vmax, 20px);
    height: 100%;
    display: flex;
    align-items: center;
}
.sidebar button {
    width: 100%;
    display: flex;
    font-weight: 400;
    font-size: clamp(14px, 1vmax, 20px);
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: 600;
    padding: 10px;
}
p {
    margin: 0;
}
.highlight{
    color: var(--orange);
}
.highlight-junicode{
    color: var(--orange);
    font-family: 'junicode-italic', sans-serif;
}
.btn {
    background-color: var(--orange);
    font-family: 'Bricolage Grotesque', sans-serif;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 14px;
    border-radius: 10px;
    border: 0;
    color: #ffffff;
}
.btn:hover{
    background-color: #b55340;
    scale: 0.95;
}
.logo{
    font-family: 'Bricolage Grotesque', sans-serif;
    color:var(--white);
    font-weight: 600;
    font-size: 24px; 
    width: 10vw;
    justify-items: center;
}
.subnavbar{
    width: 70vw;
    padding-left: 5vw;
    height: 100%;
}
.topbar {
    width: auto;
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    height: 100%;
    align-items: center;
    padding: 0;
}
.topbar li {
    height: 100%;
    width: 12vw;
    display: flex;
    justify-content: center;
}
.topbar li:hover{
    background-color: var(--gray);
}
.topbar a{
    text-decoration: none;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--nav-text);
    font-weight: 500;
    font-size: clamp(12px, 1vmax, 20px);
    height: 100%;
    padding: 0 2vw;
    display: flex;
    align-items: center;
    text-align: center;
}
.mode {
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.mode:hover {
    scale: 1.2;
}
.mode img{
    width: 26px;
    height: 26px;
}
.menu {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    opacity: 60%;
    display: none;
}
.menu img {
    width: 26px;
    height: 26px;
}
.auth{
    display: flex;
    flex-direction: row;
    width: 20vw;
    justify-content: center;
    gap: 16px;
    margin-left: auto;
}
.account-btn{
    font-weight: 600;
    font-size: 16px;
    padding: 12px;
    height: 46px;
    flex-shrink: 0;
}
#signin{
    color: var(--cream-btn);
    border: 2px solid var(--cream-btn);
    width: 5vw;
    background-color: transparent;
    font-size: clamp(12px, 1vmax, 20px);
}
#signup{
    width: 5.2vw;
    font-size: clamp(12px, 1vmax, 20px);
    min-width: 4.6vw;
}
.hero{
    width: auto;
    height: 90vh;
    display: flex;
    flex-direction: row;
}
.hero-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 60vw;
    justify-content: center;
    margin-left: 3.4vw;
    margin-top: -120px;
}
.project{
    color: var(--max-white);
    font-family: 'Bricolage Grotesque', sans-serif;
    border: 1px solid #797979;
    font-weight: 500;
    font-size: 1vmax;
    width: 21%;
    height: auto;
    min-width: 100px;
    padding: 8px;
    border-radius: 32px;
    display: flex;
    gap: 12px; 
    justify-content: center;
    align-items: center;
}
.hero-text > span{
    font-family: 'Bricolage Grotesque', sans-serif;
    color:var(--white);
    font-size: 2.7vmax;
    font-weight: 600;
}
.hero-text > h1{
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 8vmax;
    height: auto;
    margin: 0;
    background: linear-gradient(90deg, var(--white), var(--gray));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-left: -10px;
}
.hero-text > p{
    font-family: 'junicode';
    color: var(--white);
    font-weight: 400;
    font-size: 2.2vmax;
}
.hero-btn{
    display: flex;
    gap: 28px;
    height: 56px;
    margin-top: 4vh;
}
.hero-btn > a{
    width: 21%;
    height: 100%;
}
#start{
    width: 100%;
    height: 100%;
    min-width: 100px;
    font-weight: 600;
    font-size: 1.1vmax;
}
#more{
    height: 100%;
    width: 100%;
    min-width: 100px;
    color: var(--cream-btn);
    background-color: transparent;
    border: 2px solid var(--cream-btn);
    font-weight: 600;
    font-size: 1.1vmax;
}
.hero-image{
    display: flex;
    flex-direction: column;
    width: 40vw;
    justify-content: center;
    padding-left: 10vw;
}
.hero-image > div {
    /* width: 532px;
    height: 499px; */
    width: 30vw;
    height: 30vw;
    min-width: 200px;
    min-height: 200px;
    border: 1px solid var(--gray);
    border-radius: 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-image: url(/assets/icon.jpg);
    background-size: cover; */
    margin-top: -120px;
}
.hero-image img{
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
    border-radius: 10vw;
    object-fit: cover;
}
.about{
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 250px;
    margin-top: 130px;
}
.about-elements{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.about-title > h2{
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 56px;
    color:var(--max-white);
    text-align: center;
    height: auto;
    margin: 0;
}
.about-title span{
    font-weight: 400;
}
.about-content{
    width: 50vw;
}
.about-content > p{
    font-family: 'Plus Jakarta Sans';
    color: var(--max-white);
    font-weight: 300;
    font-size: 24px;
    text-align: center;
    line-height: 150%;
}
.about-detail {
    display: flex;
    flex-direction: row;
    gap: 64px;
}
.about-detail > div {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-detail p {
    color: var(--white);
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    font-size: 20px;
}
.about-detail span {
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    font-size: 48px;
    text-align: center;
}
.about button {
    height: 100%;
    font-weight: 600;
    font-size: 18px;
    margin-top: 10px;
}
.about-detail + div {
    display: flex;
    gap: 28px;
    height: 46px;
    width: 185;
}
#selengkapnya {
    padding: 12px;
    width: 12vw;
    min-width: 140px;
    height: 6vh;
    font-size: 1.2vmax;
    font-weight: 600;
    
}
.services {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.service-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: var(--max-white);
    text-align: center;
    margin:30px 0 20px 0 ;
}
.service-title > h2 {
    font-weight: 500;
    font-size: 48px;
    margin: 0;
}
.service-image {
    display: grid;
    grid-template-columns: 27vw 27vw 27vw;
    grid-template-rows: 300px;
    gap: 24px;
    justify-content: center;
}
.service-image > div {
    border-radius: 10px;
    background-image: linear-gradient(to bottom, rgba(128, 128, 128, 0.37) 70%, black);
    position: relative;
    width: auto;
}
.service-image img {
    z-index: -1;
    width: 100%;
    height: 100%;
    max-width: 30vw;
    max-height: 300px;
    border-radius: 10px;
    position: relative;
    object-fit: cover;
}
.service-image p {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #ffffff;
    font-weight: 400;
    font-size: clamp(20px, 1.8vmax, 38px);
    margin-top: 240px;
    margin-left: 20px;
    position: absolute;
    top: 0;
}
#more-image {
    width: 155px;
    height: 54px;
    font-weight: 600;
    font-size: 18px;
}
div:has(>#more-image){
    display: flex;
    justify-content: center;
}
.hidden-image {
    display: none;
}
.portofolio{
    padding: 100px 50px 50px 50px;
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.porto-btn {
    display: flex;
    gap: 18px;
}
.porto-btn button{
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 600;
    font-size: 18px;    
}
#contact {
    background-color: var(--cream);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 14px;
    border-radius: 10px;
    border: 0;
    color: var(--contact);
}
.porto-title{
    color: var(--white);
    font-size: 45px;
    font-family: 'Bricolage Grotesque', sans-serif;
}
.porto-title span{
    font-weight: 400;
}
.porto-title h2{
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    margin: 0;
}
.media-controller{
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 200px;
    height: 1000px;
    padding-bottom: 25px;
}
.media{
    display: grid;
    grid-auto-flow: column;
}
.media > div {
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
    background-image: linear-gradient(to bottom, transparent 70%, black);
    border-radius: 10px;
}
.media1 {
    grid-auto-columns: 600px;
    gap: 18px;
}
.media1 p{
    margin-bottom: 0;
}
.media2 p{
    margin-bottom: 0;
}
.media-container1 > div {
    margin-top: 320px;
}
.media-container2 > div {
    margin-top: 430px;
}
div:has(>.media-text){
    display: flex;
    align-items: center;
    width: 100%;
    height: 20%;
    position: absolute;
    top: 0;
}
.media-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
    z-index: -1;
}
.media-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #ffffff;
    font-weight: 400;
    font-size: 32px;
    position: relative;
    margin-bottom: 280px;
    top: 0;
    margin-left: 20px;
}
.media2{
    grid-auto-columns: 800px;
    gap: 26px;
}
.testimoni {
    margin-bottom: 200px;
}
.testi-title > h2 {
    color: var(--max-white);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    font-size: 2.6vmax;
}
.testi-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.testi-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 80%;
    align-items: center;
    justify-content: center;
}
.testi-content button {
    padding: 20px;
}
.testi-content img {
    width: .5vmax;
}
.person-container {
    width: 80%;
    height: 500px;
    background-color: var(--cream);
    border-radius: 10px;
    display: flex;
}
.person-container > div {
    width: 50%;
    height: 100%;
}
.avatar {
    height: 40%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.avatar > img {
    width: 60%;
    height: 60%;
    padding-top: 20px;
}
.description {
    height: 35%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.description > p {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2vmax;
    font-weight: 400;
    text-align: center;
    width: 70%;
}
.identity {
    height: 25%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.identity > span {
    font-weight: 700;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.1vmax;
}
.identity > p {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    font-size: .8vmax;
}
.testi-image {
    border-radius: 10px;
}
.testi-image > img {
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.form{
    display: flex;
    flex-direction: row;
}
.form-title {
    width: 25%;
    display: flex;
    justify-content: center;
    padding: 50px 50px 0 25px;
}
.form-title > h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    font-size: 2.9vmax;
    color: var(--max-white);
}
.form-text{
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    color: var(--max-white);
    font-size: clamp(14px, 1.1vmax, 28px);
}
.input-style{
    background-color: var(--form);
    border-radius: 10px;
    border: 0;
    color: var(--max-white);
    padding: 15px;
    font-size: clamp(14px, .9vmax, 28px);
    font-family: 'Bricolage Grotesque', sans-serif;

}
.input-style::placeholder {
    color: var(--max-white);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1vmax, 28px);
    opacity: 80%;
}
.input-style:focus {
    outline-style: solid;
    outline-color: var(--orange);
    outline-width: 2px;
}
.input-style:hover{
    background-color: var(--form-hover);
}
.input-style:focus::placeholder{
    opacity: 30%;
}
.input-style:focus:hover{
    background-color: var(--gray);
}
.submit-container {
    padding: 50px 110px 0 25px;
    display: flex;
    width: 75%;
}
.submit-container > form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.name-form {
    display: flex;
    gap: 50px;
    width: 100%;
}
.name-form > div {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 10px;
}
.info-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#message {
    height: 7vw;
    overflow-y: hidden;
    resize: none;
}
.submit {
    display: flex;
    justify-content: end;
    margin-top: 10px;
}
.submit button {
    font-size: clamp(14px, 1vmax, 18px);
    font-weight: 600;
    padding: 10px;
    width: 6vmax;
}
.submit img {
    width: .9vmax;
}
.footer {
    padding: 60px;
    margin-top:120px;
    height: auto;
}
.footer-container {
    display: flex;
    height: 24vw;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 60%;
    height: auto;
    gap: 30px;
}

.footer-content p {
    color: var(--max-white);
    font-family: 'Bricolage Grotesque', sans-serif;
}
.footer-title {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-title > p {
    font-weight: 400;
    font-size: 1.6vmax;
}
.footer-title > img {
    width: 12vmax;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links > p {
    font-weight: 600;
    font-size: 1.8vmax;
}
.footer-links img:hover {
    scale: 1.2;
}
.footer-links > div {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-navigation {
    display: flex;
    flex-direction: row;
    gap: 80px;
}
.footer-navigation a {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    color: var(--max-white);
    display: flex;
    font-size: clamp(14px, 1.3vmax, 28px);
}
.footer-navigation a:hover{
    text-decoration: underline;
}
.footer-navigation span {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    color: var(--max-white);
    font-size: clamp(18px, 1.6vmax, 28px);
}
.footer-navigation > div {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-page + div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.under-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--max-white);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2vmax;
}
.footer > hr {
    margin-top: 30px;
    margin-bottom: 30px;
}
@media (max-width: 775px){
    .footer-container{
        height: 50vh;
    }
    .footer-content {
        justify-content: space-around;
        width: 100%;
        gap: 0;
    }
    .form{
        flex-wrap: wrap;
    }
    .form-title {
        width: 40%;
        justify-content: start;
        padding-right: 0;
    }
    .submit-container {
        padding: 30px;
        width: 100%;
    }
    .submit button {
        width: clamp(80px, 6vmax, 120px);
    }
}
@media (max-width: 680px) {
    .footer {
        padding: 30px;
    }
}
@media (max-width: 1610px) {

    .auth{
        width: 30vw;
        justify-content: end;
    }
    #signin {
        width: 100px;
        font-size: 15px;
    }
    #signup {
        width: 100px;
        font-size: 15px;
    }
}
@media (max-width: 1024px) {
    .subnavbar {
        width: 40px;
    }
}
@media (max-width: 750px) {
    #signin {
        display: none;
    }
    #signup {
        display: none;
    }
    .topbar {
        display: none;
    }
    .menu {
        display: block;
    }
    .navbar{
        padding: 0 40px;
    }
}