/* =========================
   BASE
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #111827;
  min-height: 100vh;
}


/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, rgba(17,24,39,0.92), rgba(31,41,55,0.92));
  backdrop-filter: blur(6px);
  z-index: 100;
}

.logo a {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

.navbar ul li a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  background: rgba(16,185,129,0.25);
}


/* =========================
   HERO
========================= */
.hero-container {
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(17,24,39,0.35), rgba(17,24,39,0.65)),
    url("alutista.jpg") center / cover no-repeat;
}

.hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 24px;
  text-shadow: 0 4px 14px rgba(0,0,0,0.4);
  color: #fff;
}

.hero-content h1 span {
  display: block;
  color: #6ee7b7;
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
}


/* =========================
   BUTTON (GLOBAL CTA)
========================= */
.cta-button {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  background: #10b981;
  color: #022c22;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.cta-button:hover {
  background: #34d399;
  transform: translateY(-2px);
}


/* =========================
   FOOTER
========================= */
footer {
  background: linear-gradient(90deg, #111827, #1f2937);
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,0.85);
}


/* =========================
   ALUTSISTA LIST PAGE
========================= */
.alutsista-page {
  padding-top: 140px;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}


/* grid */
.alutsista-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .alutsista-grid {
    grid-template-columns: 1fr;
  }
}


/* card */
.alutsista-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.alutsista-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}


/* image */
.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* content */
.card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 6px;
}

.card-content h3 {
  margin: 10px 0 6px;
}

.card-content p {
  font-size: 0.9rem;
  color: #6b7280;
}

.card-content ul {
  margin: 8px 0 12px;
  padding-left: 16px;
}


/* button */
.btn-lihat {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  margin-top: auto;
  background: #0f172a;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
}


/* =========================
   DETAIL PAGE
========================= */
.detail-wrapper {
  max-width: 1100px;
  margin: 120px auto 60px;
  padding: 20px;
}

.detail-title {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}


/* left */
.wiki-section {
  margin-bottom: 30px;
}

.wiki-section h2 {
  padding: 10px 15px;
  background: #0b1f3a;
  color: #fff;
  border-radius: 8px;
}

.wiki-content {
  line-height: 1.7;
}


/* right */
.detail-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-specs {
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}


/* back button */
.btn-back {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 20px;
  background: #111827;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
}


/* =========================
   KONTAK PAGE
========================= */
.kontak-page {
  padding-top: 140px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.note {
  text-align: center;
  color: #666;
}