/* =====================================
   Base & Reset
===================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary: #2d2d2d;       /* Charcoal */
  --primary-dark: #1f1f1f;  /* Deeper charcoal */
  --accent: #26b378;        /* Warm gold */
  --accent-soft: #f3e2bf;   /* Soft gold tint */
  --navy: #262626;          /* Deep neutral for headings/nav */
  --light-bg: #f5f3ef;      /* Warm light background */
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #252525;
  background: var(--light-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

/* =====================================
   Header / Navigation
===================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 3px solid var(--accent);
  backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease,
    border-bottom-color 0.25s ease, transform 0.15s ease-out;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom-color: transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

/* Brand / logo area */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.brand img {
  height: 46px;
  width: auto;
  border-radius: 50%;
  background: white;
}

/* Desktop nav */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  padding: 0.4rem 0.2rem;
  border-radius: 999px;
  font-weight: 500;
  color: #262626;
}

/* Soft pill hover */
.main-nav a:hover {
  background-color: rgba(200, 155, 60, 0.12);
  text-decoration: none;
}

/* Active section underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.2rem;
  width: 60%;
  height: 2px;
  border-radius: 999px;
  background-color: #2b7a59; /* your green */
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

.main-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}


/* Donate button – standout gold CTA */
.nav-donate {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c41313, #ec5b5b);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  border: none;
  transform: translateY(0);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    filter 0.15s ease-out;
}

.nav-donate i {
  font-size: 0.9rem;
}

.nav-donate:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}


/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-bar {
  height: 2px;
  width: 100%;
  background-color: #111827;
  border-radius: 999px;
}

