/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;

  /* BACKGROUND GAMBAR */
  background-image: url("../libs/uncp.png"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  /* fallback kalau gambar gagal */
  background-color: #0f172a;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* SEMAKIN BESAR = SEMAKIN GELAP */
  z-index: -1;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
}

/* LOGO (NO BACKGROUND, LEBIH BESAR) */
.logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* JUDUL BESAR */
.title {
  font-size: 40px;
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

/* SUB JUDUL UNCP */
.subtitle {
  font-size: 50px;
  margin: 10px 0;
  font-weight: 600;
  color: #ffffff;
}

/* DESKRIPSI */
.desc {
  font-size: 20px;
  color: #ffffff;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

/* ===== CARD MODERN (TIDAK MONOTON) ===== */
.card {
  display: block;
  text-decoration: none;
  padding: 22px;
  border-radius: 16px;

  /* gradient biar hidup */
  background: linear-gradient(135deg, #1e293b, #0f172a);

  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);

  transition: 0.3s ease;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(59,130,246,0.25);
}

/* CARD TITLE */
.card h3 {
  margin: 0;
  font-size: 18px;
  color: #e2e8f0;
  line-height: 1.4;
}

/* CARD TEXT OPTIONAL */
.card p {
  margin-top: 8px;
  font-size: 14px;
  color: #94a3b8;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 30px;
  font-size: 13px;
  color: #64748b;
}