/* ====== General Styles ====== */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* ====== Hero Banner ====== */
.hero-banner {
  background-image: url('/public/site/images/wajahs-banner.jpg'); /* Replace with your banner path */
  background-size: cover;
  background-position: center;
  height: 350px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner h1 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero-banner a.btn {
  font-size: 1.1em;
  padding: 10px 20px;
  border-radius: 5px;
}

/* ====== Featured Articles Section ====== */
.featured-articles {
  padding: 40px 20px;
  background-color: #ffffff;
  border-top: 3px solid #004d40; /* Trans-Sahara green accent */
}

.featured-articles h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #004d40;
}

.article-card {
  background: #f1f1f1;
  padding: 20px;
  margin: 15px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #333;
}

.article-card p {
  font-size: 0.95em;
  color: #555;
}

/* ====== Footer ====== */
.site-footer {
  background-color: #004d40;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.site-footer a {
  color: #ffd54f;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
