@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
--black-color: #000000;
--green-color: #16e703;
--green-light-color: #65ff28;
--orange-light-color: #fd9b40;
--orange-color: #ff6600;
--bacground-color: #fafafa;
--blue-color: #0533ffbb;
--dark-blue-color:rgba(0, 5, 80, 0.4);
--white-color:#ffffff;
--blue-night:#2c3e50;
--yellow-stars:#ffd700;


--font-family: "Roboto", "sans-serif";
--font-size: .940rem;

--normal-font:400;
--bold-font:600;



--z-tool:10;
--z-fixed:100;

--header-height: 35px;
}
::-webkit-scrollbar {
    width: 0.7rem;
    background: var(--black-color);
    border-radius: 2px;
  }
::-webkit-scrollbar-thumb {
    width: 0.5rem;
    background: var(--yellow-stars);
    border-radius: 2px;
}
html {
    width: 100%;
    overflow-x: hidden;
    zoom: reset;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}
@media screen and (min-width:1024px){
    :root{
        --normal-font:1rem;
    }
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body{
    font-family: var(--font-family);
    font-size: var(--font-size);
}
h1,h2,h3,h4{
    color: var(--blue-night);
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.925);
    box-shadow: 0 2px 16px hsl(220, 30%, 8%, 0.3);
    z-index: var(--z-fixed);
}
.nav{
    height: 50px;
    padding: 0 2rem 0 2rem;
}

.nav_logo,
.nav_open,
.nav_close{
    color: var(--blue-night);
}

.nav_data{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}
.nav_logo{
    height: 100%;
    width: 200px;
    align-items: center;
    margin-left: -2rem;
}
.nav_logo img{
    height: 100%;
    width: 100%;
}
.nav_toggle{
    position: relative;
    width: 40px;
    height: 40px;
}
.nav_open,
.nav_close{
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}
.nav_close{
    opacity: 0;
}

/* For Mobile Device */
@media screen and (max-width:1118px){
    .nav_menu{
        position: absolute;
        left: 0;
        top:2.5rem;
        width: 100%;
        height: calc(100vh - 4rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }
    .nav_toggle{
        margin-right: -1.5rem;
    }
    .nav_menu::-webkit-scrollbar{
        width: 0;
    }
    .nav_link{
        background-color: rgba(0, 0, 0, 0.945);
    }
    .nav_link:hover{
        background-color: var(--yellow-stars);
    }
    .nav_list a{
        padding-left: 2rem;
    }
    .home-slider{
        display: none;
    }
}

.nav_link{
    color: var(--bacground-color);
    font-weight: var(--bold-font);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}

.show-menu{
    opacity: 1;
    top: 3.1rem;
    pointer-events: initial;
}
.show-icon .nav_open{
    opacity: 0;
}
.show-icon .nav_close{
    opacity: 1;
}


@media screen and (min-width:1118px){
    .nav{
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }
    .nav_toggle{
        display: none;
    }
    .nav_list{
        height: 100%;
        display: flex;
        column-gap: 3rem;
        justify-content: space-evenly;
        font-size: 1rem;
    }
    .nav_link{
        height: 100%;
        padding: 0;
        justify-content: initial;
        column-gap: .25rem;
    }
    .nav_list a:hover{
        color: var(--yellow-stars);
        cursor: pointer;
    }
}

.box{
    width: 100%;
    height: 97vh;
    padding: 20px;
}

/* Title*/
#overview{
    position: relative;
    height: 97vh;
    display: block;
    align-content: center;
    background-image: url(../img/modern\ business3.webp);
    background-size: cover;
    background-position: center;    
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.527);
    z-index: 0; 
}

.title-desc{
    position: relative;
    width: 100%;
    max-width: 700px;
    display: block;
    text-align: center;
    align-items: center;
    margin: auto;
    z-index: 1;
}
.title-desc h2{
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    color: var(--yellow-stars);
    text-align: center;
    margin-bottom: 20px;
}
.title-desc p{
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: white;
    text-align: center;
}