/* Mobile layout */
@media (max-width: 700px) {
  .header-inner {
    padding: 0.5rem 0;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.25rem 1rem;
    gap: 0.4rem;
  }

  .main-nav a {
    width: 100%;
    padding: 0.55rem 0;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* =====================================
   Hero
===================================== */

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--navy);
  background: radial-gradient(circle at top left, #fdf9f3 0%, #f5eee4 40%, #f3f0ea 100%);
}
.hero-buttons {
  display: flex !important;
  gap: 1.5rem !important;
  align-items: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
}

.hero-inner {
  position: relative;
  width: 100%;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.hero-logo {
  position: relative;
  flex-shrink: 0;
}

.hero-logo img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: transparent;
}

/* 70 Years Ribbon Badge */

.hero-badge {
    position: absolute;
    left: 150px;    /* adjust as needed */
    bottom: -20px;  /* adjust as needed */
    background: #f8f3eb;        /* matches hero background */
    border: 1px solid #d7c9b8;  /* thin gold-beige outline */
    color: #3b3b3b;             /* warm charcoal to match text */
    padding: 8px 14px;
    border-radius: 12px;
    font-family: "Georgia", serif;
    font-size: 14px;
    line-height: 1.2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.hero-badge .small {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #766b5e; /* soft warm gray */
}




.hero-text {
  max-width: 560px;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  color: #6b6b6b;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}

.hero-description {
  font-size: 1.03rem;
  margin-bottom: 1.4rem;
  color: #494949;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #494949;
}


/* HERO buttons – identical, subtle outline, no highlight */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* base style for both hero buttons */
.hero-actions .btn,
.hero-actions .btn-primary,
.hero-actions .btn-outline {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: var(--primary) !important;
  box-shadow: none;
  text-decoration: none !important;
  border-radius: 999px;
}

/* hover – very soft, same for both */
.hero-actions .btn:hover,
.hero-actions .btn-primary:hover,
.hero-actions .btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: var(--accent);
  box-shadow: none;
}

/* remove focus/active glow & tap highlight */
.hero-actions .btn:focus,
.hero-actions .btn:active,
.hero-actions .btn-primary:focus,
.hero-actions .btn-primary:active,
.hero-actions .btn-outline:focus,
.hero-actions .btn-outline:active {
  outline: none;
  box-shadow: none;
}

.hero-actions .btn,
.hero-actions a {
  -webkit-tap-highlight-color: transparent;
}

/* avoid colored text selection on these buttons */
.hero-actions a::selection,
.hero-actions span::selection {
  background: transparent;
  color: inherit;
}

/* Hero responsive */
@media (max-width: 850px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-logo img {
    width: 180px;
    height: 180px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero {
    min-height: 55vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    right: -10px;
    bottom: -4px;
    transform: scale(0.95);
  }
}

/* =====================================
   Buttons (global)
===================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  gap: 0.35rem;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    background-color 0.15s ease-out, border-color 0.15s ease-out;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #b2832d;
  border-color: #b2832d;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: rgba(200, 155, 60, 0.12);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* =====================================
   Mission
===================================== */

.mission {
  background-color: #ffffff;
  text-align: center;
}

.mission p {
  max-width: 650px;
  margin: 0.5rem auto 0;
}

/* =====================================
   Cards (Who We Are / What We Do)
===================================== */

.cards-section {
  background-color: #f7f4ef;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e0d6;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out, background-color 0.18s ease-out;
}

.card h3 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
  background-color: #fdf8ed;
}

.card-link {
  display: inline-flex;
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.card-link:hover {
  text-decoration: underline;
}

/* Icon bubbles */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  margin-right: 0.4rem;
  background: rgba(200, 155, 60, 0.12);
  color: var(--primary);
  font-size: 0.9rem;
}

.icon-circle-lg {
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}

/* =====================================
   Featured Event / Events Section
===================================== */

.events-section {
  background-color: #ffffff;
}

.events-section h2 {
  text-align: center;
  margin-bottom: 0.4rem;
}

.events-intro {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #4b4b4b;
}

/* Event cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.event-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.75rem;
  padding: 2rem;
  background: #fffdf9;
  border-radius: 1.25rem;
  border: 1px solid #e1d6c3;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out,
    border-color 0.2s ease-out, background-color 0.2s ease-out;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
  background-color: #fdf5e6;
}

.event-image {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-start;
}

.event-image img {
  width: 100%;
  max-width: 160px;
  max-height: 220px;
  object-fit: cover;
  border-radius: 1rem;
  background: #fff;
  padding: 6px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease-out, box-shadow 0.3s ease-out;
}

/* Hover zoom */
.event-card:hover .event-image img {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

/* Special gold frame e.g. for Gala card (second card) */
.event-card:nth-child(2) .event-image img {
  border: 2px solid #d4a437;
}

.event-content {
  padding-top: 0.5rem;
}

.event-content h3 {
  margin: 0.25rem 0 0.6rem;
  font-size: 1.25rem;
  color: var(--navy);
}

.event-meta {
  margin: 0 0 0.5rem;
  color: #555;
}

.event-details {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  color: #4b4b4b;
}

/* Event tags */
.event-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.event-tag-holiday {
  background-color: rgba(54, 130, 89, 0.15);
  color: #1f5135;
}

.event-tag-gala {
  background-color: rgba(200, 155, 60, 0.18);
  color: #7b4d03;
}

/* Buttons inside events */
.events-section .btn-outline {
  color: var(--primary);
  border-color: var(--accent);
  background-color: transparent;
}

.events-section .btn-outline:hover {
  background-color: rgba(200, 155, 60, 0.12);
  color: var(--primary);
}

/* Optional solid gold button */
.btn-gala {
  background-color: #d4a437;
  border: 1px solid #c28c20;
  color: #fff;
}

.btn-gala:hover {
  background-color: #bb8d26;
  border-color: #a67816;
}

/* Events responsive */
@media (max-width: 900px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-image img {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* =====================================
   Impact
===================================== */

.impact {
  background-color: #f7f4ef;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.impact-item {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1.4rem;
  border: 1px solid #e5e0d6;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out, background-color 0.18s ease-out;
}

.impact-item h3 {
  display: flex;
  align-items: center;
}

.impact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
  background-color: #fdf8ed;
}

/* Big impact highlight card */
.impact-highlight {
  margin: 2.5rem auto 2rem;
  max-width: 800px;
  padding: 1.8rem 2rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(200, 155, 60, 0.08),
    rgba(243, 226, 191, 0.55)
  );
  border: 1px solid rgba(200, 155, 60, 0.65);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  text-align: center;
  position: relative;
}

.impact-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.impact-icon .icon-circle {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.hero-stat {
  text-align: center;
  margin: 2.7rem 0 1.6rem;
}

.hero-stat h3 {
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  letter-spacing: -0.5px;
}

.hero-stat p {
  color: #4b4b4b;
  font-size: 1.15rem;
  margin-top: 0.3rem;
}

.impact-highlight .hero-stat h3 {
  font-size: 3rem;
  margin: 0.4rem 0 0.15rem;
  color: var(--primary);
}

.impact-highlight .hero-stat p {
  margin: 0;
  font-size: 1.1rem;
  color: #1f1f1f;
  font-weight: 500;
}

.impact-text {
  margin-top: 1rem;
  color: #4b4b4b;
  font-size: 0.98rem;
}

@media (max-width: 700px) {
  .impact-highlight {
    padding: 1.6rem 1.3rem 1.8rem;
  }

  .impact-highlight .hero-stat h3 {
    font-size: 2.3rem;
  }
}

/* =====================================
   Get Involved (Membership-style)
===================================== */

.get-involved {
  background-color: #ffffff;
}

.get-involved-intro {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #4b4b4b;
}

.get-involved-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: flex-start;
}

.get-involved-main h3 {
  margin-top: 0;
}

.get-involved-main h4 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.get-involved-list {
  padding-left: 1.1rem;
  margin: 0;
  list-style: disc;
}

.get-involved-list li {
  margin-bottom: 0.6rem;
  color: #4b4b4b;
  position: relative;
  padding-bottom: 0.4rem;
}

.get-involved-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #4b4b4b;
}

/* Right-hand membership CTA box */
.get-involved-cta {
  background: #fff8ee;
  border-radius: 1.1rem;
  border: 1px solid rgba(200, 155, 60, 0.6);
  padding: 1.5rem 1.6rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.get-involved-cta h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.get-involved-cta p {
  margin-top: 0;
  color: #4b4b4b;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1rem;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #262626;
  margin-bottom: 0.4rem;
}

.cta-list i {
  color: var(--accent);
}

/* Donate note inside CTA */
.donate-note {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 139, 120, 0.6);
}

.donate-note h4 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.donate-note p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: #4b4b4b;
}

@media (max-width: 900px) {
  .get-involved-layout {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   Charities Grid (under Impact)
===================================== */

.charities-heading {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.3rem;
}

.charities-intro {
  max-width: 640px;
  margin: 0.5rem auto 1.5rem;
  text-align: center;
  color: #4b4b4b;
}

.charities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.charity-card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid #e5e0d6;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out, background-color 0.18s ease-out;
}

.charity-card h4 {
  margin: 0 0 0.4rem;
  color: var(--primary);
  font-size: 1rem;
}

.charity-card p {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  color: #4b4b4b;
}

.charity-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--accent);
  background-color: #fdf8ed;
}

