/* RECOGNITION AWARD CARDS */

.recognition-award-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.recognition-award-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.recognition-award-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 1.45rem;
}

.recognition-award-card p {
  min-height: 52px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
}

.recognition-award-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(0,0,0,.16);
}

@media (max-width: 800px) {
  .recognition-award-grid {
    grid-template-columns: 1fr;
  }

  .recognition-award-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .recognition-award-card p {
    min-height: 0;
  }
}/* ======================================
   NEW YORK STATE MOOSE ASSOCIATION
   Official Website
   Version 1.0
====================================== */

:root {
  --navy: #062553;
  --navy-dark: #041b3d;
  --gold: #c9901f;
  --gold-light: #e0aa35;
  --green: #15733b;
  --cream: #f8f5ef;
  --white: #ffffff;
  --text: #12213a;
  --muted: #555;
  --line: #e2e2e2;
  --shadow: 0 7px 20px rgba(0,0,0,.14);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #111;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
}

.site-wrapper {
  max-width: var(--max-width);
  margin: 14px auto;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

/* HEADER */

.site-header {
  min-height: 156px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.96) 34%,
      rgba(255,255,255,.82) 60%,
      rgba(255,255,255,.30) 82%,
      rgba(255,255,255,0) 100%
    ),
    url("../images/backgrounds/adirondack-header.jpg") right center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 18px 34px;
  border-bottom: 1px solid rgba(6,37,83,.12);
}

.header-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.state-logo {
  width: 132px;
  height: 145px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-title h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.05vw, 3.55rem);
  line-height: .91;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: .012em;
  text-shadow: 0 1px 0 rgba(255,255,255,.75);
}

.site-title p {
  margin: 11px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 1.28rem;
}

/* NAVIGATION */

.main-nav {
  background: var(--navy-dark);
}

.menu-toggle {
  display: none;
  width: 100%;
  padding: 14px;
  background: var(--navy-dark);
  color: white;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: .78rem;
  padding: 17px 13px;
  transition: background .18s ease, color .18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--gold);
}

/* MAIN */

main {
  padding: 24px 30px 26px;
  background: linear-gradient(#fff, #fbfbfb);
}

/* SECTION TITLE */

.section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 10px 0 28px;
}

.section-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  text-transform: uppercase;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: .02em;
}

.section-title span {
  width: 50px;
  height: 2px;
  background: var(--gold);
}

/* HOT TOPIC CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.card-image {
  height: 142px;
  background: linear-gradient(135deg, #9eb5cc, #315a80);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.card-image.convention,
.convention {
  background-image: url("../images/events/state-convention-registration.JPG");
}

.card-image.hotel {
  background-image: url("../images/hotels/doubletree-binghamton-card.jpg");
  background-size: cover;
  background-position: center 42%;
}

.card-image.president {
  background-image: url("../images/officers/frank-brodfuehrer.jpeg");
  background-size: 72%;
  background-position: center 22%;
  background-repeat: no-repeat;
  background-color: #ececec;
}

.card-image.grants {
  background: url("../images/lodges/celoron-lodge-card.jpg") center center / cover no-repeat;
  background-color: #ececec;
}

.card-image.campaign {
  background: white url("../images/campaigns/mi-2026-growing-to-serve.png") center center / 80% no-repeat;
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-icon {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: white;
  border: 4px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 3px 8px rgba(0,0,0,.18);
}

.card-icon.gold {
  background: var(--gold);
}

.card-icon.green {
  background: var(--green);
}

.card-body {
  padding: 40px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 1.03rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.card-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.button {
  margin-top: auto;
  align-self: center;
  display: inline-block;
  background: var(--navy);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 5px;
  transition: background .18s ease, transform .18s ease;
}

.button:hover {
  background: #0a3472;
  transform: translateY(-1px);
}

.button.gold {
  background: var(--gold);
}

.button.gold:hover {
  background: var(--gold-light);
}

/* INFORMATION PANELS */

