/* ===== Varu Section ===== */
.Varu {
  background: linear-gradient(rgba(47,62,47,0.8), rgba(47,62,47,0.8)), url('https://via.placeholder.com/1600x600') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px 100px;
}

.Varu-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.Varu-content span {
  color: #89c96b; /* green highlight */
}

.Varu-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn {
  background-color: #89c96b;
  color: #2f3e2f;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.btn:hover {
  background-color: #7ab35f;
}

/* ===== Latest Section ===== */
.latest {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.latest h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 320px;
  text-align: left;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 15px 15px 5px;
  color: #2f3e2f;
}

.card p {
  padding: 0 15px 15px;
  font-size: 0.95rem;
  color: #555;
}

.read-more {
  display: inline-block;
  color: #2f3e2f;
  font-weight: bold;
  padding: 0 15px 15px;
  text-decoration: none;
}

.read-more:hover {
  color: #89c96b;
}

/* ===== Categories ===== */
.categories {
  background: #2f3e2f;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.categories .category-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.category {
  background: #89c96b;
  color: #2f3e2f;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.category:hover {
  background: #7ab35f;
}

/* ===== About Section ===== */
.about {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
  color: #333;
}

/* ===== Footer ===== */
.footer {
  background: #2f3e2f;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .Varu-content h1 {
    font-size: 2rem;
  }

  .Varu {
    padding: 100px 15px 80px;
  }
}
