/* ==== HERO ==== */

body{
    overflow-x: hidden; /* Matikan scroll horizontal */
    overflow-y: auto;   /* Scroll vertikal tetap hidup */
}



.hero{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* ==== hero__content ==== */

.hero__content{
    margin-top: 9%;
    margin-left: 10%;
    width: 40%;
    /* background-color: blue; */
    flex: 1;
}


.hero__title.hero__title--primary{
    color: rgba(255, 174, 0, 1);
    font-weight: 900;
    -webkit-text-stroke: 2px rgba(255, 174, 0, 1);
    display: block;
}

.hero__title.hero__title--primary2{
    color: rgba(255, 174, 0, 1);
    -webkit-text-stroke: 2px rgba(255, 174, 0, 1);
    font-weight: 900;
}

.hero__title.hero__title--secondary{
    color: rgba(86, 0, 136, 1);
    -webkit-text-stroke: 2px rgba(86, 0, 136, 1);
    display: block;
    font-weight: 900;
}

.hero__title.hero__title--and{
    font-size: 5vw;
}

.hero__title{
    font-size: 4vw;
    line-height: 1;
}

.hero__description{
    margin-top: 4%;
}

.hero__greet{
    font-size: 1.5vw;
}

.hero__swipe{
    margin-top: 8vw;
    
}

.arrow-up{
    display: inline;
    width: 10px;
    margin-left: 2%;
}
/* ==== hero__content ==== */

/* ==== hero__figure ==== */
.hero__figure{
    flex: 1;
}

.hero__figure-img{
    width: 80%;
    margin: 0px;
    margin-bottom: 100px;
    /* background-color: red; */

}

/* ==== hero__figure ==== */

/* RESPONSIVE DESIGN */
@media (max-width: 800px) {
    body {
        overflow-x: hidden; /* Matikan scroll horizontal */
        overflow-y: auto;   /* Scroll vertikal tetap hidup */
    }
    .hero {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;  
    }

    .hero__content {
        width: 100%;
        margin-left: 0;
        margin-top: 1vw;
    }

    .hero__figure-img{
        margin: 0 auto;
        padding-top: 70px;
    }

    .hero__title.hero__title--primary{
        color: rgba(255, 174, 0, 1);
        font-weight: 300;
        /* -webkit-text-stroke: 2px rgba(255, 174, 0, 1); */
        display: block;
    }

    .hero__title.hero__title--primary2{
        color: rgba(255, 174, 0, 1);
        /* -webkit-text-stroke: 2px rgba(255, 174, 0, 1); */
        font-weight: 300;
    }

    .hero__title.hero__title--secondary{
        color: rgba(86, 0, 136, 1);
        /* -webkit-text-stroke: 2px rgba(86, 0, 136, 1); */
        display: block;
        font-weight: 300;
    }

    .hero__title.hero__title--and{
        font-size: 6vw;
        font-weight: 700;
    }

    .hero__title{
        font-size: 6vw;
    }

    .hero__description{
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero__greet{
        font-size: 3vw;
        margin-bottom: 2vw;
    }
}


/* RESPONSIVE DESIGN */

/* ==== HERO ==== */


/* ==== AWARENESS ==== */
.awareness {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.awareness__container {
  position: relative;
  padding: 0 20px;
}

.awareness__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  line-height: 1.3;
}

/* paragraf */
.awareness__description {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
  max-width: 900px;
}

/* quotes styling */
.awareness__quote {
  font-size: 3.6rem;
  color: rgba(255, 174, 0, 1);
  display: inline-block;
  vertical-align: top;
}

/* Quote kiri — diletakkan di samping h3 tanpa menggeser h3 */
.awareness__quote--left {
  transform: translateX(-10px) translateY(5px);
  margin-right: 5px;
}

/* Quote kanan — muncul setelah paragraf tanpa merusak line-height */
.awareness__quote--right {
  margin-left: 8px;
  transform: translateY(5px);
}

/* Responsiveness */
@media (max-width: 600px) {

    .awareness{
        margin-top: 15%;
    }
  .awareness__title {
    font-size: 1.8rem;
  }
  .awareness__description {
    font-size: 1.2rem;
  }
  .awareness__quote {
    font-size: 2.6rem;
  }
}

/* ==== AWARENESS ==== */

/* ==== CERTIFICATE ==== */
.certificate{
    /* background-color: red; */
    width: auto;
    margin-bottom: 20px;
    margin-top: 150px;
}

.certificate__container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certificate__title{
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 15px;
    color: rgba(255, 174, 0, 1);
    font-size: 30px;
}

.certificate__card__description{
    font-size: xx-small;
    padding-left: 4px;
    padding-top: 4px;
    padding-bottom: 10px;
    padding-right: 4px;
    color: white;
    text-align: justify;
}

.certificate__card{
    background-color: rgba(86, 0, 136, 1);
    width: 280px;  
    height: 400px;
    flex-shrink: 0;
    width: 200px;
    border-radius: 4px;
    outline: rgba(86, 0, 136, 1) solid 2px;
}

.certificate__img__container{
    height: 120px;
    width: auto;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}

.certificate__card__title{
    height: 60px;
    padding-left: 4px;
    padding-top: 4px;
    font-weight: normal;
    color: white;
}

/* ==== CERTIFICATE ==== */

/* ==== PROJECT ==== */
.project{
    /* background-color: red; */
    width: auto;
    margin-bottom: 20px;
    margin-top: 150px;
}

.project__container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

}

.project__title{
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 15px;
    color: rgba(86, 0, 136, 1);
    font-size: 30px;
}

.project__card__description{
    font-size: xx-small;
    padding-left: 4px;
    padding-top: 4px;
    padding-bottom: 10px;
    padding-right: 4px;
    color: black;
    text-align: justify;
    /* color: red; */
}

.project__card{
    background-color: rgba(255, 174, 0, 1);
    width: 280px;  
    height: 400px;
    flex-shrink: 0;
    width: 200px;
    border-radius: 4px;
    outline: rgba(255, 174, 0, 1) solid 2px;
    overflow: hidden;
}

.project__img__container{
    height: 120px;
    width: auto;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}

.project__card__title{
    padding-left: 4px;
    padding-top: 4px;
    font-weight: normal;
    height: 80px;
    color: black;
}

/* .project__card:nth-child(4) .project__card__title {
    padding-bottom: 60px;
} */


/* ==== PROJECT ==== */

/* ==== UTILITY_AND_SOFTSKILL ==== */
.utility__softskill{
    width: 80%;
    margin: 0 auto;
    margin-top: 15%;
}

.utility__softskill__container {
    position: relative;
    border: 4px solid rgba(86, 0, 136, 1);
    padding: 30px;
    border-radius: 20px; /* Sudut luar */
    overflow: hidden; /* Agar pseudo tidak keluar */
    display: flex;
    flex-wrap: wrap;
}

.utility__softskill__container::before {
    content: "";
    position: absolute;
    inset: 20px; /* Offset mengikuti border width */
    background: rgba(255, 174, 0, 1);
    border-radius: 16px; /* Sudut dalam */
    z-index: -1;
}

.utility__softskill__title{
    color: rgba(86, 0, 136, 1);
    font-size: xx-large;
    padding-bottom: 2%;
}

.utility__container{
    flex: 1;
    padding: 10px;
}

.utility.utility__graphic--designer{
    border: solid rgba(86, 0, 136, 1) 3px;
    border-radius: 10px;
    margin-bottom: 12px;
    padding-bottom: 20px;
}

.utility__title{
    color: rgba(86, 0, 136, 1);
    font-size: x-large;
    padding-left: 10px;
    padding-top: 10px;
}

.utility__list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.utility__list li{
    list-style: none;
    margin-left: 10px;
}

.utility__list span{
    display: block;
    font-weight: 400;
    color: white;
}

.utility__list .utility__list__percent{
    display: inline;
    color: rgba(86, 0, 136, 1);
    font-weight: bold;
}

.utility__list progress{
    width: 90%;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}

progress::-webkit-progress-bar {
    background-color: white;
}

progress::-webkit-progress-value {
    background-color: rgba(86, 0, 136, 1);
}

progress::-moz-progress-bar {
    background-color: rgba(86, 0, 136, 1);
}


.utility.utility__junior--fullstack{
    border: solid rgba(86, 0, 136, 1) 3px;
    border-radius: 10px;
    padding-bottom: 5%;
}

.softskill{
    flex: 1;
    padding: 10px 10px 0px 10px;
    border: solid rgba(86, 0, 136, 1) 3px;
    border-radius: 10px;
    margin-top: 9px;
    display: flex;
    flex-direction: column;
    /* min-height: 100%; */
    height: 786px;
}

.softskill .softskill__title{
    color: rgba(86, 0, 136, 1);
    font-size: x-large;
    padding-bottom: 2%;
}

.softskill .softskill__description{
    text-align: justify;
    color: white;
    text-transform: capitalize;
}

.softskill .softskill__decoration{
    margin-top: auto;
    align-self: center;
    padding-top: 20px;
    width: 70%;
    
}
/* ==== UTILITY_AND_SOFTSKILL ==== */

/* ==== CALLME ==== */

/* PARENT */
.callme{
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(86, 0, 136, 1);
    margin-top: 40px;
}

.callme__hero{
    padding: 20px;
    flex: 1;
}

 .callme__article {
  padding: 20px;
} 
  

/* PARENT */

/* child callme__content */
.callme__header{
    margin-top: 20px;
}

.callme__content{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.callme__article__img {
  width: 40px;
  display: inline;
}

.callme__article__span {
  color: white;
  display: inline;
  font-size: large;
  margin-left: 10px;
  padding: 10px;
}

.callme__article__line {
  width: 90%;
  height: 5px;
  background-color: rgba(255, 174, 0, 1);
  border-radius: 20px;
}

.callme__article__child{
    display: flex;
    flex-direction: row;
    align-items: center;
}
/* child callme__content */

.callme__hero img {
    margin: 0 auto;
}

.callme__img{
    padding-top: 20px;
    padding-left: 20px;
    width: 80%;
}

.callme__img__name{
    width: 400px;
    position: relative;
    z-index: 10;
    transform: translate(-20px, -120px);
}

.callme__header__description{
    font-size: large;
    color: white;
}

.callme__title{
    font-size: xx-large;
    color: white;
    margin: 0;
}

.callme__footer{
    margin-top: 40px;
}

.callme__footer__description{
    width: 90%;
    font-size: large;
    color: white;
}

/* responsive_design */

@media (max-width: 500px) {
    .callme {
        flex-direction: column; /* ubah jadi column */
        align-items: flex-start; /* tetap rata kiri */
    }

    .callme__hero {
        flex: 0 0 auto; /* hentikan pembagian ruang otomatis */
        width: auto; /* sesuai konten */
        padding: 10px;
    }

    .callme__article {
        flex: 0 0 auto;
        width: auto;
    }

    .callme__img {
        width: 100%; /* agar tidak overflow */
        padding-left: 50px;
        /* margin-left: 400px; */
    }

    .callme__img__name {
        width: auto;
        transform: translate(0, -60px); /* menyesuaikan layout mobile */
    }
    .utility__softskill{
        display: flex;
        flex-direction: column;
        padding: 0px;
    }

    .utility__container{
        width: 100%;
        /* background-color: red; */
        padding: 0px;
        margin: 0px;
    }

    .utility__softskill__container{
       padding: 10px;
        
    }

    .callme__article__span{
        display: inline-block;
        max-width: 200px;
        overflow-wrap: break-word;
    }

    .utility.utility__graphic--designer{
        width: 100%;
        /* background-color: red; */
    }

    .utility__softskill__container::before {
        content: "";
        position: absolute;
        inset: 5px; /* Offset mengikuti border width */
        background: rgba(255, 174, 0, 1);
        border-radius: 16px; /* Sudut dalam */
        z-index: -1;
    }


    /* .utility{
        width: 300px;
    } */
}




/* responsive_design */

/* ==== CALLME ==== */

/* ==== THANKS ==== */
.thanks{
    display: flex;
    flex-direction: row;
    margin-top: 60px;
    width: 100%;
}

.thanks__decoration{
    margin-left: auto;
}

.thanks__container{
    padding: 20px;
}

.thanks__title__primary{
    font-size: 60px;
    color: rgba(255, 174, 0, 1);
}

.thanks__line{
    margin-top: 20px;
    height: 1%;
    width: auto;
    background-color: rgba(255, 174, 0, 1);
    border-radius: 20px;
}

.thanks__title__secondary{
    font-size: x-large;
    color: rgba(86, 0, 136, 1);
    padding-right: 40%;
}

@media (max-width: 500px){
    .thanks__decoration{
        display: none;
    }
    .thanks__title__primary{
        font-size: 30px;
    }
    .thanks__title__secondary{
        font-size: 20px;
        padding-right: 0px;
    }
}

/* ==== THANKS ==== */

/* === CLOSE__STATEMENT === */

.close__statement{
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: fit-content; /* atau width tertentu */
    margin: 0 auto;
    margin-top: 200px;
    margin-bottom: 50px;
}

.close__statement__img{
    width: 40px;
}

.close__statement__title{
    letter-spacing: 20px;
    font-weight: 500;
    font-size: large;
    color: rgba(86, 0, 136, 1);
}

@media (max-width: 600px) {
    .close__statement {
        gap: 10px;
        margin-top: 100px;
        margin-bottom: 30px;
    }

    .close__statement__img {
        width: 25px;
    }

    .close__statement__title {
        letter-spacing: 8px;
        font-size: medium;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .close__statement {
        gap: 15px;
        margin-top: 150px;
        margin-bottom: 40px;
    }

    .close__statement__img {
        width: 32px;
    }

    .close__statement__title {
        letter-spacing: 12px;
        font-size: large;
    }
}

@media (max-width: 500px) {
    .close__statement__img {
        width: 20px;
    }

    .close__statement__title {
        letter-spacing: 2px;
        font-size: 13px;
    }
}




/* === CLOSE__STATEMENT === */