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

body {
    font-family: Inter, Segoe UI, Roboto, ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    }
  background: var(--gray-light);
  color: #333;
}

/* PAGE HEADER */

.page-header {
  padding: 90px 0 50px;
  background:
    linear-gradient(rgba(15, 96, 107, .95), rgba(15, 96, 107, .95));
  color: white;
}

.page-header h1 {
  font-weight: 800;
  font-size: 3rem;
}

.page-header p {
  max-width: 700px;
  opacity: .9;
}

/* SECTION */

.section-padding {
  padding: var(--section-padding);
}

.section-title {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -12px;
  border-radius: 10px;
}

/* BUTTON */

.btn-primary-custom {
  background: var(--primary);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 14px;
}

.btn-primary-custom:hover {
  background: var(--primary-hover);
  color: white;
}

.btn-light {
  background: white;
  border: none;
  color: var(--primary);
  font-weight: 600;
}

.btn-news,
.btn-event,
.btn-book {
  background: var(--primary);
  color: white;
  border: none;
  font-weight: 600;
}

.btn-news:hover,
.btn-event:hover,
.btn-book:hover {
  background: var(--primary-hover);
  color: white;
}

/* BADGE */

.badge-custom,
.category-badge,
.book-category {
  background: rgba(253, 128, 46, .15);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
}

.badge-status {
  background: rgba(40, 167, 69, .15);
  color: #28a745;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
}

/* CARD GLOBAL */

.service-card,
.news-card,
.umkm-card,
.agenda-card,
.gallery-card,
.stat-card,
.event-card,
.book-card,
.profile-card {
  border: none;
  border-radius: var(--radius-lg);
  transition: .3s;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  height: 100%;
}

.service-card:hover,
.news-card:hover,
.umkm-card:hover,
.agenda-card:hover,
.gallery-card:hover,
.stat-card:hover,
.event-card:hover,
.book-card:hover,
.profile-card:hover {
  transform: translateY(-5px);
}

/* CARD IMAGES */

.news-card img,
.umkm-card img,
.gallery-card img,
.event-card img {
  height: 240px;
  object-fit: cover;
  width: 100%;
}

/* CARD CUSTOM */

.custom-card {
  border: none;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
}

.card-body-custom {
  padding: var(--card-padding-custom);
}

/* CARD MONOGRAFI */

.card-monografi {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ICON */

.info-icon,
.icon-box,
.contact-icon,
.service-icon {
  width: 65px;
  height: 65px;
  border-radius: var(--radius);
  background: rgba(253, 128, 46, .12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.info-icon {
  width: 70px;
  height: 70px;
  font-size: 30px;
}

/* SUMMARY CARD */

.summary-card {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
  height: 100%;
  transition: .3s;
}

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

.summary-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(253, 128, 46, .15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.summary-value {
  font-size: var(--font-size-value);
  font-weight: 800;
  color: var(--secondary);
}

.summary-label {
  color: var(--gray);
  margin-top: 8px;
}

/* BUDGET / CONTENT CARD */

.budget-card {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
}

/* INFO BOX */

.info-box {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
  height: 100%;
}

/* CHART CARD */

.chart-card {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: var(--card-padding);
  height: 100%;
}

.chart-title {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 25px;
}

/* PROGRESS */

.progress {
  border-radius: var(--radius-pill);
  background: #edf2f7;
}

.progress-bar {
  border-radius: var(--radius-pill);
}

/* TABLE EFFECT */

.table thead {
  background: var(--secondary);
  color: white;
}

.table tfoot {
  background: var(--gray-light);
}

.table tbody tr {
  transition: .2s;
}

.table tbody tr:hover {
  background: #fff8f3;
}

.table td {
  vertical-align: middle;
}

/* GALLERY */

.gallery-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* SIDEBAR */

.sidebar-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.sidebar-title {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 25px;
}

.sidebar-card {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: var(--card-padding);
  margin-bottom: 25px;
}

/* SCHEDULE / DATE */

.schedule-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px dashed #dee2e6;
}

.schedule-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.schedule-date {
  min-width: 90px;
  background: rgba(253, 128, 46, .12);
  color: var(--primary);
  border-radius: var(--radius);
  padding: 15px;
  text-align: center;
  font-weight: 700;
}

.schedule-date span {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.agenda-date {
  min-width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(253, 128, 46, .12);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.agenda-date strong {
  font-size: 1.4rem;
  line-height: 1;
}

/* EVENT META */

.event-meta {
  color: var(--gray);
  font-size: .9rem;
}

.event-meta i {
  color: var(--primary);
}

/* LINK */

.news-link {
  color: #ff7a00;
  text-decoration: none;
  transition: 0.2s ease;
}

.news-link:hover {
  color: #e66900;
  text-decoration: none;
}

/* POPULAR / MINI LIST */

.popular-item,
.mini-book {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.popular-item:last-child,
.mini-book:last-child {
  margin-bottom: 0;
}

.popular-item img,
.mini-book img {
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.popular-item img {
  width: 90px;
  height: 80px;
}

.mini-book img {
  width: 85px;
  height: 110px;
}

.popular-item h6,
.mini-book h6 {
  font-weight: 700;
  margin-bottom: 6px;
}

/* CONTACT / FLEX ROW */

.contact-item,
.service-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-item:last-child,
.service-item:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */

@media(max-width:768px) {

  .hero h1 {
    font-size: 2.3rem;
  }

  .section-padding {
    padding: var(--section-padding-mobile);
  }

  .page-header {
    text-align: center;
    padding: 70px 0 35px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .event-banner {
    height: 280px;
  }

  .event-content {
    padding: 25px;
  }

  .summary-value {
    font-size: var(--font-size-value-mobile);
  }

  .card-body-custom {
    padding: 25px;
  }

}

/* PAGINATION */

.pagination .page-link {
  border: none;
  color: var(--secondary);
  border-radius: 12px;
  margin: 0 5px;
  padding: 12px 18px;
  font-weight: 600;
}

.pagination .active .page-link {
  background: var(--primary);
  color: white;
}
