body {
  font-family: "Poppins", sans-serif;
  background-color: #fcfcff;
}

/* ================= HEADER & NAVBAR ================= */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
}

/* ================= HERO ================= */
.hero {
  background-image: url("../images/banner-atas.png");
  background-size: 100%; /* coba 50% – 80% */
  background-position: top;
  background-repeat: no-repeat;
  padding: 80px 0 100px;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero .title-row {
  position: relative;
  top: -2vw;
}

.hero .hero-img {
  position: relative;
  overflow: hidden;
  left: 0vw;
  width: 95%;
  border-radius: 30px;
}

.hero .hero-img img {
  width: 100%;
  max-height: 47vh;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  display: block;
  transition: transform 0.45s ease;
  /* background: linear-gradient(331deg, #99060d 42%, #ff1919de); */
  /* box-shadow: 0 0 39px rgb(255 72 72 / 62%); */
}
.hero .hero-img:hover img {
  transform: scale(1.03);
}

/* siluet putih */
.hero .hero-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: rgba(255, 255, 255, 0.28);
  transform: skewX(-20deg);
  pointer-events: none;

  /* jalan saat load */
  animation: heroShine 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* jalan lagi saat hover */
.hero .hero-img:hover::after {
  animation: heroShine2 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroShine {
  from {
    left: -120%;
  }
  to {
    left: 120%;
  }
}

@keyframes heroShine2 {
  from {
    left: -120%;
  }
  to {
    left: 120%;
  }
}
/* end */

.hero-title {
  font-weight: 700;
  font-size: 32px;
}

.hero-desc {
  color: #ffffff;
  text-align: justify;
}

.hero .card-utama {
  position: relative;
  left: 0vw;
  width: 75%;
  height: 21vw;
  background: #ffffff00;
  border: 0px;
  border-radius: 30px;
}
.hero .card-sub {
  border: none;
  border-radius: 30px;
  background: linear-gradient(331deg, #99060d 42%, #ff1919de);
  box-shadow: 0 0 39px rgb(255 72 72 / 62%);
  margin-top: 20px;
  transition: transform 0.45s ease;
}

.hero .card-sub:hover {
  transform: scale(1.1);
}
.hero .card-sub img {
  width: 4vw;
  margin-left: 2vw;
  transition: transform 0.45s ease;
}
.hero .card-sub img:hover {
  transform: scale(1.2);
}

.hero .card-sub .anggota {
  transition: transform 0.45s ease;
  margin-left: -1vw;
}
.hero .card-sub .anggota:hover {
  transform: scale(1.2);
}
.hero .card-sub .total {
  font-size: 50px;
  font-weight: 600;
  color: white;
  margin-top: -1vw;
}
.hero .card-sub .title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-top: -2vw;
}

.hero-stat h3 {
  font-weight: 700;
}

/* ================= NEWS CARD ================= */
.kolom-news {
  /* position: relative; */
  margin-top: 2vw;
}

.news {
  padding: 80px 0;
}

.news .garis-tegak {
  width: 4px;
  height: 30px;
  background: #d51f27;
  margin-bottom: 1vw;
  margin-top: 0.2vw;
  margin-right: 0.5vw;
}

.news .hero-title {
  font-weight: 700;
  font-size: 32px;
}

.news .hero-desc {
  color: #666;
}

.news-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #8c161bbd, #ea5d5d00);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.news-card:hover .news-image::before {
  opacity: 1;
}

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.06);
}

.news-category {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: #f4b400;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 6px;
  z-index: 2;
}

.news-body {
  padding: 30px;
}

.news-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.news-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

.news-date {
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  color: #d51f27;
}

.see-more-btn {
  display: flex;
  justify-content: end;
  margin-top: 40px;
  margin-right: 3vw;
}

.see-more-btn a {
  position: relative;
  overflow: hidden;
  /* padding: 10px 15px; */
  border-radius: 8px;
  color: #fff;
  background: #d51f27;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.see-more-btn a i {
  font-size: 24px;
  line-height: 1;
}

/* Siluet putih */
.see-more-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 70%;
  height: 100%;
  background: rgba(255, 255, 255, 0.28);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}

/* Hover hanya menggerakkan siluet */
.see-more-btn a:hover {
  color: #fff;
  background: #990a11;
}
.see-more-btn a:hover::after {
  left: 120%;
}

/* ================= BANNER ================= */
.banner {
  background-image: url("../images/banner.png");
  background-size: cover; /* gambar memenuhi area */
  background-position: right; /* fokus tengah */
  background-repeat: no-repeat; /* tidak mengulang */
  padding: 80px 0 80px; /* atas & bawah lebih lega */
  position: relative;
  min-height: 465px;
  display: flex;
  align-items: center;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
}

.banner > .container {
  position: relative;
  z-index: 2;
}

.banner .banner-img {
  position: absolute;
  bottom: 0;
  left: 90px;
  display: flex;
  align-items: flex-end;
}

.banner .banner-img img {
  display: block;
  width: 420px;
  height: auto;
  max-height: 100%;
}

.banner .title-row2 {
  position: relative;
  left: 30vw;
  width: 35%;
}

.banner .hero-title2 {
  font-weight: 700;
  font-size: 32px;
}

.banner .hero-title-sub {
  font-size: 24px;
  color: #b30000;
}

