/* Option 2: Import via CSS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0f004a;
    width: 100%;
}

.scrollbar{
    position: fixed;
    top: 0;
    left: 0;
    height: 6px;
    background: #d8fd07;
    z-index: 9999;
    width: 100%;
    transform-origin: left;
    transform: scaleX(0);
    animation: grow linear;
    animation-timeline: scroll();
    }

@keyframes grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.judul {
    text-align: center;
    color: #fff;
    padding: 50px 0;
    animation: fadeInUp 0.9s ease both;

}

.judul h1{
    font-size: 48px;
    margin: 0;
    color: blue;
}
.judul h1 span {
    font-size: 48px;
    margin: 0;
    color:yellow;
}

.judul h2 {
    font-size: 24px;
    margin: 0;
    color: #fff;
}

video {
    display: block;
    margin: 0 auto;
    max-width: 80%;
    border: 5px solid #fff;
    border-radius: 10px;
    animation: fadeInUp 0.9s ease both;
}

.artikel {
    text-indent: 40px;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 17%;
}

.info {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 17%;
}

.teknik {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 17%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes appear {
    from { 
        opacity: 0;
        scale: 0.5;
    }
    to { opacity: 1; 
        scale: 1; 
    }
}

@keyframes grow-progress{
    from{
        transform: scaleX(0);
    }
    to{
        transform: scaleX(1);
    }
}

::-webkit-scrollbar{
    width: 12px;
    background-color: rgb(81, 90, 0);
}

::-webkit-scrollbar-track{
    border-radius: 3px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb{
    border-radius: 5px;
    background-color: rgb(0, 0, 107);
    border:2px solid rgb(188, 188, 0);
}

.artist{
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 36px 28px;
    text-align: center;
    font-family: sans-serif;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0 cover 17%;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 0%;
  object-fit: cover;
  border: 4px solid #040047;
  margin-bottom: 16px;
}

.name {
  font-size: 20px;
  font-weight: 700;
  color: #1e1b4b;
  margin: 0 0 4px;
}

.quote {
  font-size: 14px;
  color: #4b5563;
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid #4f46e5;
  margin: 0;
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  text-align: left;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.webcre{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    background: #000000;
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 36px 28px;
}

@media (min-width: 540px){
    .webcre{
        flex-direction: row;
        align-items: flex-start;
    }

    .bio { 
        text-align: left;
         margin-top: 0rem;
        margin-left: 0rem;
     }
}



.farhan{
    width: 7cm;
    height: 7cm;
    border-radius: 5%;
    object-fit: cover;
    flex-shrink: 0;
    margin-left: 2rem;
    margin: auto;
}

.bio { 
    text-align: center;
    flex-shrink: 50;
    font-weight: bold;
    margin-top: 3rem;
    margin-left: 2rem;
    margin: auto;
}

.sosmed{
    margin-top:20px;
    font-size: larger;
    align-items: center;
}

.sosmed a{
    color: #fff;
    gap: 2px;
    justify-content: center;
}
