* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html, body {
  height: 100%;
}

main {
  flex: 1;
}

.warta-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero {
  background-image: url("images/sejarahhero.png");
  background-size: cover;
  background-position: center;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 9, 26, 0.8);
  z-index: 0;
}

.hero h1 {
  position: relative;
  font-size: 3rem;
  font-weight: 800;
  z-index: 1;
}

.content {
  padding: 2rem 0;
}

.description {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.warta-list {
  list-style: none;
}

.warta-list li {
  margin-bottom: 0.7rem;
}

.warta-list a {
  color: #3366ff;
  text-decoration: none;
}

.warta-list a:hover {
  text-decoration: underline;
}

footer {
  background-color: #15091A;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 300px; /* Ukuran banner lebih kecil di HP */
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }

  .content {
    padding: 1rem;
  }
}

