/* ============================================================
   LOCH RAVEN SKEET & TRAP CENTER
   Matching the live WordPress site (Divi theme)
   ============================================================ */

/* Live site uses Open Sans body, Oswald for sport labels,
   and the native Divi font stack for nav */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Oswald:wght@500;600;700&display=swap');

:root {
  /* ── Core palette from live site ── */
  --orange:       #e8703a;   /* top bar + buttons */
  --orange-hover: #cf5e2a;
  --green-nav:    #3a5428;   /* main header bg (logo row) */
  --green-dark:   #2d4a20;   /* sport bar, footer */
  --green-box:    rgba(50, 80, 30, 0.82); /* hero text box overlay */
  --white:        #ffffff;
  --off-white:    #f5f5f5;
  --light-gray:   #ebebeb;
  --mid-gray:     #aaaaaa;
  --dark-gray:    #333333;
  --text:         #666666;
  --border:       #e0e0e0;

  --font-body:    'Open Sans', sans-serif;
  --font-sport:   'Oswald', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  line-height: 1.7em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-body);
  color: var(--dark-gray);
  line-height: 1.3em;
  font-weight: 700;
}

/* ============================================================
   HEADER — 3-layer structure matching live site:
   1. Orange top bar  (nav links)
   2. White main bar  (logo left, sport links + search right)
   3. (No third bar — sports are in the main bar)
   ============================================================ */

.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ── Layer 1: Orange top bar with main nav ── */
.header-topbar {
  background: var(--orange);
  padding: 0 30px;
}

.header-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.topbar-nav > ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.topbar-nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  text-transform: none;
  transition: background 0.2s;
}

.topbar-nav > ul > li > a:hover {
  background: rgba(0,0,0,0.15);
  color: #fff;
}

/* Dropdown from top bar */
.topbar-nav .nav-item { position: relative; }

.topbar-nav .nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.topbar-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--orange);
  min-width: 210px;
  list-style: none;
  padding: 4px 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.18s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.topbar-nav .dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.topbar-nav .dropdown li:last-child a { border-bottom: none; }
.topbar-nav .dropdown li a:hover { background: rgba(0,0,0,0.15); color: #fff; }

/* ── Layer 2: White bar — logo left, sports right ── */
.header-main {
  background: #fff;
  padding: 0 30px;
  border-bottom: 1px solid var(--border);
}

.header-main-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.site-logo img {
  height: 64px;
  width: auto;
}

/* Sport links + search — right side of white bar */
.header-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.sport-links {
  display: flex;
  align-items: center;
}

.sport-links a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-sport);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--dark-gray);
  text-transform: uppercase;
  transition: color 0.2s;
  border-right: 1px solid var(--border);
}

.sport-links a:first-child { border-left: 1px solid var(--border); }
.sport-links a:hover { color: var(--orange); }

.header-search {
  padding: 10px 16px;
  color: var(--mid-gray);
  font-size: 16px;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s;
}

.header-search:hover { color: var(--orange); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-gray);
  transition: all 0.3s;
}

/* ============================================================
   HERO SLIDER
   Full-width photo, semi-transparent green box over center
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #2a3e1a;
  user-select: none;
}

.hero-track {
  display: flex;
  transition: transform 0.55s ease-in-out;
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* No full overlay — just the green box over the text */
.hero-slide-content {
  position: relative;
  z-index: 2;
  background: var(--green-box);
  padding: 50px 60px;
  max-width: 680px;
  text-align: center;
}

.hero-slide-content h2 {
  font-family: var(--font-sport);
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-slide-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  font-weight: 400;
  line-height: 1.6;
}

/* Slider arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: none;
  width: 40px;
  height: 60px;
  font-size: 26px;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
  line-height: 1;
}

.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow-prev { left: 0; }
.hero-arrow-next { right: 0; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.hero-dot.active { background: #fff; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 25px;   /* rounded pill — matches live site */
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-hover); border-color: var(--orange-hover); color: #fff; }

.btn-green {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}
.btn-green:hover { background: #1e3315; border-color: #1e3315; color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: #fff; color: var(--green-dark); }

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ============================================================
   SAFETY BANNER
   ============================================================ */

.safety-banner {
  background: var(--green-dark);
  padding: 32px 20px;
  text-align: center;
}

.safety-banner h3 {
  font-family: var(--font-sport);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.safety-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  margin-bottom: 18px;
}

/* ============================================================
   SPORT ICONS BAR  (dark green, SKEET / TRAP / WOBBLE / 5 STAND)
   ============================================================ */

.sports-bar {
  background: var(--green-dark);
}

.sports-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sport-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.sport-item:last-child { border-right: none; }
.sport-item:hover { background: rgba(0,0,0,0.2); }

.sport-item h3 {
  font-family: var(--font-sport);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0;
}

.sport-item .sport-num {
  font-family: var(--font-sport);
  font-size: 52px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.sport-item p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px 0 0;
}

.sport-item:hover h3 { color: var(--orange); }

/* ============================================================
   PAGE SECTIONS
   ============================================================ */

.section        { padding: 60px 20px; }
.section-white  { background: #fff; }
.section-gray   { background: var(--off-white); }
.section-green  { background: var(--green-dark); }

.container { max-width: 1080px; margin: 0 auto; }
.container-wide { max-width: 1280px; margin: 0 auto; }

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-green .section-title { color: #fff; }

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 10px 0 25px;
}

.section-divider-center { margin: 10px auto 25px; }

/* ============================================================
   NSSA
   ============================================================ */

.nssa-band {
  background: var(--off-white);
  padding: 35px 20px;
  text-align: center;
  border-top: 3px solid var(--green-dark);
  border-bottom: 3px solid var(--green-dark);
}

.nssa-band img { max-height: 80px; margin: 0 auto 12px; }

.nssa-band h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   INFO CARDS
   ============================================================ */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.info-card {
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  background: #fff;
}

.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.info-card p { font-size: 13px; color: var(--text); }

/* ============================================================
   REGISTER CTA
   ============================================================ */

.register-cta {
  background: var(--green-dark);
  padding: 28px 20px;
}

.register-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.register-cta h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  margin: 5px 0 0;
}

/* ============================================================
   HOURS
   ============================================================ */

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 12px;
}

