*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#f5f5f5;
  color:#333;
}

/* HEADER */
header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:12px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  background:transparent;
  transition:0.3s;
}

/* Saat Scroll */
header.scrolled{
  background:rgba(55, 55, 55, 0.2);
  border-bottom:1px solid rgba(55, 55, 55, 0.2);
}

/* LOGO */
.logo-container{
  display:flex;
  align-items:center;
  gap:5px;
}

.logo-container img{
  width:45px;
  height:45px;
  object-fit:contain;
  background:none;
  border-radius:50%;
  padding:3px;
}

.logo-text h2{
  font-size:19px;
  color:white;
}

.logo-text p{
  font-size:12px;
  color:white;
}

/* warna berubah saat scroll */
header.scrolled .logo-text h2,
header.scrolled .logo-text p,
header.scrolled nav ul li a{
  color:#222;
}

/* NAVBAR */
nav ul{
  display:flex;
  list-style:none;
  gap:25px;
}

nav ul li a{
  text-decoration:none;
  color:white;
  font-weight:600;
  font-size:15px;
  transition:0.3s;
}

nav ul li a:hover{
  color:#c00000;
}

/* SLIDER */
.slider{
  width:100%;
  height:100vh;
  overflow:hidden;
  position:relative;
}

.slides{
  display:flex;
  width:300%;
  animation:slide 12s infinite;
}

.slides img{
  width:100%;
  height:100vh;
  object-fit:cover;
}

@keyframes slide{

  0%{
    margin-left:0;
  }

  30%{
    margin-left:0;
  }

  35%{
    margin-left:-100%;
  }

  65%{
    margin-left:-100%;
  }

  70%{
    margin-left:-200%;
  }

  100%{
    margin-left:-200%;
  }

}

/* HERO TEXT */
.hero-text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  color:white;
  text-align:center;
  background:rgba(0,0,0,0.4);
  padding:25px;
  border-radius:15px;
}

.hero-text h1{
  font-size:52px;
  margin-bottom:10px;
}

.hero-text p{
  font-size:20px;
}

/* SECTION */
section{
  padding:70px 40px;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
  color:#7b0000;
  font-size:36px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:white;
  padding:30px;
  border-radius:15px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

.card h3{
  color:#7b0000;
  margin-bottom:15px;
}

/* =========================
   FOOTER
========================= */

.footer{

  background:#112a69;

  color:white;

  padding-top:80px;
}

/* CONTAINER */
.footer-container{

  max-width:1300px;

  margin:auto;

  padding:0 40px 60px;

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

  gap:50px;
}

/* LOGO */
.footer-logo{

  display:flex;

  align-items:center;

  gap:16px;

  margin-bottom:24px;
}

.footer-logo img{
  width:65px;
}

.footer-logo h2{
  font-size:28px;
  font-weight:800;
  margin-bottom:4px;
}

.footer-logo p{
  color:#8eb8ff;
  font-size:18px;
}

/* DESC */
.footer-desc{

  color:#9cb8ea;

  line-height:1.8;

  font-size:16px;

  margin-bottom:26px;
}

/* MADE */
.footer-made{

  color:#7fb0ff;

  font-size:15px;

  font-weight:600;
}

/* TITLE */
.footer-col h3{

  font-size:24px;

  margin-bottom:24px;

  font-weight:800;
}

/* LIST */
.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:18px;
}

/* LINK */
.footer-col ul li a{

  color:#c6d8ff;

  text-decoration:none;

  font-size:17px;

  transition:0.3s;
}

.footer-col ul li a:hover{
  color:white;
  padding-left:4px;
}

/* TEXT */
.footer-col ul li{
  color:#c6d8ff;
  font-size:17px;
  line-height:1.7;
}

/* BOTTOM */
.footer-bottom{

  border-top:
    1px solid rgba(255,255,255,0.1);

  text-align:center;

  padding:24px;

  color:#9cb8ea;

  font-size:15px;
}

/* MOBILE */
@media(max-width:768px){

  .footer{
    padding-top:60px;
  }

  .footer-container{
    padding:0 20px 50px;
    gap:40px;
  }

  .footer-logo h2{
    font-size:24px;
  }

  .footer-logo p{
    font-size:16px;
  }

  .footer-col h3{
    font-size:20px;
  }

  .footer-col ul li,
  .footer-col ul li a{
    font-size:15px;
  }

}

/* MOBILE */
@media(max-width:768px){

  header{
    flex-direction:column;
    gap:15px;
    padding:15px;
  }

  nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
  }

  .hero-text h1{
    font-size:32px;
  }

  .hero-text p{
    font-size:16px;
  }

  .logo-text h2{
    font-size:16px;
  }

}

/* =========================
   JADWAL
========================= */

.jadwal-section{
  padding:90px 40px;
  background:#f4f9ff;
}

.jadwal-header{
  text-align:center;
  margin-bottom:45px;
}

.jadwal-subtitle{
  color:#2496ff;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:10px;
}

.jadwal-header h2{
  font-size:38px;
  color:#17212b;
}

.jadwal-line{
  width:80px;
  height:4px;
  background:#2496ff;
  margin:20px auto 0;
  border-radius:999px;
}

/* CONTAINER */
.jadwal-container{
  max-width:1100px;
  margin:auto;
  background:white;
  border-radius:24px;
  overflow:hidden;
  border:1px solid #dcecff;
  box-shadow:0 10px 25px rgba(36,150,255,.08);
}

/* ITEM */
.jadwal-item{
  display:flex;
  align-items:center;
  gap:25px;
  padding:25px 30px;
  border-bottom:1px solid #eef4fb;
}

.jadwal-item:last-child{
  border-bottom:none;
}

