/*
Theme Name: Saddle River Valley Lions Club
Theme URI: https://saddlerivervalleylionsclub.org
Author: SRVLC
Description: Official theme for the Saddle River Valley Lions Club website
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: srvlc
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:       #1a3a6b;
  --navy-dark:  #0f2347;
  --gold:       #c9a227;
  --gold-light: #e2b93b;
  --gold-border:#d4a017;
  --cream:      #f5f0e8;
  --cream-dark: #ede8dc;
  --white:      #ffffff;
  --text-dark:  #1a1a1a;
  --text-mid:   #333333;
  --text-light: #666666;

  --font-heading: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Open Sans', Arial, sans-serif;

  --shadow-card: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-hover: 0 6px 20px rgba(0,0,0,0.18);
  --radius: 4px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-mid);
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cpath d='M200 0 Q300 100 200 200 Q100 300 200 400' fill='none' stroke='%23c9a22715' stroke-width='1.5'/%3E%3Cpath d='M0 200 Q100 100 200 200 Q300 300 400 200' fill='none' stroke='%23c9a22712' stroke-width='1.5'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

p { margin-bottom: 1rem; }

/* ============================================================
   LAYOUT WRAPPERS
   ============================================================ */
.site-wrapper { max-width: 100%; overflow-x: hidden; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   SITE HEADER  (header.png — full-width navy bar + river photo)
   ============================================================ */
#site-header {
  width: 100%;
  background-color: var(--navy-dark);
  position: relative;
}

.header-top {
  background-color: var(--navy-dark);
  padding: 14px 40px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-bottom: 3px solid var(--gold-border);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='120'%3E%3Cpath d='M0 60 Q150 20 300 60 Q450 100 600 60' fill='none' stroke='%23ffffff08' stroke-width='2'/%3E%3C/svg%3E");
}

.header-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.header-text h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.header-text h1 span {
  color: var(--gold);
}

.header-text p {
  font-size: 0.9rem;
  color: #cdd8f0;
  letter-spacing: 0.03em;
  margin: 0;
  font-style: italic;
}

.header-banner {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ============================================================
   NAVIGATION  (menu.png — navy bar, gold active/hover)
   ============================================================ */
#site-nav {
  background-color: var(--navy);
  border-bottom: 3px solid var(--gold-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

#site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

#primary-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

#primary-menu > li {
  position: relative;
}

#primary-menu > li > a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  transition: background var(--transition), color var(--transition);
}

#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current_page_item > a {
  background-color: var(--gold);
  color: var(--navy-dark);
}

/* Dropdown */
#primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  min-width: 200px;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-hover);
  z-index: 200;
}

#primary-menu li:hover > .sub-menu { display: block; }

#primary-menu .sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), color var(--transition);
}

#primary-menu .sub-menu li a:hover {
  background-color: var(--gold);
  color: var(--navy-dark);
}

/* Mobile MENU button */
.nav-toggle {
  display: none;
  background: var(--gold);
  border: none;
  cursor: pointer;
  padding: 0 20px;
  margin-left: auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  align-self: stretch;
}

.nav-toggle-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy-dark);
  text-transform: uppercase;
}

.nav-toggle-arrow {
  font-size: 0.7rem;
  color: var(--navy-dark);
  display: inline-block;
  transition: transform 0.25s ease;
  line-height: 1;
}

.nav-toggle.is-open .nav-toggle-arrow {
  transform: rotate(180deg);
}

/* Override MetaSlider container margins */
.metaslider, .metaslider .flexslider, .metaslider .nivoSlider,
.metaslider .coin-slider, .metaslider-wrap, #metaslider_container,
.ml-slider-3-x, [id^="metaslider_"] {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================================
   HERO SLIDER  (slider.png — 3-panel wide slider with prev/next)
   ============================================================ */
#hero-slider-section {
  background-color: var(--cream);
  padding: 24px 0 0;
  position: relative;
}

/* Decorative side scroll pattern */
#hero-slider-section::before,
#hero-slider-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='400'%3E%3Cpath d='M60 0 Q90 100 60 200 Q30 300 60 400' fill='none' stroke='%23c9a22720' stroke-width='2'/%3E%3Cpath d='M30 0 Q60 100 30 200 Q0 300 30 400' fill='none' stroke='%23c9a22715' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  pointer-events: none;
  z-index: 0;
}
#hero-slider-section::before { left: 0; }
#hero-slider-section::after  { right: 0; transform: scaleX(-1); }

.slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.slide {
  min-width: 100%;
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 36px;
  background: linear-gradient(to top, rgba(10,25,55,0.85) 0%, rgba(10,25,55,0.3) 70%, transparent 100%);
}

.slide-caption h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 14px;
}

.slide-caption .btn-learn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.slide-caption .btn-learn:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

