/* Reset / Global */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -------------------------
   Header / Navbar
------------------------- */
.site-header {
  background: linear-gradient(90deg, #1d976c, #0d3b3a);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .logo img {
  height: 70px; /* bigger logo */
}

.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: #ffd369;
}

.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;
}

/* -------------------------
   Hero Section
------------------------- */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  min-height: 100vh; /* full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('assets/images/hero-placeholder.jpg') no-repeat center center/cover;
}

.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);
  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); }
}

/* -------------------------
   Page Hero (for About/Other Pages)
------------------------- */
.page-hero {
  background: #1d976c;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

/* -------------------------
   Page Content / Shared Sections
------------------------- */
.page-content,
.donate-form,
.church-list {
  padding: 40px 20px;
}

/* -------------------------
   Church Cards
------------------------- */
.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
------------------------- */
.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;
}

/* -------------------------
   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;
}
