/* ===== style.css ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  line-height: 1.5;
  scroll-behavior: smooth;
}

:root {
  --primary-green: #2e7d32;
  --accent-orange: #f57c00;
  --accent-red: #d32f2f;
  --light-bg: #f9fafb;
  --text-dark: #212121;
  --text-soft: #424242;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.1);
  --border-radius-card: 1.5rem;
  --border-radius-btn: 2rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
  border-radius: 4px;
  margin-top: 0.4rem;
}

/* buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius-btn);
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background-color: var(--primary-green);
  color: white;
  box-shadow: 0 6px 14px rgba(46,125,50,0.25);
}
.btn-primary:hover {
  background-color: #1e5a22;
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: var(--accent-orange);
  color: white;
}
.btn-secondary:hover {
  background-color: #e06b00;
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}
.btn-outline:hover {
  background: var(--primary-green);
  color: white;
}
.btn-large {
  font-size: 1.2rem;
  padding: 1rem 2.8rem;
}

/* header */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.8rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.logo-text {
  font-weight: 700;
  line-height: 1.2;
}
.logo-text .line1 {
  font-size: 1.4rem;
  color: var(--primary-green);
}
.logo-text .line2 {
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.4px;
}
.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dark);
  transition: 0.2s;
  font-size: 1rem;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}
.donate-nav-btn {
  background: var(--accent-red);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(211,47,47,0.25);
}
.donate-nav-btn:hover {
  background: #b71c1c;
  color: white !important;
}
.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--primary-green);
  cursor: pointer;
}
#menu-toggle {
  display: none;
}
#menu-toggle:checked ~ .main-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: white;
  padding: 1rem 0;
  gap: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin-top: 1rem;
}

/* hero */
.hero {
  background: linear-gradient(115deg, #f0f7e8 0%, #fff4e5 100%);
  padding: 3.5rem 0 4rem;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1 1 400px;
}
.hero-badge {
  background: var(--accent-orange);
  color: white;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title span {
  color: var(--primary-green);
  border-bottom: 4px solid var(--accent-orange);
}
.hero-motto {
  font-size: 1.2rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
}
.hero-image {
  flex: 1 1 300px;
  background: #d9e3cf;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-hover);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/Slide3.jpg');
  background-size: cover;
  background-position: center;
}
.hero-image .placeholder-text {
  background: rgba(255,255,255,0.75);
  padding: 0.8rem 1.5rem;
  border-radius: 60px;
  backdrop-filter: blur(4px);
  font-weight: 600;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.value-card, .facility-card, .program-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  border: 1px solid #edf2e9;
}
.value-card:hover, .facility-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}
.value-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}
.scripture {
  color: var(--accent-orange);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 0.5rem;
}
.facility-icon {
  font-size: 2.2rem;
  color: var(--accent-red);
}

/* testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 2rem;
  padding: 2rem;
  flex: 1 1 280px;
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--primary-green);
}
.testimonial-card i {
  color: var(--accent-orange);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testimonial-author {
  font-weight: 600;
  margin-top: 1rem;
  color: var(--primary-green);
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.gallery-item {
  background: #cbd5c0;
  height: 180px;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  transition: 0.3s;
}
.gallery-item:hover {
  transform: scale(1.02);
}
.full-gallery .gallery-item {
  height: 220px;
}

/* sponsor cta */
.sponsor-cta {
  background: linear-gradient(135deg, var(--primary-green), #1d4420);
  border-radius: 3rem;
  padding: 3rem;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0;
}
.sponsor-cta h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.urgent-badge {
  background: #ffffff30;
  border-radius: 60px;
  padding: 1rem 2rem;
  margin-top: 1rem;
  display: inline-block;
}

/* footer */
.footer {
  background: #1e1e1e;
  color: #ddd;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer a {
  color: #ccc;
  text-decoration: none;
}
.footer a:hover {
  color: var(--accent-orange);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.social-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 1.4rem;
}
.copyright {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1.5rem;
}

/* donate page */
.donate-hero {
  background: linear-gradient(115deg, #e8f5e9 0%, #fff3e0 100%);
  padding: 3rem 0;
  text-align: center;
}
.donate-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.donate-hero .highlight {
  color: var(--primary-green);
  border-bottom: 4px solid var(--accent-orange);
}
.donate-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1rem auto 2rem;
  color: var(--text-soft);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.impact-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid #e0f0e0;
}
.impact-card i {
  font-size: 2.8rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}
.impact-card h3 {
  font-size: 1.8rem;
  color: var(--accent-red);
}
.donation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
}
.donation-card {
  flex: 1 1 280px;
  background: var(--light-bg);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 6px solid var(--primary-green);
}
.donation-card h3 {
  font-size: 2rem;
  color: var(--primary-green);
}
.donation-card .price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-red);
  margin: 0.5rem 0;
}
.project-progress {
  background: var(--white);
  border-radius: 2rem;
  padding: 2.5rem;
  margin: 4rem 0;
  box-shadow: var(--shadow-hover);
}
.progress-bar-bg {
  background: #e0e0e0;
  height: 28px;
  border-radius: 40px;
  margin: 1.5rem 0;
}
.progress-fill {
  background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
  height: 28px;
  border-radius: 40px;
  width: 32%;
}
.progress-stats {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.way-item {
  background: var(--white);
  border-radius: 1.8rem;
  padding: 2rem 1rem;
  text-align: center;
  border: 1px solid #cfd8cf;
}
.way-item i {
  font-size: 2.2rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}
.donation-form-section {
  background: var(--light-bg);
  border-radius: 3rem;
  padding: 3rem;
  margin: 4rem 0;
}
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.form-col {
  flex: 1 1 300px;
}
.form-group {
  margin-bottom: 1.5rem;
}
label {
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
}
input, select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 60px;
  font-family: inherit;
  font-size: 1rem;
}
.radio-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.radio-group input {
  width: auto;
  margin-right: 0.3rem;
}

/* about page */
.faq-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
.faq-item {
  background: var(--light-bg);
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.faq-item a{
  color: #2e7d32;
  text-decoration: none;
  font-weight: bolder;
}
/* responsive */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  h2 {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .donate-hero h1 {
    font-size: 2.5rem;
  }
  .footer-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}