/* Prev / Next arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}

.slider-btn:hover { background: rgba(201,162,39,0.6); border-color: var(--gold); }
.slider-btn.prev { left: -56px; }
.slider-btn.next { right: -56px; }

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b0b8c8;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
  padding: 0;
}

.slider-dot.active { background: var(--navy); }

/* ============================================================
   NEWS / RECENT POSTS  (news grid — 4 cards)
   ============================================================ */
#news-section {
  padding: 0 0 40px;
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cpath d='M250 0 Q380 125 250 250 Q120 375 250 500' fill='none' stroke='%231a3a6b0d' stroke-width='2'/%3E%3Cpath d='M0 250 Q125 120 250 250 Q375 380 500 250' fill='none' stroke='%231a3a6b0a' stroke-width='2'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.news-card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M100 0 Q150 50 100 100 Q50 150 100 200' fill='none' stroke='%23c9a22710' stroke-width='1.5'/%3E%3C/svg%3E");
  background-position: bottom right;
  background-repeat: no-repeat;
}

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

.news-card-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* Date badge card style (first card) */
.news-card.has-date-badge {
  display: flex;
  flex-direction: column;
}

.news-date-badge {
  background-color: var(--navy);
  color: var(--white);
  padding: 12px 16px 6px;
  font-family: var(--font-heading);
  text-align: left;
  flex-shrink: 0;
}

.news-date-badge .month {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-date-badge .day {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.news-card-body {
  padding: 14px 16px 18px;
  flex: 1;
}

.news-card-body h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.news-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   MISSION / CONTENT SECTION  (content.png)
   ============================================================ */
#mission-section {
  padding: 40px 0;
  background-color: var(--white);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.mission-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.mission-text h2 em {
  color: var(--gold);
  font-style: normal;
}

.mission-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.mission-icons {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding-top: 20px;
}

.mission-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  flex: 1;
  max-width: 160px;
}

.mission-icon-item .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.6rem;
}

.mission-icon-item span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

/* ============================================================
   GENERAL BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--navy-dark);
  color: var(--white);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
#site-footer {
  background-color: var(--white);
  border-top: 3px solid var(--gold-border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-info {
  flex: 1;
}

.footer-info strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  display: block;
}

.footer-info address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  transition: background var(--transition);
}

.footer-social a:hover { background-color: var(--gold); color: var(--navy-dark); }

.footer-copy {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: right;
}

/* ============================================================
   PAGE / POST TEMPLATE  (inner pages — no slider/news)
   ============================================================ */
/* ── Inner page layout ─────────────────────────────────────── */

/* Cream side gutters */
#content-wrapper {
  background-color: var(--cream);
  padding: 40px 0 64px;
  min-height: calc(100vh - 400px);
}

/* White centred column — everything inside is on white */
#content-wrapper .page-content-area {
  background: #ffffff !important;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 56px 64px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  border-radius: 4px;
}

.page-content-area h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding-bottom: 12px;
}

/* Hide the auto-inserted page title on the front page */
.home .page-content-area,
.home .entry-header,
.home .entry-title {
  display: none;
}

/* Entry title styling inside white card */
.entry-title {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Override any plugin/WP default background on body for inner pages */
body.single,
body.page:not(.home) {
  background-color: var(--cream) !important;
}

.page-content-area h2 { font-size: 1.5rem; margin: 28px 0 12px; color: var(--navy); }

/* Restore list styles inside ALL content areas */
.page-content-area ul,
.entry-content ul,
#content-wrapper ul,
.wp-block-list,
div.entry-content ul {
  list-style: disc !important;
  padding-left: 2em !important;
  margin-bottom: 1rem !important;
}

.page-content-area ol,
.entry-content ol,
#content-wrapper ol {
  list-style: decimal !important;
  padding-left: 2em !important;
  margin-bottom: 1rem !important;
}

.page-content-area li,
.entry-content li,
#content-wrapper li {
  margin-bottom: 0.4rem !important;
  line-height: 1.65 !important;
  display: list-item !important;
}

.page-content-area ul ul,
.entry-content ul ul { list-style: circle !important; margin-bottom: 0 !important; }

.page-content-area ul ul ul,
.entry-content ul ul ul { list-style: square !important; }

.entry-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.entry-footer {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 2px solid var(--cream-dark);
}

.entry-tags {
  font-size: 0.85rem;
  color: var(--text-light);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: 20px;
}
.page-content-area h3 { font-size: 1.2rem; margin: 20px 0 10px; color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet landscape ── */
@media (max-width: 1100px) {
  .slider-btn.prev { left: 4px; }
  .slider-btn.next { right: 4px; }
  .container { padding: 0 20px; }
}

/* ── Tablet portrait ── */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .mission-inner { grid-template-columns: 1fr; gap: 30px; }
  .mission-icons { justify-content: center; }
  #mission-section { padding: 40px 0; }
}

