body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: white;
  margin: 0;
  padding: 0;
}

/* ✅ Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  color: #39ff14;
  text-align: center;
  padding: 12px 0;
  font-size: 26px;
  font-weight: bold;
  font-family: 'Permanent Marker', cursive;
  z-index: 2000;
  border-bottom: 2px solid limegreen;
}

/* ✅ Navbar */
nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px;
  border-bottom: 2px solid limegreen;
  position: sticky;
  top: 58px;
  z-index: 1500;
  background-color: #000;
}

nav a {
  font-family: 'Coming Soon', cursive;
  color: #ccc;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  font-size: 18px;
}

nav a:hover {
  color: limegreen;
  text-decoration: underline;
}

/* ✅ Grid & Card */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 100px 30px 60px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
  cursor: pointer;
  box-shadow: 0 0 10px #111;
}

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

.card img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s ease;
}

.card-title {
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  text-decoration: none; /* ✅ Hilangkan garis bawah jika ada */
}

/* ✅ Hapus underline dari judul kartu yang dibungkus <a> */
.card a {
  text-decoration: none;
}

/* ✅ Tanggal di kartu */
.card-date {
  color: #ccc;
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

a.card-link {
  text-decoration: none;
}

/* ✅ Tombol Lamar Sekarang */
.apply-button {
  text-align: center;
  margin: 2rem 0;
}

.apply-button a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: limegreen;
  color: black;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.apply-button a:hover {
  background-color: #267a1a;
  color: white;
  transform: scale(1.05);
}

/* ✅ Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1a1a1a;
  border-top: 2px solid limegreen;
  padding: 10px 0;
  text-align: center;
  z-index: 100;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 15px;
  font-family: 'Coming Soon', cursive;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: limegreen;
}

/* ✅ Responsif */
@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }

  nav a, .footer-links a {
    font-size: 16px;
  }

  .card-title {
    font-size: 18px;
    padding: 10px;
  }

  .grid-container {
    padding: 120px 10px 80px;
  }

  footer {
    font-size: 14px;
  }
}

/* ✅ Markdown content styling */
.markdown-content {
  font-family: Arial, sans-serif;
  color: white;
  line-height: 1.6;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3,
.markdown-content h4 {
  font-family: Arial, sans-serif;
  color: #39ff14;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.markdown-content p,
.markdown-content li {
  color: white;
  margin: 1em 0;
}

.markdown-content ul,
.markdown-content ol {
  padding-left: 2em;
  margin: 1em 0;
}

.markdown-content a {
  color: #00ffff;
  text-decoration: underline;
}

.markdown-content blockquote {
  border-left: 4px solid limegreen;
  padding-left: 1em;
  color: #ccc;
  font-style: italic;
  margin: 1em 0;
}

.markdown-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
  border-radius: 10px;
}

/* ✅ Halaman Lowongan */
.job-posting {
  max-width: 800px;
  margin: 100px auto 80px;
  padding: 1rem;
  font-family: Arial, sans-serif;
  color: white;
}

.job-title {
  font-family: Arial, sans-serif;
  color: limegreen;
  text-align: center;
  margin-bottom: 1.5rem;
}

.job-image {
  display: block;
  max-width: 100%;
  max-height: 500px;
  height: auto;
  margin: 0 auto 2rem auto;
  border-radius: 10px;
}

/* ✅ Tambahan khusus untuk gambar di kartu */
.card img,
.card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.card img {
  border-radius: 10px;
  object-fit: cover;
  height: 200px;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

#search {
  margin-left: auto;
  padding: 6px 12px;
  border: none;
  border-radius: 8px;
  font-family: 'Coming Soon', cursive;
  font-size: 14px;
  max-width: 200px;
}
nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
