/*
Theme Name: Friends of RHAM Golf
Theme URI: https://friendsofRHAMgolf.org
Author: Friends of RHAM Golf Corporation
Author URI: https://friendsofRHAMgolf.org
Description: Official WordPress theme for Friends of RHAM Golf — supporting the RHAM High School boys golf team. Navy, gold, and championship spirit.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rham-golf
Tags: nonprofit, sports, golf, custom-colors, custom-logo, featured-images, threaded-comments, responsive-layout
*/

/* ========================================
   CSS CUSTOM PROPERTIES
======================================== */
:root {
  --navy:       #1a2a4a;
  --navy-deep:  #0f1c33;
  --navy-mid:   #243457;
  --gold:       #f0a500;
  --gold-light: #f8c547;
  --gold-pale:  #fdf3d7;
  --white:      #ffffff;
  --off-white:  #f8f7f4;
  --gray-100:   #f2f1ee;
  --gray-200:   #e4e2dc;
  --gray-500:   #8b8578;
  --gray-700:   #4a4640;
  --text:       #1e1c18;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-head:    'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Source Serif 4', 'Georgia', serif;
  --font-sans:    'DM Sans', 'Helvetica Neue', sans-serif;

  --radius:     6px;
  --radius-lg:  14px;
  --shadow:     0 4px 24px rgba(10,20,50,.13);
  --shadow-lg:  0 12px 48px rgba(10,20,50,.22);
  --transition: .22s cubic-bezier(.4,0,.2,1);

  --container:  1180px;
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

ul, ol { padding-left: 1.5rem; }
p + p  { margin-top: 1em; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-deep);
  letter-spacing: .02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

.display-text {
  font-family: var(--font-display);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
}

/* ========================================
   LAYOUT UTILITIES
======================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section--dark { background: var(--navy-deep); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--gold { background: var(--gold); color: var(--navy-deep); }
.section--gray { background: var(--gray-100); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px),1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px),1fr)); gap: 2rem; }

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240,165,0,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}

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

/* ========================================
   SKIP LINK
======================================== */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--navy-deep);
  padding: .5rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  font-family: var(--font-sans); font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ========================================
   HEADER / NAVIGATION
======================================== */
#masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-deep);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1.5rem;
}

/* Logo */
.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo-svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.site-title-wrap { display: flex; flex-direction: column; line-height: 1; }

.site-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.site-tagline {
  font-family: var(--font-sans);
  font-size: .65rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Primary Nav */
#primary-navigation { display: flex; align-items: center; gap: 0; }

.nav-menu {
  display: flex; align-items: center; gap: 0;
  list-style: none; padding: 0; margin: 0;
}

.nav-menu > li > a {
  display: block;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: .6rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--gold);
  background: rgba(240,165,0,.1);
}

.nav-donate-btn {
  margin-left: .75rem;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Dropdown */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px); left: 0;
  min-width: 200px;
  background: var(--navy);
  border: 1px solid rgba(240,165,0,.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none; padding: .5rem 0;
  z-index: 200;
}
.nav-menu li { position: relative; }
.nav-menu li:hover > .sub-menu { display: block; }
.nav-menu .sub-menu a {
  display: block; padding: .6rem 1.25rem;
  font-family: var(--font-sans); font-size: .85rem;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.nav-menu .sub-menu a:hover { color: var(--gold); background: rgba(240,165,0,.07); }

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: clamp(480px, 70vh, 780px);
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(240,165,0,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(26,42,74,.6) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 60%, #1a3060 100%);
}

/* Golf course grass texture via CSS */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 28px,
      rgba(255,255,255,.015) 28px,
      rgba(255,255,255,.015) 30px
    );
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  animation: heroFadeUp .8s cubic-bezier(.4,0,.2,1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: heroFadeUp .8s .1s cubic-bezier(.4,0,.2,1) both;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: .95;
  margin-bottom: 1.5rem;
  animation: heroFadeUp .8s .2s cubic-bezier(.4,0,.2,1) both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
  animation: heroFadeUp .8s .3s cubic-bezier(.4,0,.2,1) both;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: heroFadeUp .8s .4s cubic-bezier(.4,0,.2,1) both;
}

