/* ============================================
   Global Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: #2d3748;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #2b6cb0; }

/* ============================================
   Header & Navigation
   ============================================ */
header {
  background: #fff;
  border-bottom: 1px solid #edf2f7;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { width: 200px; height: auto; }

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #4a5568;
  font-size: 1rem;
}

nav a:hover { color: #2b6cb0; }

/* ============================================
   Hamburger Menu
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #4a5568;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #edf2f7;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 1rem 1.5rem;
    border-top: 1px solid #edf2f7;
    font-size: 1.1rem;
  }
}

/* ============================================
   Footer
   ============================================ */
footer {
  border-top: 1px solid #edf2f7;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  background: #f7fafc;
  margin-top: 3rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #4a5568;
  text-decoration: none;
  background: #edf2f7;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

.footer-links a:hover { color: #2b6cb0; }

.footer-copy {
  color: #718096;
  font-size: 0.875rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  background: #2b6cb0;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.btn:hover { background: #215387; color: #fff; }

.btn-wide {
  display: block;
  text-align: center;
  background: #2b6cb0;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 2rem auto;
}

.btn-wide:hover { background: #215387; color: #fff; }

/* ============================================
   Page Layout Containers
   ============================================ */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
}

.content-section h1,
.content-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.content-section h1:first-child,
.content-section h2:first-child { margin-top: 0; }

.content-section p {
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.hero-text p {
  color: #2b6cb0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-image img { width: 100%; border-radius: 10px; }

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}

/* ============================================
   Mission Bullets
   ============================================ */
.mission {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.mission ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.9;
  color: #2d3748;
  font-size: 1rem;
}

/* ============================================
   Legal Cards
   ============================================ */
.legal-cards {
  max-width: 700px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #f7fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

.legal-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-card strong {
  display: block;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.legal-card p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-intro {
  max-width: 900px;
  margin: 3rem auto 2rem;
  padding: 0 1.5rem;
  text-align: center;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #2d3748;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}

.testimonial-card {
  border: 1px solid #edf2f7;
  border-radius: 8px;
  padding: 2rem 3rem;
}

.stars { color: #f0ad4e; margin-bottom: 1rem; font-size: 1rem; }

.testimonial-card p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: 700;
  color: #2d3748;
  font-size: 1rem;
}

/* ============================================
   Legitimacy Section
   ============================================ */
.legitimacy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
}

.legitimacy h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #1a202c;
  margin-bottom: 1rem;
}

.legitimacy p {
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.contact-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #1a202c;
  margin-bottom: 1rem;
}

.contact-section p {
  text-align: center;
  color: #2d3748;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 767px) {
  .hero { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 1.5rem; }
  nav { justify-content: center; flex-wrap: wrap; }
}

/* ============================================
   Photo Grids
   ============================================ */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.photo-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.photo-grid-2 img,
.photo-grid-3 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .photo-grid-2,
  .photo-grid-3 { grid-template-columns: 1fr; }
}

.photo-grid-3.portrait img {
  height: auto;
  object-fit: contain;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
  background: #e8f4ff;
  border: 1px solid #c7d9ee;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.name-fields {
  display: flex;
  gap: 1.25rem;
}

.name-fields > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.25rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.15);
}

.contact-form textarea {
  resize: vertical;
}

@media (max-width: 600px) {
  .name-fields { flex-direction: column; }
}

/* ============================================
   Donate Form
   ============================================ */
.donate-form-wrap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.donate-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #edf2f7;
}

.donate-form-wrap .form-group {
  margin-bottom: 1.25rem;
}

.donate-form-wrap .form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.donate-form-wrap input[type="text"],
.donate-form-wrap input[type="email"],
.donate-form-wrap input[type="number"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #2d3748;
  background: #f7fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.donate-form-wrap input:focus {
  border-color: #2b6cb0;
  box-shadow: 0 0 0 3px rgba(43,108,176,0.12);
  outline: none;
  background: #fff;
}

.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.amount-btn {
  padding: 0.85rem 0.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #f7fafc;
  color: #2d3748;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.amount-btn:hover {
  border-color: #2b6cb0;
  color: #2b6cb0;
  background: #ebf4ff;
}

.amount-btn.active {
  background: #2b6cb0;
  border-color: #2b6cb0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(43,108,176,0.3);
}

#stripe-card-element {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  background: #f7fafc;
  transition: border-color 0.2s;
  margin-bottom: 1.25rem;
}

#stripe-card-element:focus-within {
  border-color: #2b6cb0;
  box-shadow: 0 0 0 3px rgba(43,108,176,0.12);
  background: #fff;
}

.donate-form-wrap .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 8px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 15px rgba(43,108,176,0.3);
}

.donate-form-wrap .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43,108,176,0.4);
}

.recurring-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: #f7fafc;
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
}

.recurring-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2b6cb0;
  cursor: pointer;
  flex-shrink: 0;
}

.recurring-wrap label {
  margin: 0;
  font-weight: 400;
  color: #4a5568;
  cursor: pointer;
}

@media (max-width: 600px) {
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .donate-form-wrap { padding: 1.5rem; }
}