/* ================== RESET DASAR ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(160deg, #121212, #1a1a1a);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

/* ================== HEADER ================== */
.full-header {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 60px;
  margin-right: 15px;
}

.brand-text {
  font-size: 1.8rem;
  color: #111;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav ul li a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffffff;
}

/* ================== KONTEN BERITA ================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #ffd700;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card-link {
  text-decoration: none;
  color: inherit;
}

.news-card {
  background-color: #000000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.563);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 191, 1, 0.6);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card-content {
  padding: 1.5rem;
}

.news-card-content h4 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.news-card-content p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.news-date {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

/* ================== FOOTER ================== */
.footer {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #111;
  padding: 2rem 1rem 1rem;
  text-align: center;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 1rem;
}

.footer-left, .footer-right {
  flex: 1 1 300px;
}

.footer-left h4,
.footer-left p,
.footer-left a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-socials a {
  color: #111;
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ================== RESPONSIF ================== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-left, .footer-right {
    flex: 1 1 100%;
  }
}
