/* ===========================
   TMFHF – Global Styles
   Inspired by USS Missouri site
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  --navy:   #0a1628;
  --navy2:  #122040;
  --gold:   #c9941a;
  --gold2:  #e0a820;
  --cream:  #f5f1e8;
  --white:  #ffffff;
  --gray:   #5a6070;
  --light:  #edf0f5;
  --text:   #1a1e2a;
  --radius: 0px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
}

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

a { color: inherit; }

/* ---- UTILITY ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 30px; }
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* Hero eyebrow gets extra visibility treatment */
.hero-content .eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold2);
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  background: rgba(10,22,40,0.45);
  display: inline-block;
  padding: 4px 12px 4px 0;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.body-text { font-size: 17px; color: var(--gray); max-width: 700px; line-height: 1.75; }
.body-text.light { color: #ccd4e0; }

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-gold     { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold2); border-color: var(--gold2); }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy     { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy2); }

/* ======= TOP BAR ======= */
.top-bar {
  background: var(--navy2);
  color: #aab4c4;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: #aab4c4; text-decoration: none; }
.top-bar a:hover { color: var(--gold); }

/* ======= HEADER / NAV ======= */
.site-header {
  background: var(--navy);
  border-bottom: 4px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.brand-shield {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  clip-path: polygon(50% 0%, 100% 15%, 100% 75%, 50% 100%, 0% 75%, 0% 15%);
  flex-shrink: 0;
}
.brand-text { color: var(--white); line-height: 1.2; }
.brand-text strong { font-family: 'Oswald', sans-serif; font-size: 17px; display: block; letter-spacing: 0.5px; }
.brand-text span   { font-size: 11px; color: #8a9ab5; letter-spacing: 2px; text-transform: uppercase; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > .nav-item { position: relative; }
.main-nav > .nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #c8d0e0;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 13px;
  height: 90px;
  border-bottom: 4px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav > .nav-item > a:hover,
.main-nav > .nav-item > a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.nav-item .arrow { font-size: 9px; transition: transform 0.2s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 90px;
  left: 0;
  background: var(--navy2);
  min-width: 220px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  color: #c8d0e0;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.dropdown a:hover { color: var(--gold); border-left-color: var(--gold); background: rgba(255,255,255,0.04); }

/* Donate button in nav */
.nav-donate {
  background: var(--gold);
  color: var(--navy) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  border: 2px solid var(--gold);
  margin-left: 8px;
  transition: all 0.2s;
}
.nav-donate:hover { background: var(--gold2); border-color: var(--gold2); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--white);
  font-size: 22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ======= HERO SECTION ======= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy) center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.60) 60%,
    rgba(10,22,40,0.20) 100%
  );
}