.jadwal-time{
  min-width:90px;
  text-align:center;
}

.jadwal-time h3{
  font-size:22px;
  color:#17212b;
}

.jadwal-time span{
  font-size:13px;
  color:#6b7280;
}

.jadwal-content{
  flex:1;
}

.jadwal-content h3{
  font-size:18px;
  color:#17212b;
  margin-bottom:6px;
}

.jadwal-content p{
  color:#6b7280;
  font-size:14px;
}

.jadwal-badge{
  background:#eaf5ff;
  color:#2496ff;
  padding:10px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}


.jadwal-hari{

  min-width:100px;

  text-align:center;

  background:#2496ff;

  color:white;

  padding:12px 18px;

  border-radius:12px;

  font-size:14px;

  font-weight:700;
}

.jadwal-page{
  display:none;
}

.active-page{
  display:block;
}

.jadwal-navigation{

  display:flex;

  justify-content:center;

  align-items:center;

  gap:20px;

  padding:25px 0;
}

.nav-btn{

  width:48px;

  height:48px;

  border:none;

  border-radius:50%;

  background:rgba(36,150,255,.15);

  color:#2496ff;

  font-size:22px;

  cursor:pointer;

  transition:.3s;
}

.nav-btn:hover{

  background:#2496ff;

  color:white;

  transform:translateY(-2px);
}

.pagination-dots{

  display:flex;

  gap:10px;
}

.dot{

  width:10px;

  height:10px;

  border-radius:50%;

  background:#cfd8e3;
}

.dot.active{
  background:#2496ff;
}

/* =========================
   STATISTIK
========================= */

.statistik-section{
  background:#2496ff;
  padding:90px 40px;
}

.white{
  color:white;
}

.stats-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.stat-box{
  background:rgba(255,255,255,.12);
  border-radius:18px;
  padding:30px;
  text-align:center;
  color:white;
}

.stat-box h3{
  font-size:42px;
  margin-bottom:10px;
}

.stat-box p{
  font-size:16px;
}



/* MOBILE */
@media(max-width:768px){

  .jadwal-days{
    grid-template-columns:repeat(2,1fr);
  }
}


/* =========================
   BERITA & PENGUMUMAN
========================= */

.berita-section{
  padding:90px 40px;
  background:#ffffff;
}

/* HEADER */
.section-header{
  text-align:center;
  margin-bottom:55px;
}

.section-subtitle{
  color:#2496ff;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:14px;
}

.section-header h2{
  color:#17212b;
  font-size:42px;
  font-weight:800;
  margin-bottom:18px;
}

.section-line{
  width:80px;
  height:4px;
  background:#2496ff;
  margin:auto;
  border-radius:20px;
}

/* WRAPPER */
.berita-wrapper{

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

  gap:30px;

  max-width:1300px;

  margin:auto;
}

/* CARD */
.berita-card{

  background:#fff;

  border-radius:24px;

  overflow:hidden;

  border:1px solid #e5eef9;

  transition:0.3s;

  box-shadow:
    0 10px 30px rgba(36,150,255,0.08);
}

.berita-card:hover{

  transform:translateY(-6px);

  box-shadow:
    0 18px 40px rgba(36,150,255,0.14);
}

/* IMAGE */
.berita-image{
  width:100%;
  height:270px;
  overflow:hidden;
}

.berita-image img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.4s;
}

.berita-card:hover img{
  transform:scale(1.05);
}

/* CONTENT */
.berita-content{
  padding:28px;
}

/* DATE */
.berita-date{
  color:#5d6b7a;
  font-size:15px;
  margin-bottom:24px;
}

/* TITLE */
.berita-content h3{

  color:#17212b;

  font-size:22px;

  line-height:1.5;

  font-weight:800;

  margin-bottom:18px;
}

/* DESC */
.berita-content p{

  color:#5d6b7a;

  font-size:17px;

  line-height:1.7;

  margin-bottom:40px;
}

/* BUTTON */
.read-more{

  color:#2496ff;

  font-size:16px;

  font-weight:700;

  text-decoration:none;

  position:relative;
}

.read-more::after{

  content:'';

  position:absolute;

  left:0;
  bottom:-6px;

  width:100%;
  height:2px;

  background:#2496ff;

  transition:0.3s;
}

.read-more:hover::after{
  width:0;
}

/* MOBILE */
@media(max-width:768px){

  .berita-section{
    padding:70px 18px;
  }

  .section-header h2{
    font-size:30px;
    line-height:1.4;
  }

  .berita-image{
    height:220px;
  }

  .berita-content{
    padding:22px;
  }

  .berita-content h3{
    font-size:19px;
  }

  .berita-content p{
    font-size:15px;
  }

}

/* LOADER */

#loader{

  position:fixed;

  top:0;
  left:0;

  width:100%;
  height:100vh;

  background:white;

  z-index:99999;

  display:flex;

  flex-direction:column;

  justify-content:center;

  align-items:center;

  gap:20px;

  transition:0.8s;
}

#loader img{
  width:90px;
}

#loader h2{
  color:#2496ff;
}

.loader-hide{

  opacity:0;

  visibility:hidden;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  header{
    padding:15px;
    flex-direction:column;
    gap:10px;
  }

  nav ul{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-text h1{
    font-size:34px;
  }

  .hero-text p{
    font-size:16px;
  }

  .jadwal-section,
  .berita-section,
  .statistik-section{
    padding:70px 20px;
  }

  .jadwal-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .jadwal-time{
    text-align:left;
  }

  .section-header h2,
  .jadwal-header h2{
    font-size:28px;
  }

  .footer-container{
    padding:0 20px 50px;
  }

}