.banner .garis-merah {
  width: 50%;
  height: 2px;
  background: #b30000;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.banner .hero-desc2 {
  color: #666;
  text-align: justify;
}

/* ================= AGENDA & KEGIATAN ================= */
.agenda {
  padding: 80px 0;
}

.agenda .hero-title {
  font-weight: 700;
  font-size: 32px;
}

.agenda .garis-tegak {
  width: 4px;
  height: 22px;
  background: #d51f27;
  margin-bottom: 1vw;
  margin-top: 0.2vw;
  margin-right: 0.5vw;
}

.agenda .kolom-agenda {
  position: relative;
  margin-top: 2vw;
}

.agenda-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.agenda-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.agenda-header {
  padding: 8px;
}

.agenda-header .row-tanggal {
  position: relative;
  width: 100%;
  height: 90%;
  left: 1.5vw;
  top: 0.5vw;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 0px 2px 0px #8b0000;
}

.agenda-header .kolom-tanggal {
  background: #b30000;
  color: white;
}

.agenda-header .text-tanggal {
  font-size: 45px;
  font-weight: 700;
  position: relative;
  top: 0.5vw;
  text-align: center;
}

.agenda-header .text-bulan {
  font-size: 28px;
  font-weight: 700;
  color: #b30000;
  text-align: center;
}

.agenda-header .row-detail-agenda {
  width: 15vw;
  margin-top: 1vw;
}

.agenda-header .judul p {
  font-size: 22px;
  font-weight: 700;
  color: black;
  line-height: 1.8vw;
}

.agenda-header .sub-judul .icon {
  margin-right: 0.5vw;
  color: #8b8b8b;
}

.agenda-header .sub-judul p {
  font-size: 14px;
  color: #616161;
  line-height: 1.3vw;
}

hr {
  color: black;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
  margin-top: 0vw;
  margin-bottom: -1vw;
  width: 20vw;
}

.agenda-body {
  padding: 30px;
}

.agenda-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: justify;
}

.agenda .see-more-btn {
  justify-content: center;
}

/* ================= BANNER TWO ================= */
.banner-two {
  background-image: url("../images/bannertwo.png");
  background-size: cover; /* gambar memenuhi area */
  background-position: center; /* fokus tengah */
  background-repeat: no-repeat; /* tidak mengulang */
  padding: 80px 0 80px; /* atas & bawah lebih lega */
  position: relative;
  min-height: 432px;
  display: flex;
  align-items: center;
}

.banner-two::before {
  content: "";
  position: absolute;
  inset: 0;
}

.banner-two > .container {
  position: relative;
  z-index: 2;
}

.banner-two .satu-baris {
  display: flex;
}

.banner-two .title-row {
  position: relative;
  left: 23vw;
  width: 43%;
  text-align: center;
}

.banner-two .hero-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.banner-two .hero-title {
  font-weight: 500;
  font-size: 48px;
  margin: 0;
  white-space: nowrap;
}

.banner-two .garis-merah {
  flex: 1;
  max-width: 18px;
  height: 8px;
  background: #b30000;
}

.banner-two .hero-title-sub {
  font-size: 24px;
  color: #2a2a2a;
  margin-top: 0.5vw;
  letter-spacing: 3px;
}

.banner-two .hero-desc {
  color: #666;
}

/* ================= STRUKTUR ORGANISASI ================= */
.struktur img {
  width: 64%;
  position: relative;
  left: 12vw;
}

.struktur .org-timeline {
  position: relative;
  list-style: none;
  padding-left: 40px;
  margin-top: 30px;
}

/* garis vertikal */
.struktur .org-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #cfcfcf;
}

/* item */
.struktur .org-timeline li {
  position: relative;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
}

/* bulatan merah */
.struktur .org-timeline .dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: #b30000;
  border-radius: 50%;
}

/* teks */
.struktur .org-timeline .content {
  font-size: 15px;
  color: #111;
  line-height: 1.6;
}

.struktur .org-timeline .content strong {
  font-weight: 700;
}

/* header dan filter untuk berita galeri tentang download */
.page-header {
  position: relative;
  overflow: hidden;
}

.page-header-img img {
  width: 100%;
  height: 220px;
  /* sesuaikan tinggi */
  object-fit: cover;
  display: block;
}

.page-header-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
}

.page-header-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.page-header-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.page-header-content p {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.page-header-content .title-line {
  text-align: center;
  margin: 40px 0 30px;
  font-weight: 700;
}

.page-header-content .title-line span {
  position: relative;
  padding: 0 20px;
  font-size: 32px;
  color: #000;
}

.page-header-content .title-line span::before,
.page-header-content .title-line span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35px;
  height: 3px;
  background-color: #b00000;
  /* merah tua */
}

.page-header-content .title-line span::before {
  left: -50px;
}

.page-header-content .title-line span::after {
  right: -50px;
}

.page-filter {
  padding: 15px 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.page-filter .filter-box {
  background: #f3f3f3;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* BUTTON */
/* BUTTON */
.page-filter .filter-box button {
  background: transparent;
  border: none;
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  -webkit-tap-highlight-color: transparent;
}

.page-filter .filter-box button.active,
.page-filter .filter-box button:hover,
.page-filter .filter-box button:active,
.page-filter .filter-box button:focus {
  background: #d10000;
  color: #fff;
}