/* Floating golf ball accent */
.hero-ball {
  position: absolute; right: 8%; bottom: 10%;
  width: clamp(120px, 20vw, 260px);
  height: clamp(120px, 20vw, 260px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.12), transparent 60%),
              radial-gradient(circle at 65% 65%, rgba(240,165,0,.07), transparent 60%);
  border: 1px solid rgba(240,165,0,.1);
  z-index: 1;
  animation: floatBall 6s ease-in-out infinite;
}
@keyframes floatBall {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(5deg); }
}

/* Diagonal gold accent bar */
.hero::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  z-index: 3;
}

/* ========================================
   STATS BAR
======================================== */
.stats-bar {
  background: var(--gold);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--navy-deep);
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem 2.5rem;
  border-right: 1px solid rgba(26,42,74,.2);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy-deep);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(26,42,74,.7);
  margin-top: 3px;
}

/* ========================================
   MISSION SECTION
======================================== */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mission-text {
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-text h2 { color: var(--white); margin-bottom: 1.25rem; }

.mission-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 1rem;
}

.mission-text p:last-of-type { margin-bottom: 1.75rem; }

.mission-visual {
  background:
    linear-gradient(160deg, rgba(26,42,74,.85), rgba(15,28,51,.95)),
    url('images/golf-course.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  gap: 1.5rem;
  text-align: center;
}

.mission-icon {
  width: 72px; height: 72px;
  background: rgba(240,165,0,.12);
  border: 2px solid rgba(240,165,0,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}

.mission-visual-stat {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.mission-visual-label {
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ========================================
   CARDS
======================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
}

.card-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}

.card-body { padding: 1.5rem; }

.card-category {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--navy-deep);
}

.card p {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
}

.card-date {
  font-family: var(--font-sans);
  font-size: .8rem;
  color: var(--gray-500);
}

/* ========================================
   DONATE SECTION
======================================== */
.donate-section {
  background:
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.donate-section::before {
  content: '⛳';
  position: absolute;
  font-size: 18rem;
  right: -2rem; bottom: -3rem;
  opacity: .04;
  transform: rotate(-12deg);
  pointer-events: none;
}

.donate-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.donate-inner h2 { color: var(--white); margin-bottom: 1rem; }

.donate-inner p {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
}

.donate-amounts {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.donate-amount-btn {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: .6rem 1.4rem;
  border: 2px solid rgba(240,165,0,.4);
  border-radius: var(--radius);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
}
.donate-amount-btn:hover,
.donate-amount-btn.active {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

/* ========================================
   TEAM SECTION
======================================== */
.team-member {
  text-align: center;
}

.team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}

.team-photo-placeholder {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
}

.team-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: .25rem;
}

.team-role {
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========================================
   EVENTS TIMELINE
======================================== */
.events-list { display: flex; flex-direction: column; gap: 1.25rem; }

.event-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition);
}

.event-item:hover { transform: translateX(4px); }

.event-date {
  display: flex; flex-direction: column; align-items: center;
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: .5rem;
  color: var(--white);
  text-align: center;
}

.event-month {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
}

.event-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin-bottom: .3rem;
}

.event-meta {
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--gray-500);
}

/* ========================================
   FOOTER
======================================== */
#colophon {
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
  color: rgba(255,255,255,.7);
}

.footer-main {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand .site-title { font-size: 1.3rem; }

.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-top: .75rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-social {
  display: flex; gap: .6rem; margin-top: 1.25rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(240,165,0,.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,165,0,.08);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-menu {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: .5rem;
}

.footer-menu a {
  font-family: var(--font-sans);
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-menu a:hover { color: var(--white); }

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

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom a { color: var(--gold); }

/* ========================================
   CONTENT AREA (single/page/blog)
======================================== */
.site-main { padding: clamp(2rem, 6vw, 5rem) 0; }

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.entry-header { margin-bottom: 2rem; }

.entry-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy-deep);
  margin-bottom: .75rem;
}

.entry-meta {
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--gray-500);
}