/* CONTACT */
.contactBox{
    width: 100%;
    height: 97vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    justify-content: center;
}
.contactBox h2{
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-top: 60px;
}
.contactCover{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.mapCover{
    width: 50%;
}
.mapCover img{
    width: 100%;
    object-fit: cover;
}
.form{
    width: 50%;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.075);
    color: rgb(0, 0, 0);
}
.formBox{
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 380px;
}
.formBox label{
    font-size: 0.8rem;
    color: var(--blue-night);
    margin-bottom: 7px;
}
.formBox input{
    height: 30px;
    padding-left: 10px;
    border: none;
}
.formBox input::placeholder, .formBox textarea::placeholder, .hasilHidden{
    font-family: var(--font-family);
}
.formBox textarea{
    min-height: 70px;
    padding: 10px;
    border: none;
}
.formBox button{
    background-color: var(--black-color);
    color: white;
    padding: 10px;
    width: 130px;
    text-decoration: none;
    border: none;
    align-self: center;
    margin-top: 20px;
}
.formBox button:hover{
    cursor: pointer;
    background-color: var(--blue-night);
}
.hasilHidden{
    display: none;
}
#thankYouMessage {
    text-align: center;
    color: var(--blue-night);
    font-weight: bold;
    font-family: var(--font-family);
    margin-top: 10px;
}


/* FOOTER */
footer, .footer2{
    font-family: var(--font-family);
}
footer{
    display: flex;
    background-color: rgb(0, 0, 0);
    flex-wrap: wrap;
    padding: 20px;
}
.logoFooter{
    margin-top: -20px;
    width: 200px;
    height: 200px;
    margin-right: 10px;
}
.logoFooter img{
    width: 100%;
    object-fit: cover;
}
.footerBox{
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    padding: 10px;
    box-sizing: border-box;
    min-width: 200px;
    max-width: 290px;
}
#footerBusiness{
    margin-right: 30px;
}
#boxBusines{
    display: flex;
    flex-direction: row;
    width: 320px;
}
.businesFooterList{
    display: flex;
    flex-direction: column;
    width: 140px;
    margin-right: 5px;
}
.footerBox h4{
    color: var(--blue-night);
    margin-bottom: 13px;
    font-size: 1rem;
    font-weight: bold;
}
.footerBox a{
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.footerBox a:hover{
    color: var(--blue-night);
    cursor: pointer;
}
.footerBox p{
    font-size: 0.8rem;
    margin-bottom: 5px;
    line-height: 1.5;
    color: white;
}
.mediaSocial .bx{
    font-size: 30px;
    border-radius: 50%;
    margin-right: 8px;
}
.footer2{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.925);
}
.footer2 p{
    color: var(--yellow-stars);
    font-size: 0.7rem;
    font-weight: bold;
}
.admin {
    position: fixed;
    right: 5px;
    bottom: 50px;
    color: white;
    border-radius: 8px;
    background-color: var(--blue-night);
    width: 100px;
    padding: 10px;
    z-index: 2;
}
.admin:hover {
    background-color: var(--black-color);
    transform: scale(1.025);
}
.admin .bx {
    font-size: 25px;
    float: left;
}
.admin p {
    color: white;
    font-weight: bold;
    margin-top: 4px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 575.98px){
    .desc h2{
        font-size: clamp(1.6rem, 3vw, 2.5rem);
    } 
    #logoFooter{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    #logoFooter img{
        width: 200px;
        margin-top: 15px;
    }
    footer, .footer2{
        width: 100%;
    }
    .profile {
        display: none;
    }
    .footer2 p{
        font-size: 0.65rem;
    }
    .contactCover{
        flex-direction: column;
    }
        .mapCover, .form{
        width: 95%;
    }
    .form{
        padding: 20px;
    }
    .contactBox{
        height: 100%;
    }
    .title-desc p{
        text-align: justify;
    }
}
@media (min-width: 576px) and (max-width: 767.98px){

}
@media (min-width: 768px) and (max-width: 991.98px){

}
@media (min-width: 992px) and (max-width: 1199.98px){

}
@media (min-width: 1200px){
    footer{
        justify-content: space-evenly;
    }
}
