body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
}

/* ====== HERO SECTION ====== */

.hero-section {
  background: linear-gradient(135deg, #0a1a2f, #142f50);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.radial-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0.4;
  backdrop-filter: blur(0.5px);
}

.hero-text {
  z-index: 2;
  color: #fff;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 550;
  letter-spacing: 6px;
  margin-bottom: 0.5rem;
}

.hero-text .subtitle {
  font-size: 3.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #aadfff;
  font-weight: 800;
}

.hero-text .tagline {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: #b6c9de;
  font-weight: 300;
}


/* Animasi FadeUp */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 1s ease-out forwards;
}

.fade-up-delay-1 {
  animation-delay: 0.2s;
}

.fade-up-delay-2 {
  animation-delay: 0.4s;
}

.fade-up-delay-3 {
  animation-delay: 0.6s;
}

/* ======================
   JUDUL SECTION
====================== */

/* Section Title */
.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
    position: relative;
}


/* ====== CONTAINER UMUM ====== */
.warta-list {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem; /* diperbesar sedikit */
    margin: 2rem auto;
    max-width: 300px; /* menengahkan konten dan membatasi lebar */
}

/* ====== WARTA ITEM ====== */
.warta-item {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid #e3e3e3;
    font-size: 1.05rem; /* sedikit dibesarkan */
}

.tanggal {
    font-weight: 600;
    color: #0d2c5a;
    letter-spacing: 0.5px;
    font-size: 0.95rem; /* diperbesar */
    min-width: 140px;
}

.judul h5 {
    color: #0d2c5a;
    margin-bottom: 4px;
    font-size: 1.1rem; /* diperbesar */
}

.judul p {
    color: #666;
    font-size: 0.95rem; /* diperbesar */
}

/* ====== TOMBOL LIHAT ====== */
.btn-lihat {
    font-size: 0.875rem;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #002147;
    color: #002147;
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-lihat:hover {
    background-color: #002147;
    color: #ffffff;
    text-decoration: none;
}

/* ====== TOMBOL DOWNLOAD ====== */
.btn-download {
    font-size: 0.875rem;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #002147;
    background-color: #f8f9fa;
    color: #002147;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-download:hover {
    background-color: #002147;
    color: #ffffff;
    text-decoration: none;
}


/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .warta-list {
        padding: 1rem;
    }

    .warta-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tanggal {
        font-size: 0.85rem;
    }

    .judul h5 {
        font-size: 1rem;
    }

    .judul p {
        font-size: 0.9rem;
    }

    .download-icon {
        align-self: flex-end;
    }
}