/* Tags used in Get Involved + Charities */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  margin-left: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
}

.tag i {
  font-size: 0.75rem;
}

/* Membership tags */
.tag.fundraising {
  background-color: #c05621;
}

.tag.service {
  background-color: #15803d; /* green */
}

.tag.community {
  background-color: #a855f7; /* purple */
}

.tag.social {
  background-color: #db2777;
}

/* Charity categories */
.tag.health {
  background-color: #16a34a;
}

.tag.youth {
  background-color: #ea580c;
}

.tag.basic-needs {
  background-color: #4b5563;
}

.tag.education {
  background-color: #b45309;
}

.tag.disability {
  background-color: #7c3aed;
}

.tag.housing {
  background-color: #44403c;
}

.tag.mental-health {
  background-color: #0f766e;
}

.tag.food {
  background-color: #15803d;
}

.tag.crisis {
  background-color: #b91c1c;
}

.tag.violence-prevention {
  background-color: #7f1d1d;
}

.tag.women {
  background-color: #db2777;
}

.tag.equity {
  background-color: #6b21a8;
}

.charity-tags {
  margin: 0 0 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

/* Pop-in animation when reveal-visible */
@keyframes tagPop {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.reveal-visible .tag {
  animation: tagPop 0.45s ease-out both;
}

/* =====================================
   Leadership
===================================== */
.leadership {
  background-color: #fffaf3;
}

.leadership .container {
  max-width: 960px;
}

.leadership h2 {
  text-align: center;
  margin-bottom: 0.3rem;
}

.leadership-intro {
  text-align: center;
  color: #4b4b4b;
  margin: 0 0 1.8rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem 1.4rem;
  margin-bottom: 1.6rem;
}

.officer-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #f4e4c4;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out, background-color 0.18s ease-out;
}

.officer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(199, 155, 43, 0.8);
  background-color: #fffdf7;
}

.officer-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fef3c7 0, #c79b2b 45%, #8b5b10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgba(199, 155, 43, 0.4);
  flex-shrink: 0;
}

.officer-info {
  display: flex;
  flex-direction: column;
}

.officer-role {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin: 0;
}

.officer-name {
  margin: 0.12rem 0 0;
  font-size: 0.98rem;
  color: #111827;
  font-weight: 600;
}

.leadership-note {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .officer-card {
    padding: 0.85rem 0.9rem;
  }

  .officer-avatar {
    width: 2.8rem;
    height: 2.8rem;
  }
}