.info-panels {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
  background: white;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.info-icon.gold {
  background: var(--gold);
}

.info-icon.green {
  background: var(--green);
}

.info-heading {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.info-box h3 {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 1.05rem;
  font-family: Georgia, "Times New Roman", serif;
}

.info-box p,
.info-box li,
.event-row {
  font-size: .92rem;
  color: var(--muted);
}

.event-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.event-row strong {
  color: var(--gold);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  margin: 7px 0;
  padding-left: 20px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: bold;
}

.info-box a {
  color: var(--navy);
  font-weight: bold;
  text-decoration: none;
}

.info-box a:hover {
  color: var(--gold);
}

.panel-link {
  display: inline-block;
  margin-top: 12px;
  text-transform: uppercase;
  font-size: .84rem;
}

.social-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  align-items: flex-start;
}

.social-row a {
  text-decoration: none;
  font-weight: bold;
}

/* COMING SOON PAGE */

.coming-box {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.coming-photo {
  width: 100%;
  max-width: 760px;
  border-radius: 10px;
  margin-bottom: 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.coming-box h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 1.7rem;
  margin: 24px 0 14px;
}

.coming-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.coming-list {
  display: inline-block;
  text-align: left;
  margin: 20px auto 30px;
  padding-left: 24px;
  line-height: 2;
  font-size: 1.05rem;
}

.coming-list li {
  margin-bottom: 6px;
}

.coming-divider {
  width: 140px;
  margin: 34px auto;
  border: 0;
  border-top: 2px solid var(--gold);
}

/* CONTENT PAGES */

.content-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.content-photo {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.content-box h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 1.7rem;
  margin: 24px 0 14px;
}

.content-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.content-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 36px 0 12px;
}

/* GRANTS PAGE */

.grant-highlight {
  background: #f8f5ef;
  border: 2px solid var(--gold);
  border-left: 8px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  text-align: center;
}

.grant-highlight h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.grant-highlight p {
  margin: 10px 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
}

.grant-deadline {
  text-align: center;
  font-style: italic;
  color: #666;
  margin: 16px 0 22px;
}

/* CONTACT PAGE */

.contact-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 40px;
  align-items: start;
  background: #f8f5ef;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  padding: 24px 32px;
  margin: 28px 0 40px;
}

.contact-photo {
  width: 190px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  background: #eee;
}

.contact-details {
  width: 100%;
  min-width: 450px;
  max-width: 850px;
}

.contact-details h3 {
  margin-top: 0;
}

.contact-details h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 1.45rem;
  margin: 8px 0 12px;
}

.contact-details p {
  line-height: 1.65;
  margin: 12px 0;
}

.contact-title {
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 6px;
}

.info-note {
  width: 100%;
  max-width: 1000px;
  background: #f8f5ef;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  padding: 28px 36px;
  margin: 40px auto 32px;
  box-sizing: border-box;
}

.info-note h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 1.55rem;
  margin: 0 0 10px;
}

.info-note h3:not(:first-child) {
  margin-top: 26px;
}

.info-note p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 20px 0;
  color: #444;
  max-width: none;
}

/* CALENDAR PAGE */

.calendar-wrap {
  width: 100%;
  margin: 28px 0 20px;
  padding: 14px;
  background: #f8f5ef;
  border-left: 6px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 7px 20px rgba(0,0,0,.12);
}

.calendar-wrap iframe {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: #ffffff;
}

.calendar-note {
  text-align: center;
  font-style: italic;
  color: #666;
}

/* CONVENTION PAGE */

.convention-hero {
  text-align: center;
  background: var(--navy);
  color: white;
  padding: 34px 24px;
  border-radius: 12px;
  margin: 10px auto 28px;
  max-width: 900px;
  border: 4px solid var(--gold);
}

.convention-hero h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.convention-hero h3 {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin: 8px 0;
}

.convention-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.convention-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}

.convention-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  text-transform: uppercase;
}

.convention-card h4 {
  color: #9b1c1c;
  margin: 8px 0;
  font-size: 1.15rem;
}

.convention-photo,
.official-visitor-photo {
  width: 100%;
  max-height: 210px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.official-visitor-photo {
  border: 4px solid #9b1c1c;
}

.convention-card-icon {
  font-size: 4rem;
  margin: 20px 0;
}

.banquet-banner {
  margin: 34px 0;
  padding: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3a2415, #111);
  color: white;
  border: 4px solid var(--gold);
  text-align: center;
}

.banquet-banner h2 {
  margin: 0;
  color: var(--gold-light);
  text-transform: uppercase;
}

.banquet-banner h3 {
  font-size: 3rem;
  color: #c92b2b;
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
}

.spring-conference-box {
  text-align: center;
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: 12px;
  padding: 28px;
  margin: 30px auto;
  max-width: 900px;
}

.spring-conference-box h2,
.spring-conference-box h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
}