/* Slideshow layer */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 60px;
}

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-content .hero-sub {
  font-size: 18px;
  color: #e8edf5;
  max-width: 580px;
  margin-bottom: 35px;
  line-height: 1.7;
  background: rgba(10, 22, 40, 0.52);
  display: inline-block;
  padding: 10px 16px;
  border-left: 3px solid var(--gold);
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slide controls */
.slide-controls {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.slide-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.slide-dot.active { background: var(--gold); border-color: var(--gold); }

/* ======= STAT BAR ======= */
.stat-bar {
  background: var(--navy2);
  border-top: 3px solid var(--gold);
}
.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
  margin: 0 auto;
}
.stat-item {
  padding: 28px 30px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 12px;
  color: #8a9ab5;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  margin-top: 2px;
}

/* ======= MISSION SECTION ======= */
.mission-section {
  background: var(--white);
  padding: 90px 30px;
  text-align: center;
}
.mission-section .section-title { margin: 0 auto 18px; }
.mission-section .body-text { margin: 0 auto 35px; color: #555d6e; }
.mission-divider {
  width: 70px; height: 4px;
  background: var(--gold);
  margin: 0 auto 35px;
}

/* ======= CARDS GRID ======= */
.cards-section { padding: 80px 30px; background: var(--cream); }
.cards-section .section-header { text-align: center; margin-bottom: 50px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(10,22,40,0.10);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(10,22,40,0.18); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.card-body p { font-size: 15px; color: var(--gray); flex: 1; margin-bottom: 18px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.card-link::after { content: '→'; }
.card-link:hover { color: var(--navy); }

/* ======= CTA DARK SECTION ======= */
.cta-dark {
  background: var(--navy);
  background-image: url('../images/hero-5.JPG');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 30px;
  text-align: center;
  position: relative;
}
.cta-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.78);
}
.cta-dark-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-dark .section-title { color: var(--white); margin-bottom: 18px; }
.cta-dark .body-text { color: #a8b4c8; margin: 0 auto 35px; }

/* ======= LEADERSHIP SECTION ======= */
.leadership-section { padding: 90px 30px; background: var(--white); }
.leadership-section .section-header { margin-bottom: 50px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--light);
  margin-bottom: 16px;
}
.team-name {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role { font-size: 13px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; font-family: 'Oswald', sans-serif; }

/* ======= PAGE HERO (inner pages) ======= */
.page-hero {
  background: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 100px 30px 70px;
  position: relative;
  border-bottom: 5px solid var(--gold);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.82);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.page-hero p { font-size: 17px; color: #a8b4c8; max-width: 600px; }

/* ======= CONTENT BLOCK (inner pages) ======= */
.content-block {
  max-width: 960px;
  margin: 60px auto;
  padding: 0 30px;
}
.content-block p { font-size: 17px; color: #3a4255; margin-bottom: 20px; line-height: 1.8; }
.content-block h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: var(--navy);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.content-block ul { margin: 0 0 20px 22px; }
.content-block ul li { font-size: 17px; color: #3a4255; margin-bottom: 8px; }

/* Membership tiers */
.membership-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin: 30px 0; }
.mem-tier {
  border: 2px solid var(--light);
  padding: 28px 24px;
  background: var(--white);
}
.mem-tier.featured { border-color: var(--gold); background: var(--navy); color: var(--white); }
.mem-tier h3 { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--navy); margin-bottom: 6px; }
.mem-tier.featured h3 { color: var(--gold); }
.mem-price { font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--gold); margin-bottom: 14px; }
.mem-tier ul { list-style: none; margin: 0; }
.mem-tier ul li::before { content: '✓ '; color: var(--gold); font-weight: bold; }
.mem-tier ul li { font-size: 14px; color: #4a5260; padding: 4px 0; }
.mem-tier.featured ul li { color: #b0bcd0; }

/* Zeffy embed wrapper */
.embed-wrap { position: relative; overflow: hidden; height: 500px; width: 100%; margin: 20px 0; }
.embed-wrap iframe { position: absolute; border: 0; top: 0; left: 0; width: 100%; height: 100%; }

/* ======= FOOTER ======= */
.site-footer {
  background: #060e1a;
  color: #6a7a95;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 30px 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-mark {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 15%, 100% 75%, 50% 100%, 0% 75%, 0% 15%);
}
.footer-logo-text strong { font-family: 'Oswald', sans-serif; font-size: 15px; color: var(--white); display: block; }
.footer-logo-text span { font-size: 11px; color: #4a5a70; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: #6a7a95; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 22px 30px;
  font-size: 12px;
  color: #3a4a5a;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav, .top-bar { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 90px;
    left: 0; right: 0;
    background: var(--navy2);
    border-top: 3px solid var(--gold);
    padding: 20px;
    gap: 0;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open .nav-item { width: 100%; }
  .main-nav.open .nav-item > a { height: auto; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown { position: static; display: none; border-top: none; box-shadow: none; background: rgba(0,0,0,0.2); }
  .nav-item.open .dropdown { display: block; }
  .hero-content { padding: 50px 25px 60px; }
  .cards-grid { grid-template-columns: 1fr; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .nav-donate { display: none; }
}

@media (max-width: 480px) {
  .stat-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ======= REAL LOGO IMAGE ======= */
.brand-logo-img {
  height: 74px;
  width: auto;
  max-width: 200px;
  display: block;
  background: var(--white);
  border-radius: 6px;
  padding: 6px 10px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Footer logo image */
.footer-logo-img {
  height: auto;
  width: 200px;
  max-width: 200px;
  display: block;
  background: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 18px;
  object-fit: contain;
}

/* ======= PRESIDENT'S WELCOME SECTION ======= */
.president-section {
  background: var(--cream);
  padding: 90px 30px;
  border-top: 1px solid rgba(10,22,40,0.08);
}

.president-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.president-photo-col {
  text-align: center;
}

.president-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border: 5px solid var(--white);
  box-shadow: 0 8px 30px rgba(10,22,40,0.18);
  margin-bottom: 16px;
}

.president-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.president-caption strong {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.president-caption span {
  font-size: 12px;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.president-text-col p {
  font-size: 16px;
  color: #3a4255;
  line-height: 1.85;
  margin-bottom: 18px;
}

.president-sig {
  font-style: italic;
  color: var(--navy) !important;
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  margin: 24px 0 !important;
  line-height: 1.7 !important;
}

.president-sig strong {
  font-style: normal;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* ======= MUSEUM NAV LINK — external indicator ======= */
.main-nav .nav-item a[target="_blank"] {
  color: #c8d0e0;
}
.main-nav .nav-item a[target="_blank"]:hover {
  color: var(--gold);
}

/* Footer external link */
.footer-col ul li a[target="_blank"] {
  color: #6a7a95;
}
.footer-col ul li a[target="_blank"]:hover {
  color: var(--gold);
}

/* ======= RESPONSIVE: President section ======= */
@media (max-width: 900px) {
  .president-inner {
    grid-template-columns: 220px 1fr;
    gap: 36px;
  }
}

@media (max-width: 650px) {
  .president-inner {
    grid-template-columns: 1fr;
  }
  .president-photo {
    aspect-ratio: 1;
    max-width: 240px;
    margin: 0 auto 16px;
  }
  .president-photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* ======= OFFICERS / BOARD LAYOUT ENHANCEMENTS ======= */

/* Section divider label between Officers and Board Members rows */
.officers-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 28px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

/* Officers row: exactly 4 columns, centred, slightly larger cards */
.officers-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0;
}

/* Officer card highlight: gold top border accent */
.officer-card {
  position: relative;
  border-top: 3px solid var(--gold);
  padding-top: 12px;
}

/* Photo placeholder for missing photos (uses logo as stand-in) */
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--light);
  border: 4px solid var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.placeholder-logo {
  width: 70%;
  height: 70%;
  object-fit: contain;
  padding: 8px;
}

/* "Photo coming soon" note under placeholder name */
.team-photo-note {
  font-size: 11px;
  color: var(--gray);
  font-style: italic;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Responsive: officers collapse to 2 col on tablet */
@media (max-width: 900px) {
  .officers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .officers-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ======= PRESIDENT HEADING — two-line elegant format ======= */
.president-heading {
  margin-bottom: 24px;
  line-height: 1.1;
}

.president-heading-top {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: var(--gray);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.president-heading-main {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

/* ======= OUR SPONSORS SECTION ======= */
.sponsors-section {
  background: var(--white);
  padding: 80px 30px 60px;
  border-top: 1px solid rgba(10,22,40,0.08);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 36px;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light);
  padding: 16px 20px;
  min-height: 110px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  overflow: hidden;
}

.sponsor-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(10,22,40,0.10);
}

/* Real sponsor logo images — shown exactly as provided */
.sponsor-logo {
  width: 100%;
  max-width: 180px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.sponsors-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin: 0 auto;
}

.sponsors-note a {
  color: var(--gold);
  text-decoration: underline;
}

/* ======= CONNECT WITH US SECTION ======= */
.connect-section {
  background: var(--cream);
  padding: 70px 30px;
  border-top: 1px solid rgba(10,22,40,0.08);
}

.connect-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.connect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--light);
  padding: 32px 40px;
  text-decoration: none;
  color: var(--navy);
  transition: all 0.2s ease;
  min-width: 200px;
  flex: 1;
  max-width: 260px;
}

.connect-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(10,22,40,0.12);
  transform: translateY(-3px);
}

.connect-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(201,148,26,0.08);
  border-radius: 50%;
}

.connect-label {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}

.connect-sub {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
}

/* ======= RESPONSIVE: Sponsors + Connect ======= */
@media (max-width: 900px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .connect-card { min-width: 140px; padding: 24px 20px; }
}

@media (max-width: 480px) {
  .connect-links { gap: 12px; }
  .connect-card { max-width: 100%; flex: 0 0 calc(50% - 6px); }
}

/* Sponsor text placeholder (used when logo image not yet available) */
.sponsor-text-only {
  background: var(--navy);
}
.sponsor-name-text {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