/* =====================================
   Scroll-in Reveal (used across site)
===================================== */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================
   Footer
===================================== */

.site-footer {
  background-color: #181818;
  color: #d1d5db;
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-column h3 {
  color: #ffffff;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.75rem 0;
}

.subscribe-form input[type="email"] {
  flex: 1 1 180px;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #4b4b4b;
  background-color: #111111;
  color: #e5e7eb;
}

.subscribe-form button {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: none;
  background-color: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #b2832d;
}

.subscribe-note {
  font-size: 0.85rem;
  color: #9ca3af;
}

.site-footer a {
  color: var(--accent);
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #272727;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* =====================================
   Global Responsive Tweaks
===================================== */

@media (max-width: 900px) {
  .cards-grid,
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 700px) {
  .cards-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
}
/* Final override: hero buttons must look the same */
.hero-actions .btn,
.hero-actions .btn-primary,
.hero-actions .btn-outline {
  background-color: transparent !important;
  border: 1px solid rgba(0, 0, 0, 0.25) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

/* Same subtle hover for both */
.hero-actions .btn:hover,
.hero-actions .btn-primary:hover,
.hero-actions .btn-outline:hover {
  background-color: rgba(0, 0, 0, 0.05) !important;
  border-color: var(--accent) !important;
  box-shadow: none !important;
}

/* Kill focus/active highlight completely */
.hero-actions .btn:focus,
.hero-actions .btn:active,
.hero-actions .btn-primary:focus,
.hero-actions .btn-primary:active,
.hero-actions .btn-outline:focus,
.hero-actions .btn-outline:active {
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

/* Premium Donate Button */
.donate-btn {
    background: linear-gradient(135deg, #ff8966, #e24a3f);
    color: #fff;
    padding: 0.55rem 2.2rem;
    min-width: 90px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(226, 74, 63, 0.35);
    transition: all 0.2s ease;
}


/* Heart icon refined */
.donate-btn:hover {
    background: linear-gradient(135deg, #ffa385, #e85f53);
    transform: translateY(-2px);
}

/* Active click effect */
.donate-btn:active {
    transform: translateY(0);
}
/* Modern Donate Button (Sharp + Professional) */
.donate-btn {
    background-color: #c79b2b;        /* warm gold */
    color: #fff;
    border: none;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;               /* sharper than pill */
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.18s ease-in-out;
}

/* Icon styling */
.donate-btn i {
    font-size: 0.95rem;
}

/* Hover – sharp, bright, but elegant */
.donate-btn:hover {
    background-color: #ddb44a;
    box-shadow: 0 6px 14px rgba(0,0,0,0.22);
    transform: translateY(-2px);
}

/* Active press */
.donate-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}
nav a.active {
  position: relative;
}

nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #2b7a59;  /* your green underline */
  border-radius: 2px;
}
/* -------------------------------------
   Contact Form (inside Footer)
-------------------------------------- */

.footer-contact p {
  margin-top: 0.3rem;
  margin-bottom: 1.2rem;
  color: #e5e7eb;
  max-width: 460px;
}

.footer-info {
  color: #d1d5db;
}

.footer-info p {
  margin: 0 0 0.8rem;
}

/* Make footer columns feel more balanced on wide screens */
.footer-inner {
  align-items: flex-start;
}

/* Contact form card feel on dark background */
.contact-form {
  background: #111827;
  border-radius: 1.1rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid #374151;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  margin-top: 0.75rem;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out,
    border-color 0.25s ease-out;
}

.reveal-visible .contact-form {
  transform: translateY(0);
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  border-color: rgba(199, 155, 43, 0.9);
}

/* Form layout */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

/* Inputs / selects / textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid #4b5563;
  background-color: #030712;
  color: #f9fafb;
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out,
    background-color 0.18s ease-out, transform 0.08s ease-out;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Focus state – soft gold glow */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(199, 155, 43, 0.45),
    0 0 0 6px rgba(199, 155, 43, 0.18);
  background-color: #020617;
}

/* Placeholder subtle */
.contact-form ::placeholder {
  color: #6b7280;
}

/* Submit button tweaks to match footer */
.contact-submit {
  margin-top: 0.5rem;
  background-color: var(--accent);
  border-color: var(--accent);
  display: inline-flex;
  gap: 0.45rem;
}

.contact-submit i {
  font-size: 0.9rem;
}

.contact-submit:hover {
  background-color: #b2832d;
  border-color: #b2832d;
}

/* Status message */
.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: #d1fae5; /* soft green text */
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.form-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Newsletter block on the right side */
.footer-newsletter {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid #27272f;
}

.footer-newsletter h4 {
  margin: 0 0 0.3rem;
  color: #ffffff;
}

.footer-newsletter p {
  margin: 0 0 0.75rem;
  color: #9ca3af;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Small responsive tweaks for narrow screens */
@media (max-width: 700px) {
  .contact-form {
    padding: 1.2rem 1.1rem 1.3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* -------------------------------------
   Other Events / Announcements (card)
-------------------------------------- */

.announcements {
  margin-top: 2.5rem;
  padding: 2.5rem 0;
  background: linear-gradient(#fffdf7, #ffffff);
}

.announcements-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: #111827;
}

.announcement-cards {
  display: grid;
  gap: 1rem;
}

/* Card container */
.announcement-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1.8fr);
  gap: 1.2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  align-items: stretch;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out, background-color 0.18s ease-out;
}

.announcement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  border-color: #3b8a5d;
  background-color: #fffdf7;
}

/* Image area */
.announcement-media {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  min-height: 140px;
}

.announcement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* When there is no image (img fails), keep a nice gradient block */
.announcement-media.no-image {
  background: linear-gradient(135deg, #fef3c7, #facc6b);
}

/* Text content */
.announcement-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.announcement-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  margin: 0 0 0.25rem;
}

.announcement-heading {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
}

.announcement-text {
  margin: 0;
  font-size: 0.96rem;
  color: #4b5563;
  line-height: 1.55;
}

/* Responsive: stack card on small screens */
@media (max-width: 768px) {
  .announcement-card {
    grid-template-columns: 1fr;
  }

  .announcement-media {
    min-height: 160px;
  }
}
/* Announcement Card Enhancements (A + C + D) */
.announcement-cards {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Stylish gold underline under title */
.announcements-title {
  position: relative;
  padding-bottom: 0.4rem;
}

.announcements-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.4rem;
  border-radius: 999px;
}

/* Add soft image zoom on hover */
.announcement-media img {
  transition: transform 0.4s ease;
}

.announcement-card:hover .announcement-media img {
  transform: scale(1.05);
}

/* Ribbon badge on announcement image */
.announcement-media {
  position: relative; /* allow overlay positioning */
  border-radius: 0.9rem;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  min-height: 140px;
}

.announcement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* small pill ribbon sitting neatly on the photo */
.announcement-ribbon {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  background: var(--accent);
  color: #ffffff;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

@media (max-width: 768px) {
  .announcement-ribbon {
    top: 0.6rem;
    left: 0.6rem;
    font-size: 0.68rem;
    padding: 0.22rem 0.65rem;
  }
}
/* =====================================
   Small screens (iPhone-ish)
   Extra polish for <= 480px wide
===================================== */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 2.25rem 0;
  }

  .container {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  /* Hero tweaks */
  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Events & announcements feel better stacked */
  .events-grid {
    gap: 1.5rem;
  }

  .event-card {
    padding: 1.3rem 1.1rem;
  }

  .announcement-card {
    padding: 1.3rem 1.1rem;
    gap: 1rem;
  }

  /* Slightly smaller heading in announcements */
  .announcements-title {
    font-size: 1.25rem;
  }

  .announcement-heading {
    font-size: 1rem;
  }

  /* Leadership cards – a bit tighter */
  .officer-card {
    padding: 0.75rem 0.85rem;
  }

  /* Footer spacing */
  .site-footer {
    padding-top: 2.2rem;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding-top: 4.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-logo img {
    max-width: 160px;
  }

  .hero-badge {
    right: -6px;
    bottom: 4px;
    font-size: 0.62rem;
    min-width: 100px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }
}
/* Floating anniversary pill (desktop only) */
.floating-anniversary {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2000;

  background: #ffffff;
  border: 1.5px solid #d4b073;          /* same gold tone as hero badge */
  border-radius: 999px;
  padding: 0.38rem 0.9rem;

  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.16),
    0 1px 3px rgba(0, 0, 0, 0.06);

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.floating-anniversary.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-anniversary-top {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #7c6a3a;
}

.floating-anniversary-main {
  font-size: 0.85rem;
  font-weight: 700;
  color: #222222;
}

/* Hide floating badge on small screens */
@media (max-width: 768px) {
  .floating-anniversary {
    display: none;
  }
}
.site-credit {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #7a7a7a;
  text-align: center;
  opacity: 0.8;
}
.site-credit strong {
  color: #555;
}
