body {
  font-family: sans-serif;
  margin: 0;
  background: #111;
  color: white;
  text-align: center;
  padding-top: 100px; /* biar konten ga ketiban header */
}

/* === NAVBAR / HEADER === */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  border-bottom: 1px solid transparent; /* bisa ubah ke #444 kalau mau garis */
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.logo {
  height: 40px;
}

nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

nav a:hover {
  color: #00d9ff;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  text-align: center;
  color: white;
  margin-top: 100px; /* offset supaya gak ketiban navbar */
}

.hero-banner {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

/* === INTRO (JUDUL + TAGLINE + BUTTON) === */
.intro {
  text-align: center;
  padding: 40px 20px;
  background-color: #111;
  color: white;
}

.title-img {
  max-width: 90%;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.intro .tagline {
  font-style: italic;
  margin: 20px 0;
  color: #ccc;
}

/* === BUTTON === */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #00d9ff;
  color: #111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #00aacc;
}

/* === SECTION UMUM === */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00d9ff;
}

/* === KARTU (TALENT, PROGRAM, DST) === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

/* === MOBILE RESPONSIVE === */
@media screen and (max-width: 768px) {
  body {
    padding: 20px;
    padding-top: 100px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .card-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .card {
    width: 90%;
    padding: 15px;
    font-size: 1rem;
  }

  nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 10px;
  }

  nav a {
    font-size: 0.95rem;
  }

  .hero-banner {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .title-img {
    max-width: 80%;
  }

  .intro .tagline {
    font-size: 1rem;
  }
}
