body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background-color: #f7f9f8;
  padding-top: 70px;
}

/* Logo */
.logo {
  height: 40px;
}

.brand-text {
  font-weight: 600;
  color: #1f7f64;
}

/* Hero Section */
.hero-section {
  min-height: 80vh;
  background: 
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("../medias/masjid.webp") center center / cover no-repeat;
}


.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f7f64;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

/* Footer */
.footer {
  background-color: #ffffff;
  padding: 15px 0;
  border-top: 1px solid #eaeaea;
  font-size: 0.9rem;
  color: #666;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.9rem;
  }
}



