/* =========================
   RESPONSIVE SECTION (DARI INDEX.PHP)
========================= */
.section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* =========================
   GLOBAL ANIMATION
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   PREMIUM BACKGROUND
========================= */
body {
  background: linear-gradient(to bottom, #f9fafb, #eef2f7);
}

/* =========================
   CARD (MEWAH / GLASS)
========================= */
.card-hover {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   IMAGE EFFECT (ABOUT)
========================= */
.about-image img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* =========================
   HERO IMAGE (CERITA)
========================= */
.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* =========================
   STORY CARD (CERITA LIST)
========================= */
.story-card {
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.story-card img {
  transition: transform 0.5s ease;
}

.story-card:hover img {
  transform: scale(1.1);
}

/* =========================
   PAGINATION
========================= */
.pagination a {
  transition: all 0.3s ease;
}

.pagination a:hover {
  transform: translateY(-2px);
}

/* =========================
   QUOTE BOX
========================= */
.quote-box {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

/* =========================
   BUTTON PREMIUM
========================= */
a.bg-green-600 {
  transition: all 0.3s ease;
}

a.bg-green-600:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

a.bg-white {
  transition: all 0.3s ease;
}

a.bg-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* =========================
   TYPOGRAPHY IMPROVEMENT
========================= */
h1, h2 {
  letter-spacing: 0.5px;
}

/* =========================
   SECTION TRANSITION
========================= */
section {
  transition: all 0.3s ease;
}