.entry-meta a { color: var(--gold); }

.entry-content { max-width: 68ch; }

.entry-content h2,
.entry-content h3 { margin: 1.75em 0 .6em; }

.entry-content p { margin-bottom: 1.1em; }

.entry-content ul,
.entry-content ol { margin: 1em 0 1em 1.5rem; }

.entry-content blockquote {
  margin: 2em 0;
  padding: 1.25rem 1.75rem;
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy-mid);
}

/* ========================================
   SIDEBAR
======================================== */
.sidebar { position: sticky; top: 90px; }

.widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.widget-title {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
}

.widget ul { list-style: none; padding: 0; }
.widget ul li {
  padding: .4rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .9rem;
}
.widget ul li:last-child { border-bottom: none; }

/* ========================================
   COMMENTS
======================================== */
.comments-area {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}

.comments-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.comment-list { list-style: none; padding: 0; }

.comment {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

label {
  display: block;
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: .4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: .7rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,.15);
}

/* ========================================
   PAGINATION
======================================== */
.pagination {
  display: flex; gap: .5rem; justify-content: center;
  margin: 3rem 0;
  font-family: var(--font-sans);
}

.pagination a,
.pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
}

.pagination a:hover,
.pagination .current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

/* ========================================
   ALERTS / NOTICES
======================================== */
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid;
  font-family: var(--font-sans);
  font-size: .95rem;
  margin: 1rem 0;
}

.notice-success { background: #f0faf4; border-color: #2ecc71; color: #1a6b3a; }
.notice-info    { background: #eff6ff; border-color: #3b82f6; color: #1e40af; }
.notice-warning { background: var(--gold-pale); border-color: var(--gold); color: var(--navy-deep); }

/* ========================================
   FEATURED IMAGE
======================================== */
.featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

/* ========================================
   SEARCH FORM
======================================== */
.search-form {
  display: flex; gap: .5rem;
}
.search-form input {
  flex: 1;
}
.search-form button {
  padding: .7rem 1.2rem;
  background: var(--navy);
  color: var(--gold);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.search-form button:hover { background: var(--navy-mid); }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 960px) {
  .mission-grid { grid-template-columns: 1fr; }
  .footer-main  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

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

  #primary-navigation {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(240,165,0,.2);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }

  #primary-navigation.is-open { display: flex; }

  .nav-menu { flex-direction: column; gap: .25rem; }
  .nav-menu > li > a { padding: .75rem 1rem; }
  .nav-donate-btn { margin: .75rem 0 0; }
  .nav-donate-btn .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .stats-inner      { gap: 1rem; }
  .stat-item        { padding: .5rem 1.2rem; border-right: none; border-bottom: 1px solid rgba(26,42,74,.2); }
  .stat-item:last-child { border-bottom: none; }
  .footer-main      { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .hero-ball        { display: none; }
  .donate-amounts   { gap: .5rem; }
  .event-item       { grid-template-columns: 64px 1fr; gap: .75rem; }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy-deep); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: .08em; }
.mb-sm  { margin-bottom: 1rem; }
.mb-md  { margin-bottom: 2rem; }
.mb-lg  { margin-bottom: 3rem; }
.mt-md  { margin-top: 2rem; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 2rem; }
.divider { height: 2px; background: var(--gold); width: 48px; margin: 1rem 0; }
.divider-center { margin: 1rem auto; }

/* Gold underline heading accent */
.heading-accented {
  position: relative;
  display: inline-block;
  padding-bottom: .4rem;
}
.heading-accented::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60%; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* Section labels */
.section-label {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block; width: 24px; height: 2px;
  background: currentColor;
}
