/* ============================================================
   FOWA — Friends of the Watertown Salvation Army
   Brand Standards CSS
   Colors: Red #EF3E42 | Navy #132230 | Blue #002056
           Gold #AF8C46 | Light Grey #EBEBEB | White #FFFFFF
   Fonts: Cinzel (headings), Open Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --red: #EF3E42;
  --navy: #132230;
  --blue: #002056;
  --gold: #AF8C46;
  --lightgrey: #EBEBEB;
  --white: #FFFFFF;
  --red-dark: #c72d31;
  --gold-dark: #8f6e30;
  --text-dark: #1a1a2e;
  --text-mid: #3d3d5c;
  --shadow: 0 4px 24px rgba(19,34,48,0.12);
  --shadow-lg: 0 8px 40px rgba(19,34,48,0.18);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }

/* ======================== UTILITIES ======================== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.bg-navy { background: var(--navy); }
.bg-blue { background: var(--blue); }
.bg-red { background: var(--red); }
.bg-lightgrey { background: var(--lightgrey); }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* Section label */
.section-label {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--text-mid);
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239,62,66,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* Donate button — always prominent */
.btn-donate {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-donate:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239,62,66,0.4);
}

/* ======================== HEADER / NAV ======================== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  max-width: 1140px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .logo-main {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.06em;
}
.logo-text .logo-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.main-nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-donate {
  margin-left: 0.75rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ======================== HERO ======================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #003080 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(175,140,70,0.2);
  border: 1px solid rgba(175,140,70,0.4);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  margin-top: 4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll::before {
  content: '↓';
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ======================== MISSION STRIP ======================== */
.mission-strip {
  background: var(--red);
  padding: 2rem 0;
}

.mission-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  flex-wrap: wrap;
}

.mission-strip p {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ======================== IMPACT STATS ======================== */
.stats-section {
  background: var(--navy);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ======================== CARDS ======================== */
.card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-body { padding: 1.75rem; }
.card-title { margin-bottom: 0.75rem; font-size: 1.15rem; }
.card-text { color: var(--text-mid); font-size: 0.95rem; }

/* Event card */
.event-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
  border-left: 4px solid var(--red);
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.event-date-block {
  flex-shrink: 0;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  min-width: 64px;
}
.event-date-block .month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-date-block .day {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.event-date-block .year {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

.event-info { flex: 1; }
.event-title { font-size: 1.1rem; margin-bottom: 0.35rem; }
.event-meta {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.event-desc { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 0; }

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* ======================== SPONSOR SECTION ======================== */
.sponsor-tier {
  margin-bottom: 3.5rem;
}

.tier-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.tier-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--lightgrey);
}

.tier-badge {
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.tier-platinum { background: linear-gradient(135deg, #a8a8a8, #e8e8e8); color: #2a2a2a; }
.tier-gold     { background: linear-gradient(135deg, var(--gold), #d4a850); color: var(--white); }
.tier-silver   { background: linear-gradient(135deg, #8a8a8a, #c0c0c0); color: var(--white); }
.tier-community { background: var(--blue); color: var(--white); }

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.sponsor-placeholder {
  background: var(--lightgrey);
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  min-width: 180px;
  font-weight: 600;
  color: #999;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.2s;
}
.sponsor-placeholder:hover {
  background: #e0e0e0;
  border-color: var(--gold);
  color: var(--text-mid);
}

/* ======================== CONTACT FORM ======================== */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,62,66,0.12);
}

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }

/* ======================== VOLUNTEER SECTION ======================== */
.involve-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2.5rem;
  text-align: center;
  border-top: 4px solid var(--red);
  transition: transform 0.25s;
}
.involve-card:hover { transform: translateY(-4px); }

.involve-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* ======================== PAGE HERO (inner pages) ======================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumb a { color: var(--gold); }

/* ======================== FOOTER ======================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: background 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--red);
  color: var(--white);
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

.footer-ein {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ======================== PAGE-SPECIFIC ======================== */

/* About mission boxes */
.mission-box {
  background: var(--lightgrey);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 1.75rem;
}
.mission-box h3 { margin-bottom: 0.75rem; }

/* Salvation Army connection section */
.sa-section {
  background: var(--blue);
  padding: 4rem 0;
  color: var(--white);
}
.sa-section h2, .sa-section h3 { color: var(--white); }
.sa-section p { color: rgba(255,255,255,0.8); }

/* Banner bar */
.banner-bar {
  background: var(--gold);
  padding: 1rem 0;
  text-align: center;
}
.banner-bar p {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
  letter-spacing: 0.05em;
}
.banner-bar a { color: var(--white); text-decoration: underline; }

/* ======================== ALERT / NOTICE ======================== */
.notice {
  background: rgba(175,140,70,0.1);
  border: 1px solid rgba(175,140,70,0.3);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gold-dark);
  margin-bottom: 2rem;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
}

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

  .main-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 1rem; font-size: 1rem; }
  .nav-donate { margin-left: 0; margin-top: 0.5rem; }
  .nav-donate .btn-donate { width: 100%; text-align: center; display: block; }

  .hero { padding: 4rem 0 3rem; }
  .hero-ctas { flex-direction: column; align-items: center; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .event-card { flex-direction: column; gap: 1rem; }
  .event-date-block { text-align: left; display: flex; gap: 0.5rem; align-items: center; }
  .event-date-block .day { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section-pad { padding: 3.5rem 0; }
  .btn-lg { padding: 0.85rem 1.75rem; }
}