/* CONFERENCES & CONVENTIONS PAGE */

.conf-hero {
  background: linear-gradient(rgba(255,255,255,.25), rgba(255,255,255,.2)),
              url("../images/events/binghamton-banner.jpg") center center / cover no-repeat;
  border-bottom: 4px solid var(--gold);
  border-radius: 0 0 12px 12px;
  margin-bottom: 28px;
}

.conf-hero-overlay {
  text-align: center;
  padding: 46px 24px 34px;
}

.conf-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 3rem;
  margin: 0 0 10px;
}

.conf-hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.conf-badge {
  background: var(--navy);
  color: white;
  border: 4px solid var(--gold);
  border-radius: 18px;
  max-width: 560px;
  margin: 0 auto;
  padding: 24px;
  box-shadow: var(--shadow);
}

.conf-badge h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 2rem;
}

.conf-badge h3 {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin: 8px 0;
}

.conf-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.conf-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}

.conf-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.conf-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  text-transform: uppercase;
}

.conf-card h4 {
  color: #9b1c1c;
  margin: 8px 0;
  font-size: 1.15rem;
}

.visitor-photo {
  border: 4px solid #9b1c1c;
}

.conf-icon {
  font-size: 4rem;
  margin: 30px 0;
}

.redneck-banner {
  margin: 34px 0;
  padding: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3a2415, #111);
  color: white;
  border: 4px solid var(--gold);
  text-align: center;
  box-shadow: var(--shadow);
}

.redneck-banner h2 {
  margin: 0;
  color: var(--gold-light);
  text-transform: uppercase;
}

.redneck-banner h3 {
  font-size: 3.2rem;
  color: #c92b2b;
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
}

.spring-preview {
  text-align: center;
  background: var(--cream);
  border: 3px solid var(--navy);
  border-radius: 12px;
  padding: 28px;
  margin: 30px auto;
  max-width: 900px;
}

.spring-preview h2,
.spring-preview h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
}

/* CONFERENCE HERO IMAGE */

.conference-hero {
  max-width: 1180px;
  margin: 28px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--gold);
}

.conference-hero-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* FOOTER */

.site-footer {
  background: var(--navy-dark);
  color: white;
  text-align: center;
  padding: 22px;
}

.site-footer p {
  margin: 4px 0;
}

/* TABLET */

@media (max-width: 1050px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-panels {
    grid-template-columns: 1fr;
  }

  .nav-links a {
    font-size: .72rem;
    padding: 15px 10px;
  }
}

@media (max-width: 900px) {
  .convention-card-grid,
  .conf-card-grid {
    grid-template-columns: 1fr;
  }

  .conf-hero h1 {
    font-size: 2rem;
  }

  .conference-hero {
    margin: 18px 12px;
  }

  .conference-hero-image {
    height: 230px;
  }
}

/* PHONE */

@media (max-width: 720px) {
  body {
    background: white;
  }

  .site-wrapper {
    margin: 0;
    max-width: none;
    box-shadow: none;
  }

  .site-header {
    min-height: 116px;
    padding: 14px 18px;
    background:
      linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,.92)),
      url("../images/backgrounds/adirondack-header.jpg") right center / cover no-repeat;
  }

  .header-content {
    gap: 14px;
  }

  .state-logo {
    width: 78px;
    height: 78px;
  }

  .site-title h1 {
    font-size: 1.35rem;
    line-height: .95;
  }

  .site-title p {
    font-size: .9rem;
    margin-top: 6px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: .95rem;
  }

  main {
    padding: 22px 18px;
  }

  .section-title span {
    display: none;
  }

  .section-title h2 {
    font-size: 2rem;
    text-align: center;
  }

  .card-grid,
  .feature-grid,
  .feature-cards,
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .card-image {
    height: 165px;
  }

  .info-box {
    grid-template-columns: 1fr;
  }

  .event-row {
    grid-template-columns: 1fr;
  }

  .content-box,
  .coming-box,
  .info-note {
    padding: 22px;
    margin: 20px 12px;
  }

  .coming-photo,
  .hero-photo,
  .content-box img {
    width: 100%;
    height: auto;
  }

  .grant-highlight {
    padding: 20px;
    margin: 24px 0;
  }

  .grant-highlight h3 {
    font-size: 1.35rem;
  }

  .grant-highlight p {
    font-size: 1rem;
  }

  .content-button-row {
    flex-direction: column;
    align-items: center;
  }

  .content-button-row .button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
    margin: 20px 10px 40px;
    overflow: hidden;
  }

  .contact-details {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .contact-photo {
    width: 180px;
    height: 210px;
    max-width: 100%;
    margin: 0 auto 18px;
  }

  .contact-details h3,
  .contact-details h4 {
    white-space: normal;
  }

  .calendar-wrap {
    margin: 20px 0;
    padding: 8px;
  }

  .calendar-wrap iframe {
    height: 700px;
  }
}/* ======================================
   PRESIDENT'S MESSAGE PAGE
====================================== */

