body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; line-height: 1.5; margin:0; padding:0; color:#222; }
.hero { padding:40px; background:#f7f9fc; text-align:center; }
.btn { display:inline-block; padding:10px 16px; background:#2b6cb0; color:#fff; text-decoration:none; border-radius:6px; }
.grid { display:flex; flex-wrap:wrap; gap:16px; }
.card { border:1px solid #eee; padding:12px; width:220px; border-radius:8px; background:#fff; }
.page-hero {
  background: #1d976c;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.page-content, .donate-form, .church-list {
  padding: 40px 20px;
}

.church-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.church-card {
  width: 300px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.church-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.donate-form form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.donate-form input, .donate-form select, .donate-form button {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.page-hero {
  background: #1d976c;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.page-content, .donate-form, .church-list {
  padding: 40px 20px;
}

.church-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.church-card {
  width: 300px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.church-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.donate-form form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.donate-form input, .donate-form select, .donate-form button {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.container { width: 90%; max-width: 1200px; margin: auto; }
    .flex-between { display: flex; justify-content: space-between; align-items: center; }

    /* Header */
    header.site-header {
      background: linear-gradient(90deg, #1d976c, #0d3b3a);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 10;
    }
    header .logo img {
  height: 50px; /* keep the actual header height unchanged */
  transform: scale(2.0); /* visually enlarge the logo */
  transform-origin: left center; /* anchor the scale to the left side */
}

    .nav-links a {
      color: #fff; margin: 0 12px; text-decoration: none; font-weight: 500; transition: 0.3s;
    }
    .nav-links a:hover { color: #ffd369; }

    /* Buttons */
    .btn-primary, .btn-secondary {
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
      font-weight: 600;
      transition: 0.3s;
    }
    .btn-primary { background: #1d976c; color: #fff; }
    .btn-primary:hover { background: #138f5a; }
    .btn-secondary { background: #fff; color: #0d3b3a; border: 2px solid #0d3b3a; }
    .btn-secondary:hover { background: #0d3b3a; color: #fff; }

    /* Hero */
  .hero {
  position: relative;
  color: #fff;
  text-align: center;
  min-height: 100vh;   /* full screen height */
  display: flex;
  align-items: center;  /* center content vertically */
  justify-content: center;
  overflow: hidden;
  background: url('assets/images/hero-placeholder.jpg') no-repeat center center/cover; 
  /* fallback background */
}

.hero video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 59, 58, 0.65); /* overlay tint */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  z-index: 3;
  cursor: pointer;
  animation: bounce 2s infinite;
  opacity: 0.85;
}

.scroll-down:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}
/* Header / Navbar */
.site-header {
  background: #0d3b3a;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  height: 70px; /* logo bigger but not stretching header */
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #1d976c;
}

.btn-nav {
  background: #1d976c;
  padding: 8px 16px;
  border-radius: 30px;
  color: #fff !important;
  transition: background 0.3s;
}

.btn-nav:hover {
  background: #138f5d;
}
/* Header / Navbar */
.site-header {
  background: #0d3b3a;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1d976c;
}

/* Donate button */
.nav-links .btn-primary {
  background: #1d976c;
  padding: 8px 16px;
  border-radius: 30px;
  color: #fff !important;
  transition: background 0.3s;
}

.nav-links .btn-primary:hover {
  background: #138f5d;
}

