*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:  #0a2342;
  --red:   #c8102e;
  --gold:  #c9a84c;
  --white: #ffffff;
  --gray:  #555555;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 740px; }
.text-center { text-align: center; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
}
.hero-overlay { padding: 80px 0 100px; }

.flag-stripe {
  height: 6px;
  background: linear-gradient(to right, var(--red) 50%, var(--gold) 50%);
  margin-bottom: 48px;
  border-radius: 2px;
}

.hero-content { text-align: center; color: var(--white); }

.district-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 8px;
}

.hero-tagline {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200,16,46,0.45);
}
.btn-primary:hover {
  background: #a80d26;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.5);
}
.btn-donate {
  background: var(--red);
  color: var(--white);
  font-size: 1.15rem;
  padding: 20px 56px;
  box-shadow: 0 4px 24px rgba(200,16,46,0.4);
}
.btn-donate:hover {
  background: #a80d26;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,16,46,0.55);
}

/* FAMILY PHOTO */
.family-section {
  padding: 64px 0;
  background: #f4f4f4;
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--navy);
}
.family-wrapper { text-align: center; }
.family-photo {
  width: 100%;
  max-width: 860px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  display: block;
  margin: 0 auto;
  object-fit: cover;
}
.no-photo::before {
  content: 'Family Photo';
  display: block;
  width: 860px;
  max-width: 100%;
  height: 480px;
  background: #d0d8e4;
  border-radius: 8px;
  line-height: 480px;
  text-align: center;
  font-size: 1.4rem;
  color: #7a8a9a;
  margin: 0 auto;
}

/* DONATE */
.donate-section {
  background: var(--navy);
  padding: 64px 0;
}
.disclaimer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* FOOTER */
.footer {
  background: #06152a;
  padding: 28px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-name {
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}
.footer-legal { font-size: 0.78rem; }

@media (max-width: 600px) {
  .hero-overlay { padding: 60px 0 72px; }
  .btn-donate { padding: 16px 36px; font-size: 1rem; }
}
