/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background-color: #f8f8f8;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.logo {
  height: 80px;
  vertical-align: middle;
}
.logo {
  background-color: #000;  /* Warna hitam */
  padding: 10px;           /* Opsional: beri ruang di sekitar logo */
  border-radius: 4px;      /* Opsional: bikin sudut agak membulat */
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

main {
  padding: 20px 0;
}

h1, h2 {
  color: #222;
}

.berita-terbaru {
  margin-top: 40px;
}

.berita-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.berita-grid article {
  width: calc(50% - 10px);
  background: #fafafa;
  border: 1px solid #eee;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.berita-grid img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

footer {
  background: #f0f0f0;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
  font-size: 14px;
}

.detail-berita img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 5px;
}

.meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.btn-kembali {
  display: inline-block;
  margin-top: 30px;
  text-decoration: none;
  background: #333;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
}

.kategori-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.kategori-list li {
  margin-bottom: 15px;
  font-size: 18px;
}

.kategori-list a {
  color: #0077cc;
  text-decoration: none;
}

.kategori-list a:hover {
  text-decoration: underline;
}

main ul {
  padding-left: 20px;
  list-style: disc;
  margin-bottom: 20px;
}

h2 {
  margin-top: 30px;
  color: #111;
}

.form-kontak {
  margin-top: 20px;
  max-width: 600px;
}

.form-kontak label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

.form-kontak input,
.form-kontak textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-kontak button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-kontak button:hover {
  background: #005fa3;
}

.info-kontak {
  margin-top: 30px;
}

.header-buttons {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.header-buttons .btn {
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.login-btn {
  background-color: #0077cc;
  color: white;
}

.login-btn:hover {
  background-color: #005fa3;
}

.daftar-btn {
  background-color: #28a745;
  color: white;
}

.daftar-btn:hover {
  background-color: #1e7e34;
}

