/* style.css - Eco Wana Lestari
   Gunakan bersama Bootstrap 5
*/

/* Fonts */
:root {
  --green-eco: #2E7D32;
  --brown-earth: #795548;
  --muted: #6c757d;
}

/* BRAND */
.brand-mark {
  font-size: 1.5rem;
}
.brand-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--green-eco);
  font-size: 1.05rem;
}

/* HERO */
.hero-section {
  min-height: 66vh;
  position: relative;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(1.05);
  z-index: 0;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* Cards */
.card-img-top {
  height: 210px;
  object-fit: cover;
}

/* Buttons */
.btn-success {
  background-color: var(--green-eco);
  border-color: var(--green-eco);
}
.btn-success:hover {
  background-color: #27692a;
  border-color: #27692a;
}

/* IMPACT SECTION */
.impact-box {
  background-color: #f8f9fa; /* sama seperti bg-light */
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  position: relative;
  z-index: 3; /* pastikan muncul di atas hero overlay */
}

.impact-box h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--green-eco);
}

.impact-box p,
.impact-box li {
  color: var(--muted);
}

.impact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}


/* Footer */
footer a.link-light:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero-section { min-height: 60vh; }
  .card-img-top { height: 180px; }
}

/* Accessibility focus */
a:focus, button:focus {
  outline: 3px solid rgba(46,125,50,0.25);
  outline-offset: 2px;
}