.president-header {
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  align-items: center;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.president-photo {
  width: 190px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 4px solid var(--gold);
  border-radius: 14px;
  background: #eeeeee;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.16);
}

.president-header-text {
  min-width: 0;
}

.president-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.president-header-text h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.14;
}

.president-name {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: bold;
}

.president-title {
  margin: 5px 0 0;
  color: var(--muted);
  font-weight: bold;
}

.president-message {
  max-width: 980px;
  margin: 0 auto;
  padding: 42px 48px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.president-message p,
.president-message li {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.75;
}

.president-opening {
  margin: 0 0 30px;
  padding: 0 0 24px;
  color: var(--text);
  font-size: 1.12rem !important;
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 144, 31, 0.45);
}

.president-section {
  margin-top: 30px;
}

.president-section h3 {
  margin: 0 0 14px;
  padding-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.25;
  border-bottom: 2px solid var(--gold);
}

.president-section p {
  margin: 0 0 16px;
}

.president-list {
  margin: 14px 0 0;
  padding-left: 24px;
}

.president-list li {
  margin-bottom: 16px;
  padding-left: 5px;
}

.president-list li::marker {
  color: var(--gold);
}

.president-list strong {
  color: var(--navy);
}

.president-thanks {
  margin: 34px 0 28px;
  color: var(--navy) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem !important;
  font-weight: bold;
  text-align: center;
}

.president-signature-name {
  color: var(--navy) !important;
  font-family: "Segoe Script", "Brush Script MT", "Apple Chancery", cursive;
  font-size: 2rem !important;
  font-weight: normal;
  line-height: 1.25;
}

.president-signature p {
  margin: 2px 0;
}

.president-signature-name {
  color: var(--navy) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem !important;
  font-weight: bold;
}

@media (max-width: 720px) {

  .president-header {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    text-align: center;
  }

  .president-photo {
    width: 170px;
    height: 200px;
    margin: 0 auto;
  }

  .president-header-text h3 {
    font-size: 1.8rem;
  }

  .president-message {
    padding: 26px 22px;
    border-width: 2px;
    border-radius: 14px;
  }

  .president-message p,
  .president-message li {
    font-size: 1rem;
    line-height: 1.68;
  }

  .president-section h3 {
    font-size: 1.35rem;
  }

  .president-signature {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }
}.president-message .president-signature .president-signature-name {
  font-family: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive !important;
  font-size: 2.3rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}
/* =========================
   WOTM RALLY DAY PAGE
   ========================= */

.wotm-rally-section {
  display: flex;
  justify-content: center;
  padding: 36px 20px 50px;
}

