/* ===== NAVBAR STYLE (punyamu) ===== */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-image: url("./img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container {
  color: aliceblue;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: cornflowerblue;
  padding: 20px;
  font-size: 20px;
}

ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

ul li a {
  text-decoration: none;
  color: aliceblue;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 200ms ease, color 200ms ease;
}

ul li a:hover {
  background-color: white;
  color: black;
}

ul li a.active {
  background-color: white;
  color: black;
}

/* ===== ABOUT PAGE STYLE (tambahan) ===== */
.about-wrap {
  width: min(1100px, 92%);
  margin: 30px auto 60px;
}

.about-hero {
  text-align: center;
  color: black;
  padding: 30px 18px;
  margin-bottom: 22px;
}

.about-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 10px;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.about-hero p {
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.6;
}

.about-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.about-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 10px;
  color: #0f172a;
  border-left: 6px solid cornflowerblue;
  padding-left: 10px;
}

.about-card p {
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.7;
  margin-bottom: 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.pill {
  background: rgba(100, 149, 237, 0.10);
  border: 1px solid rgba(100, 149, 237, 0.25);
  border-radius: 12px;
  padding: 14px;
}

.pill h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f172a;
}

.pill p {
  font-size: 14px;
  margin: 0;
}

.tagline {
  text-align: center;
  margin-top: 16px;
  font-size: 18px;
  color: #0f172a;
}

.footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 18px 12px;
  margin-top: 40px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  ul {
    flex-direction: column;
    gap: 10px;
  }

  .about-hero h1 {
    font-size: 32px;
  }
}

/* ===== ANIMASI MASUK BERTAHAP (TANPA UBAH HTML) ===== */
.fade-step {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-step.show {
  opacity: 1;
  transform: translateY(0);
}