/* ── Mobile (≤768px) — main breakpoint ── */
@media (max-width: 768px) {

  /* Hide slider on mobile */
  #hero-slider-section { display: none !important; }

  /* Header — use taller stacked mobile image */
  #site-header .header-banner {
    height: auto;
    min-height: 200px;
    object-fit: cover;
    object-position: center center;
    /* swap to mobile header via content-visibility */
  }

  /* Show mobile header image, hide desktop one */
  .header-banner-desktop { display: none !important; }
  .header-banner-mobile  { display: block !important; width: 100%; height: auto; }

  /* Nav — collapse to MENU button */
  #site-nav .nav-inner {
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 0;
    align-items: stretch;
    min-height: 44px;
  }

  .nav-toggle {
    display: flex;
    margin: 0;
    padding: 0 20px;
  }

  #primary-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-dark);
    width: 100%;
    border-top: 2px solid var(--gold-border);
  }

  #primary-menu.open { display: flex; }

  #primary-menu > li > a {
    padding: 15px 20px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 0.06em;
  }

  #primary-menu .sub-menu {
    position: static;
    display: none;
    background: rgba(0,0,0,0.2);
    border-top: none;
    box-shadow: none;
  }

  #primary-menu li.open > .sub-menu { display: block; }
  #primary-menu .sub-menu li a { padding-left: 36px; font-size: 0.875rem; }

  /* Slider */
  #hero-slider-section { padding: 16px 0; }
  .slider-wrapper { max-width: 100%; }
  .slide { height: 240px; }
  .slide-caption h2 { font-size: 1.4rem; }
  .slide-caption { padding: 20px; }
  .slider-btn { display: none; }
  .slider-dots { margin-top: 10px; }
  .slider-dot { width: 12px; height: 12px; }

  /* News grid — single column on mobile */
  #news-section { padding: 24px 0 24px !important; margin-top: 24px !important; }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-card-image { height: 180px; }

  .news-card-body h3 { font-size: 1rem; }
  .news-card-body p  { font-size: 0.9rem; }

  .news-date-badge .day { font-size: 3rem; }

  /* Mission section */
  #mission-section { padding: 32px 0; }

  .mission-text h2 { font-size: 1.5rem; }
  .mission-text p  { font-size: 1rem; }

  .mission-icons {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .mission-icon-item .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .mission-icon-item span { font-size: 0.9rem; }

  /* Inner page content */
  .page-content-area {
    margin: 24px auto;
    padding: 0 16px;
  }

  .page-content-area h1 { font-size: 1.6rem; }
  .page-content-area h2 { font-size: 1.3rem; }

  /* Footer */
  #site-footer { padding: 20px 0; }

  .footer-inner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-copy {
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .footer-logo { width: 55px; height: 55px; }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Header image even taller on small phones */
  #site-header .header-banner {
    min-height: 180px;
  }

  /* Nav */
  #primary-menu > li > a { font-size: 1rem; padding: 16px 18px; }

  /* Slider */
  .slide { height: 200px; }
  .slide-caption h2 { font-size: 1.2rem; }
  .slide-caption .btn-learn { font-size: 0.85rem; padding: 8px 18px; }

  /* News */
  .news-card-image { height: 160px; }
  .news-grid { gap: 12px; }

  /* Mission */
  .mission-text h2 { font-size: 1.3rem; }
  .mission-icons { gap: 16px; }
  .mission-icon-item .icon-circle { width: 60px; height: 60px; font-size: 1.5rem; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-info { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-social a { width: 40px; height: 40px; font-size: 1rem; }

  /* Larger tap targets */
  a, button { min-height: 44px; }
  .btn { padding: 12px 28px; font-size: 1rem; }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .slide-caption h2 { font-size: 1.05rem; }
  .mission-text h2  { font-size: 1.15rem; }
  .news-card-body h3 { font-size: 0.95rem; }
}

/* ============================================================
   STICKY NAV SHADOW
   ============================================================ */

#site-nav.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* Ensure desktop header-mobile class stays hidden on desktop */
@media (min-width: 769px) {
  .header-banner-mobile { display: none !important; }
  .header-banner-desktop { display: block !important; }
}

/* Mission icon links */
.mission-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.mission-icon-link:hover,
.mission-icon-link:focus {
  transform: translateY(-4px);
  color: var(--gold) !important;
}

.mission-icon-link:hover .icon-circle,
.mission-icon-link:focus .icon-circle {
  background-color: var(--gold) !important;
  color: var(--white) !important;
}

.mission-icon-link:hover span,
.mission-icon-link:focus span {
  color: var(--gold) !important;
}

/* Ensure icon-circle transition is smooth */
.mission-icon-item .icon-circle {
  transition: background-color 0.25s ease, color 0.25s ease;
}

.mission-icon-item span {
  transition: color 0.25s ease;
}