.hours-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--green-dark);
}

.hours-card-day {
  background: var(--green-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 14px;
}

.hours-card-body { padding: 12px 14px; }
.hours-card-body img { max-width: 200px; }

.holiday-table { width: 100%; border-collapse: collapse; font-size: 14px; }

.holiday-table th {
  background: var(--green-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  text-align: left;
}

.holiday-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.holiday-table tr:nth-child(even) td { background: var(--off-white); }

.badge-open {
  display: inline-block; background: #27ae60; color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}

.badge-closed {
  display: inline-block; background: #c0392b; color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}

/* ============================================================
   SAFETY RULES
   ============================================================ */

.rules-list { list-style: none; counter-reset: rule-counter; }

.rules-list li {
  counter-increment: rule-counter;
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.65;
}

.rules-list li::before {
  content: counter(rule-counter) ".";
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  min-width: 26px;
  flex-shrink: 0;
}

/* ============================================================
   MEMBERSHIP
   ============================================================ */

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 800px;
}

.membership-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--green-dark);
  padding: 28px;
}

.membership-card.featured {
  border-top-color: var(--orange);
  background: var(--green-dark);
}

.membership-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.membership-card.featured .membership-price { color: var(--orange); }

.membership-period {
  font-size: 11px;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.membership-card.featured .membership-period { color: rgba(255,255,255,0.55); }

.membership-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.membership-card.featured .membership-name { color: #fff; }

.membership-features { list-style: none; margin-bottom: 22px; }

.membership-features li {
  padding: 6px 0;
  font-size: 13px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text);
}

.membership-card.featured .membership-features li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

.membership-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item { aspect-ratio: 4/3; overflow: hidden; background: var(--light-gray); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   LEADERSHIP
   ============================================================ */

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

.leader-card {
  text-align: center;
  padding: 22px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
}

.leader-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 5px;
}

.leader-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  text-transform: uppercase;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark-gray);
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--orange); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============================================================
   NEWS
   ============================================================ */

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

.news-card { background: #fff; border: 1px solid var(--border); }

.news-card-image { height: 175px; overflow: hidden; background: var(--light-gray); }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }

.news-card-body { padding: 18px; }

.news-card-date {
  font-size: 11px;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}

.news-card h3 { font-size: 16px; font-weight: 700; color: var(--dark-gray); margin-bottom: 9px; line-height: 1.3; }
.news-card p { font-size: 13px; color: var(--text); line-height: 1.65; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--green-dark);
  padding: 48px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-hero .subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-style: italic;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.breadcrumb a { color: var(--orange); }

/* ============================================================
   VIDEO
   ============================================================ */

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding: 50px 20px 0;
}

.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img { max-height: 56px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 10px; }

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

.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  color: #fff; font-size: 12px; font-weight: 700;
  border-radius: 3px;
  transition: background 0.2s;
  text-decoration: none;
}

.footer-social a:hover { background: var(--orange); color: #fff; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.62); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.62); margin-bottom: 7px; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.62); }
.footer-contact a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 8px;
}

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

@media (max-width: 1024px) {
  .header-topbar { padding: 0 16px; }
  .header-main   { padding: 0 16px; }
  .info-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid     { grid-template-columns: repeat(2, 1fr); }
  .sports-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .sport-links a { font-size: 13px; padding: 8px 12px; }
}

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

  .header-topbar-inner { position: relative; }
  .topbar-nav { display: none; width: 100%; }
  .topbar-nav.open { display: block; }
  .topbar-nav > ul { flex-direction: column; }
  .topbar-nav > ul > li > a { border-bottom: 1px solid rgba(255,255,255,0.12); padding: 11px 16px; }

  .topbar-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-left: 3px solid rgba(255,255,255,0.3);
    margin-left: 14px;
  }

  .sport-links { display: none; }
  .header-search { display: none; }

  .hero-slide { height: 380px; }
  .hero-slide-content { padding: 30px 25px; }
  .hero-slide-content h2 { font-size: 30px; }
  .sports-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .sport-item h3 { font-size: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; max-width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .register-cta-inner { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 26px; }
  .section-title { font-size: 22px; }
}

@media (max-width: 480px) {
  .sports-bar-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .hero-slide { height: 300px; }
  .hero-slide-content { padding: 22px 18px; }
  .hero-slide-content h2 { font-size: 24px; }
}
