body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #f5f5dc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #774b1e;
  padding: 20px 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #f5f5dc;
}

.logo-img {
  width: 50px;
  height: 47px;
  object-fit: contain;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #f5f5dc;
  font-weight: 500;
  font-size: 20px;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: #a47149;
}

/* Artikel Section */
.article-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.section-title {
  font-size: 32px;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}

.highlight {
  color: #a47149;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-card {
  display: flex;
  gap: 20px;
  background-color: #a47149;
  border: 1px solid #a47149;
  border-radius: 12px;
  padding: 20px;
  align-items: center;
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.article-content {
  flex: 1;
}

.article-content h3 {
  margin-top: 0;
  color: #000000;
  margin-bottom: 10px;
}

.article-content p {
  font-size: 15px;
  line-height: 1.5;
  color: #f5f5dc;
  margin-bottom: 10px;
}

/* Tombol Baca Selengkapnya */
.btn-read,
.btn-link {
  display: inline-block;
  margin-top: 10px;
  background-color: #774b1e;
  color: #f5f5dc;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #5e3918;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-read:hover,
.btn-link:hover {
  background-color: #5e3918;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #ffffff;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #a47149;
}

.footer-bottom p {
  font-size: 13px;
  color: #000000;
  margin: 75px 0 0 0;
}

@media (max-width: 768px) {
  /* Header responsif */
  .header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  nav ul li a {
    font-size: 18px;
    width: 100%;
    padding: 8px 0;
  }

  /* Judul section */
  .section-title {
    font-size: 24px;
    padding: 0 10px;
  }

  /* Artikel Card */
  .article-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
  }

  .article-card img {
    width: 100%;
    height: auto;
  }

  .article-content h3 {
    font-size: 20px;
  }

  .article-content p {
    font-size: 14px;
  }

  .btn-read,
  .btn-link {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* Container */
  .container {
    padding: 0 15px;
  }

  /* Footer */
  .footer-bottom p {
    font-size: 12px;
    margin-top: 40px;
  }
}