.wotm-rally-image {
  display: block;
  width: 100%;
  max-width: 875px;
  height: auto;
  border: 4px solid #c9a227;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
/* ======================================
   SMARTPHONE NAVIGATION ENHANCEMENTS
   Add at the very bottom of styles.css
====================================== */

@media (max-width: 720px) {

  /* MOBILE HEADER */

  .site-header {
    min-height: 112px;
    padding: 12px 14px;
  }

  .header-content {
    width: 100%;
    gap: 12px;
  }

  .state-logo {
    width: 82px;
    height: 82px;
  }

  .site-title {
    min-width: 0;
  }

  .site-title h1 {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0;
  }

  .site-title p {
    margin-top: 7px;
    font-size: 0.9rem;
    line-height: 1.2;
  }


  /* MOBILE MENU BUTTON */

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    width: 100%;
    min-height: 64px;
    padding: 18px;
    background: var(--navy-dark);
    color: var(--white);
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: .03em;
    cursor: pointer;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: var(--navy);
    outline: 3px solid var(--gold);
    outline-offset: -3px;
  }


  /* MOBILE NAVIGATION LINKS */

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-dark);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    border-top: 1px solid rgba(255,255,255,.16);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .015em;
    text-align: center;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.active {
    background: var(--gold);
    color: var(--navy-dark);
    outline: none;
  }


  /* MAIN PAGE SPACING */

  main {
    padding: 20px 14px 26px;
  }

  .section-title {
    margin: 8px 0 24px;
  }

  .section-title h2 {
    font-size: 1.7rem;
    line-height: 1.15;
  }


  /* HOMEPAGE CARDS */

  .card-grid {
    gap: 24px;
  }

  .feature-card {
    width: 100%;
    max-width: none;
  }

  .card-image {
    height: 185px;
  }

  .card-body {
    padding: 42px 20px 22px;
  }

  .card-body h3 {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .card-body p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    min-height: 48px;
    padding: 12px 18px;
    font-size: .92rem;
  }


  /* INFORMATION PANELS */

  .info-panels {
    gap: 22px;
  }

  .info-box {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .info-icon {
    margin: 0 auto;
  }

  .info-content {
    width: 100%;
    text-align: center;
  }

  .info-box h3 {
    font-size: 1.15rem;
  }

  .info-box p,
  .info-box li,
  .event-row {
    font-size: 1rem;
    line-height: 1.5;
  }

  .event-row {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .check-list {
    display: inline-block;
    text-align: left;
  }

  .check-list li {
    margin: 11px 0;
  }

  .panel-link {
    margin-top: 18px;
    font-size: .92rem;
  }

  .social-row {
    width: 100%;
    align-items: stretch;
  }

  .social-row a {
    display: block;
    width: 100%;
    padding: 13px 14px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 6px;
    text-align: center;
  }


  /* FOOTER */

  .site-footer {
    padding: 24px 16px;
  }

  .site-footer p {
    line-height: 1.45;
  }
}


/* SMALLER SMARTPHONES */

@media (max-width: 420px) {

  .state-logo {
    width: 72px;
    height: 72px;
  }

  .site-title h1 {
    font-size: 1.2rem;
  }

  .site-title p {
    font-size: .8rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .card-image {
    height: 170px;
  
}
.page-image-container {
  width: 100%;
  max-width: 1100px;
  margin: 25px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-feature-image {
  display: block;
  width: 100%;
  height: auto;
  border: 4px solid #c9a227;
  border-radius: 18px;
  box-sizing: border-box;
}
	
	/* Consistent featured images for Training and Sports */

.page-image-container {
  width: 100%;
  max-width: 1100px;
  margin: 25px auto;
  box-sizing: border-box;
}

.page-feature-image {
  display: block;
  width: 100%;
  height: auto;
  border: 4px solid #c9a227;
  border-radius: 18px;
  box-sizing: border-box;
}
	
	/* RECOGNITION FEATURE PHOTO */

.recognition-feature {
  max-width: 1080px;
  margin: 34px auto 0;
  text-align: center;
}

.recognition-feature-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 5px solid var(--gold);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.recognition-feature figcaption {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: bold;
}
}
/* RECOGNITION FEATURE PHOTO */

.recognition-feature {
  width: 100%;
  max-width: 1080px;
  margin: 38px auto 0;
  text-align: center;
}

.recognition-feature-photo {
  display: block;
  width: 100%;
  height: auto;
  border: 5px solid var(--gold);
  border-radius: 16px;
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

.recognition-feature figcaption {
  max-width: 980px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.recognition-feature figcaption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.recognition-feature figcaption span {
  display: block;
}

@media (max-width: 720px) {

  .recognition-feature {
    margin-top: 28px;
  }

  .recognition-feature-photo {
    border-width: 4px;
    border-radius: 12px;
  }

  .recognition-feature figcaption {
    font-size: .95rem;
  }

  .recognition-feature figcaption strong {
    font-size: 1.22rem;
  }
}.documents-intro p {
  margin: 0;
}

.documents-intro p + p {
  margin-top: 8px;
}

	
	