@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f7f7f7;
  color: #222;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background-color: #1f6000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: 60px;
}

.logo .text h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.logo .text p {
  font-size: 13px;
  color: #d0ffd0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f3ffaf;
}

nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #f3ffaf;
  border-radius: 2px;
}

/* ===== LOGIN BUTTON ===== */
.login-btn {
  background-color: #f3ffaf;
  color: #1f6000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.login-btn i {
  font-size: 18px;
}

.login-btn:hover {
  background-color: #d9f2d5;
  color: #0e3d00;
}

/* ===== BERITA SECTION ===== */
.berita-section {
  margin-top: 120px;
  padding: 40px 60px 80px;
  text-align: center;
  background: #fff;
}

.berita-section h1 {
  color: #1f6000;
  font-size: 32px;
  margin-bottom: 10px;
}

.subtext {
  color: #555;
  font-size: 15px;
  margin-bottom: 50px;
}

.berita-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
}

.berita-card {
  background: #e9f9e7;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
}

.berita-card:hover {
  transform: translateY(-5px);
  background: #d9f2d5;
}

.berita-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.berita-content {
  padding: 20px;
}

.berita-content h3 {
  color: #1f6000;
  font-size: 20px;
  margin-bottom: 10px;
}

.berita-content p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: #1f6000;
  color: white;
  padding: 40px 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.logo-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-footer img {
  width: 60px;
  height: 60px;
}

.contact h3 {
  margin-bottom: 8px;
}

.contact p {
  font-size: 14px;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 30px;
    flex-wrap: wrap;
  }

  nav ul {
    gap: 15px;
    font-size: 13px;
  }
}
