@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');

:root{
    --main-orange: grey;
    --main-blue: #9bdbe7;
}

body *{
    font-family: 'Roboto', sans-serif;
}

header.bar{
    background-color: var(--main-orange);
    width: 100%;
}

.navbar .navbar-brand{
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
}

.navbar-nav li.nav-item a.nav-link{
    font-weight: 900;
    /*Rem itu buat 2 kali font*/
    margin: 0 1rem;
}

/* Header */
.header {
    margin-top: 40px;
  }
  
.header h3 {
    font-size: 32px;
    margin-top: 16px;
    font-weight: 400;
  }
  
  .header a button {
    font-size: 24px;
    outline: none;
    border: none;
    background-color: #007ec3;
    color: #ffffff;
    margin-top: 48px;
    padding: 16px 64px;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 126, 195, 0.25);
    transition: all 0.4s;
  }
  
  .header a button:hover,
  .experience a button:hover,
  .portfolio a button:hover,
  .contact button:hover {
    color: #007ec3;
    border: 2px solid #007ec3;
    background: none;
  }
  
  .header img {
    width: 100%;
    margin-top: -2em;
    animation-name: headerImg;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }  

.hero{
    margin-top: -1px;
    background-color: var(--main-orange);
    width: 100%;                                                                   
}

.content{
    margin-top: -1px;
    background-color: var(--main-orange);
    width: 100%;                                                                   
}

input.form-control{
    box-shadow: inset 0px 1px 5px rgba(0,0,0,0.3);
    border-radius: 20px;
    height: 62px; font-weight: bold; 
    padding: 1rem 26px;
    font-size: 20px;
}

input.form-control::placeholder{
    color: #cdcdcd;
    opacity: 1;
}

input.form-control::-ms-input-placeholder{
    color: #cdcdcd;
}

.btn.btn-primary{
    background-color: var(--main-blue);
    padding: 0 18px;
    height: 62px;
    border-radius: 20px;
    border: none;
    display: inline-flex;
    align-items: center;
}

.card.card-feature{
    border-radius: 20px;
    min-height: 100px;
    margin-top: -128px;
}

/* Start Buat Garis*/
h2.text-heading{
    position: relative;
    padding: 20px 0;
    margin-bottom: 1.5rem;
}

h2.text-heading::before{
    position: absolute; content: "";
    border-bottom: 5px solid var(--main-orange);
    width: 60px;
    left: 0;
    bottom: 0;
}
/* End Buat Garis*/

/* Start Section taste */
.section-taste-premium{
    margin-top: 12rem;
    margin-bottom: 12rem;
}

.canvas{
    position: relative;
    margin: 0 auto;
}

.canvas .cirle{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--main-orange);
    border-radius: 1000px;
    z-index: 1;
}

.canvas .object{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 100%;
}
/* End Section taste */

/* Start Footer */
footer{ 
    margin-top: 2rem;
    border-top: 2px solid #ececec;
    padding: 2rem;
}
/* End Footer */


/*desktop*/
@media only screen and (min-width: 768px) {
    .hero{
        height: 660px;
    }
    .hero h1.main-tex{
        font-size: 3rem;
    }

    .content{
        height: 900px;
    }
    .content h1.main-tex{
        font-size: 3rem;
    }
    /* Buat munculin circle */
    .canvas{
        width:490px;
        height: 300px;
    }

    section.section-auto-flip:nth-child(odd) .row [class^="col"]:nth-child(1) {
        order: 1;
    }

    section.section-auto-flip:nth-child(odd) .row [class^="col"]:nth-child(2) {
        text-align: left !important;
    }
    
}

/*mobile*/
@media only screen and (max-width: 767px) {
    .section-taste-premium .row [class^="col"]:nth-child(2){
        margin-top: 6rem;
    }
    .hero{
        padding-bottom: 175px;
    }
    .hero h1.main-tex{
        font-size: 26px;
        font-weight: 500;
    }
    .canvas{
        height: 100%;
        width: 100%;
    }
    .canvas .cirle{
        position: relative;
        margin: 0 auto;
        height: 290px;
        width: 290px;
    }
}
