/* =============================================
   SARISBURY GREEN SOCIAL CLUB
   Brand colours:
     Royal Blue  : #1a4fba
     Dark Blue   : #0d2d6b
     Orange      : #f7941d
     Light Orange: #fba832
     White       : #ffffff
     Off-white   : #f5f7fc
     Text dark   : #1a1a2e
   ============================================= */

/* ----- CSS CUSTOM PROPERTIES ----- */
:root {
  --blue-dark: #0d2d6b;
  --blue:      #1a4fba;
  --orange:    #f7941d;
  --muted:     #6b7a99;
  --border:    #dde4f0;
}

/* ----- RESET & BASE ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ----- CONTAINER ----- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f7941d;
  margin-bottom: 0.6rem;
}

.section-label.light {
  color: #fba832;
}

.section-title {
  margin-bottom: 1rem;
}

.section-title.light,
h2.light {
  color: #fff;
}

.section-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.05rem;
}

.section-intro.light {
  color: rgba(255,255,255,0.88);
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #f7941d;
  color: #fff;
  border-color: #f7941d;
}

.btn-primary:hover {
  background: #e5840d;
  border-color: #e5840d;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #0d2d6b;
}

.btn-outline-light {
  background: transparent;
  color: #f7941d;
  border-color: #f7941d;
}

.btn-outline-light:hover {
  background: #f7941d;
  color: #fff;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0d2d6b;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.nav-logo {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f7941d;
}

.brand-name {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
}

.brand-name small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #f7941d;
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
}

.main-nav ul li a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.main-nav ul li a:hover {
  background: rgba(247,148,29,0.2);
  color: #f7941d;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 90vh;
  background:
    linear-gradient(135deg, rgba(13,45,107,0.92) 0%, rgba(26,79,186,0.85) 60%, rgba(247,148,29,0.55) 100%),
    url('IMG_2754.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  padding: 5rem 0;
}

.hero-content {
  text-align: center;
  color: #fff;
}

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  border: 4px solid #f7941d;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== INFO STRIP ===================== */
.info-strip {
  background: #f7941d;
  padding: 1rem 0;
}

.info-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: rgba(255,255,255,0.85);
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 5rem 0;
}

/* ===================== ABOUT ===================== */
.about {
  background: #f5f7fc;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1rem;
  color: #0d2d6b;
}

.about-text p {
  margin-bottom: 1rem;
  color: #444;
}

.about-text .btn {
  margin-top: 0.5rem;
}

.about-image {
  position: relative;
}

.about-logo-wrap {
  border-radius: 50%;
  overflow: hidden;
  width: 340px;
  height: 340px;
  margin: 0 auto;
  border: 6px solid #f7941d;
  box-shadow: 0 12px 40px rgba(13,45,107,0.18);
}

.about-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background: #0d2d6b;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-align: center;
  border-left: 4px solid #f7941d;
}

.about-badge span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f7941d;
}

.about-badge strong {
  font-size: 0.9rem;
  font-family: 'Merriweather', serif;
}

/* ===================== EVENTS ===================== */
.events {
  background: #0d2d6b;
  text-align: center;
}

.events h2 {
  margin-bottom: 1rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.event-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: background 0.2s, transform 0.2s;
}

.event-card:hover {
  background: rgba(247,148,29,0.15);
  transform: translateY(-4px);
}

.event-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.event-card h3 {
  color: #f7941d;
  margin-bottom: 0.6rem;
}

.event-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.93rem;
}

.events-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ===================== HOURS ===================== */
.hours {
  background: #fff;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hours-text h2 {
  color: #0d2d6b;
  margin-bottom: 1rem;
}

.hours-text p {
  color: #555;
  margin-bottom: 1rem;
}

.hours-table-wrap {
  background: #f5f7fc;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(13,45,107,0.08);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th {
  background: #0d2d6b;
  color: #f7941d;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-table th:first-child { border-radius: 6px 0 0 0; }
.hours-table th:last-child  { border-radius: 0 6px 0 0; }

.hours-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e0e6f2;
  color: #333;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table tr.highlight td {
  color: #0d2d6b;
  font-weight: 700;
  background: rgba(247,148,29,0.08);
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #888;
  font-style: italic;
}

/* ===================== MEMBERSHIP ===================== */
.membership {
  background: linear-gradient(135deg, #1a4fba 0%, #0d2d6b 100%);
  text-align: center;
}

.membership h2 {
  margin-bottom: 1rem;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.membership-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2.2rem 1.75rem;
  text-align: left;
  position: relative;
}

.membership-card h3 {
  color: #f7941d;
  margin-bottom: 1.25rem;
}

.membership-card ul li,
.membership-card ol li {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
}

.membership-card ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.membership-card.featured {
  background: #fff;
  border: 2px solid #f7941d;
  transform: scale(1.03);
}

.membership-card.featured h3,
.membership-card.featured p {
  color: #0d2d6b;
}

.membership-card.featured p {
  font-size: 0.93rem;
  margin-bottom: 0.75rem;
}

.membership-price {
  font-size: 1.4rem !important;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: #f7941d !important;
  margin-bottom: 1rem !important;
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f7941d;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.small-note {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.6) !important;
  margin-top: 1rem !important;
  font-style: italic;
}

/* ===================== CONTACT ===================== */
.contact {
  background: #f5f7fc;
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 4rem;
}

.contact-info h2 {
  color: #0d2d6b;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #0d2d6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: #f7941d;
}

.contact-detail strong {
  display: block;
  color: #0d2d6b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 6px 30px rgba(13,45,107,0.1);
}

.contact-form-wrap h3 {
  color: #0d2d6b;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid #d8e1f0;
  border-radius: 6px;
  font-size: 0.93rem;
  font-family: 'Open Sans', sans-serif;
  color: #1a1a2e;
  background: #f9fafd;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a4fba;
  background: #fff;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #e53e3e;
}

.field-error {
  display: block;
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 0.3rem;
  min-height: 1em;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: #eafaf1;
  border: 1px solid #68d391;
  border-radius: 6px;
  color: #276749;
  font-size: 0.92rem;
  text-align: center;
}

/* Map */
.map-wrap {
  margin-top: 1rem;
  border-radius: 0;
  overflow: hidden;
  border-top: 4px solid #f7941d;
}

.map-wrap iframe {
  display: block;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #0d2d6b;
  color: #fff;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #f7941d;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.footer-links h4,
.footer-social h4 {
  font-family: 'Merriweather', serif;
  color: #f7941d;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #f7941d;
}

.footer-social p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}

.social-link:hover {
  background: #f7941d;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.footer-small {
  margin-top: 0.25rem;
}

/* ===================== BACK TO TOP ===================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: #f7941d;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: #e5840d;
}

/* ===================== UPCOMING EVENTS (dynamic) ===================== */

.upcoming {
  background: #f5f7fc;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.upcoming-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 2px 12px rgba(13,45,107,0.09);
  border-top: 4px solid #f7941d;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.upcoming-card-banner {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.upcoming-card-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.upcoming-card-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: #f7941d;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.upcoming-card-title {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0d2d6b;
}

.upcoming-card-time {
  font-size: 0.82rem;
  color: #777;
}

.upcoming-card-desc {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.upcoming-card-badge {
  margin-top: 0.4rem;
  align-self: flex-start;
}

/* Category badges (shared between admin & public pages) */
.badge {
  display: inline-block;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: capitalize;
  white-space: nowrap;
}
.badge-music    { background: #e8d5ff; color: #6b21a8; }
.badge-quiz     { background: #dbeafe; color: #1e40af; }
.badge-sport    { background: #d1fae5; color: #065f46; }
.badge-function { background: #fef3c7; color: #92400e; }
.badge-seasonal { background: #ffe4e6; color: #9f1239; }
.badge-other    { background: #f3f4f6; color: #374151; }

.upcoming-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #888;
  font-style: italic;
  background: #fff;
  border-radius: 10px;
  border: 2px dashed #d0d9ee;
}

@media (max-width: 900px) {
  .upcoming-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .upcoming-grid { grid-template-columns: 1fr; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .membership-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .membership-card.featured {
    transform: none;
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0d2d6b;
    padding: 1rem 1.5rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .main-nav ul li a {
    display: block;
    padding: 0.65rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .about-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .about-logo-wrap {
    width: 240px;
    height: 240px;
  }

  .about-badge {
    display: none;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .info-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .hours-table-wrap {
    padding: 1rem;
  }
}

/* ===================== GDPR BANNER ===================== */
.gdpr-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a2e;
  color: #fff;
  z-index: 2000;
  padding: 1rem 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.gdpr-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gdpr-text strong { display: block; margin-bottom: 0.2rem; font-size: 0.9rem; }
.gdpr-text p { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin: 0; line-height: 1.5; }
.gdpr-btns { display: flex; gap: 0.6rem; flex-shrink: 0; }
.btn-gdpr-accept {
  background: #f7941d; color: #fff; border: none;
  padding: 0.55rem 1.2rem; border-radius: 6px; font-size: 0.85rem;
  font-weight: 700; font-family: 'Open Sans', sans-serif; cursor: pointer;
  transition: background 0.2s;
}
.btn-gdpr-accept:hover { background: #e5840d; }
.btn-gdpr-decline {
  background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25);
  padding: 0.55rem 1rem; border-radius: 6px; font-size: 0.85rem;
  font-family: 'Open Sans', sans-serif; cursor: pointer; transition: color 0.2s, border-color 0.2s;
}
.btn-gdpr-decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ===================== ANNOUNCEMENT BAR ===================== */
.announce-bar {
  padding: 0.7rem 0;
  font-size: 0.88rem;
  font-weight: 600;
}
.announce-bar.announce-info    { background: #0d2d6b; color: #fff; }
.announce-bar.announce-warning { background: #f7941d; color: #fff; }
.announce-bar.announce-success { background: #38a169; color: #fff; }
.announce-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.announce-icon { font-size: 1.1rem; flex-shrink: 0; }
.announce-text { flex: 1; }
.announce-close {
  background: none; border: none; color: inherit; cursor: pointer;
  font-size: 1.3rem; line-height: 1; opacity: 0.7; padding: 0 0.25rem;
  transition: opacity 0.2s; flex-shrink: 0;
}
.announce-close:hover { opacity: 1; }

/* Member Login nav link */
.nav-member-link {
  background: #f7941d !important;
  color: #fff !important;
  border-radius: 4px !important;
  padding: 0.4rem 0.9rem !important;
}
.nav-member-link:hover { background: #e5840d !important; }

/* Print button */
.btn-print {
  background: #f5f7fc; color: #0d2d6b;
  border: 2px solid #d8e1f0; border-radius: 8px;
  padding: 0.5rem 1.1rem; font-size: 0.84rem;
  font-weight: 700; font-family: 'Open Sans', sans-serif;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.btn-print:hover { background: #e0e9f7; border-color: #1a4fba; }

/* ===================== GALLERY ===================== */
.gallery-section { background: #f5f7fc; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: #dde4f0;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
  display: block;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,45,107,0.55);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #888;
  font-style: italic;
  background: #fff;
  border-radius: 10px;
  border: 2px dashed #d0d9ee;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] { display: none; }

.lightbox-img-wrap {
  max-width: 80vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(247,148,29,0.7); }

/* ===================== REVIEWS ===================== */
.reviews-section { background: #fff; }

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews-rating { display: flex; align-items: center; gap: 0.75rem; }

.reviews-stars {
  font-size: 1.4rem;
  color: #f7941d;
  letter-spacing: 2px;
}

.reviews-label { font-size: 0.88rem; color: #555; font-weight: 600; }

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: #0d2d6b;
  border: 2px solid #d8e1f0;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}

.btn-google-review:hover { background: #f0f4fb; border-color: #1a4fba; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  background: #f5f7fc;
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  border-top: 3px solid #f7941d;
}

.review-stars { font-size: 1.05rem; color: #f7941d; margin-bottom: 0.5rem; letter-spacing: 1px; }

.review-text {
  color: #444;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  background: #0d2d6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7941d;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-name { font-weight: 700; font-size: 0.85rem; color: #0d2d6b; }
.review-date { font-size: 0.72rem; color: #888; }

.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: #888;
}

.reviews-cta { text-align: center; margin-top: 2rem; }

/* ===================== FACEBOOK SECTION ===================== */
.facebook-section { background: #1a4fba; padding: 5rem 0; }

.facebook-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: #0d2d6b;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.btn-facebook:hover { background: #f5f7fc; transform: translateY(-2px); }

.facebook-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.fb-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.fb-card-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.fb-card-info strong { display: block; font-size: 0.9rem; color: #1a1a2e; }
.fb-card-info span   { font-size: 0.75rem; color: #888; }

.fb-card-body {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

.fb-card-actions {
  display: flex;
  border-top: 1px solid #f0f0f0;
  padding: 0.6rem 0;
}

.fb-card-actions span {
  flex: 1;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
  color: #555;
  padding: 0.35rem 0;
  cursor: default;
}

/* ===================== RENEWAL PROMPT ===================== */
.renewal-prompt {
  background: rgba(247,148,29,0.12);
  border: 2px solid rgba(247,148,29,0.4);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.renewal-icon { font-size: 1.5rem; flex-shrink: 0; }

.renewal-text { flex: 1; color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.renewal-text strong { display: block; color: #f7941d; margin-bottom: 0.1rem; }

.btn-renew {
  background: #f7941d;
  color: #fff;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.btn-renew:hover { background: #e5840d; }

.renewal-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); font-size: 1.2rem;
  padding: 0; line-height: 1; flex-shrink: 0;
  transition: color 0.2s;
}
.renewal-close:hover { color: #fff; }

/* ===================== PRINT STYLES ===================== */
@media print {
  .site-header, .hero, .info-strip, .about, .gallery-section,
  .events, .membership, .reviews-section,
  .facebook-section, .contact, .site-footer, .back-to-top,
  .gdpr-banner, .announce-bar, .renewal-prompt, .btn-print,
  .mini-cal {
    display: none !important;
  }

  .upcoming {
    display: block !important;
    padding: 0 !important;
  }

  body { font-size: 12pt; color: #000; }

  .upcoming-card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .upcoming-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ===================== GALLERY RESPONSIVE ===================== */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .facebook-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===================== SKIP NAV (Accessibility) ===================== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  background: #f7941d;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-nav:focus { top: 0; }

/* ===================== FOCUS INDICATORS (Accessibility) ===================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid #f7941d;
  outline-offset: 3px;
}

/* ===================== QR CODE SECTION ===================== */
.qr-section {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.qr-inner {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(247,148,29,0.35);
  border-radius: 12px;
  padding: 1rem 1.5rem;
}

.qr-code-img {
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}

.qr-text strong {
  display: block;
  color: #f7941d;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.qr-text p {
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  margin: 0;
}

@media (max-width: 480px) {
  .qr-inner { flex-direction: column; text-align: center; }
}

/* ================================================
   COMMITTEE SECTION
   ================================================ */
.committee-section {
  background: #f4f7fd;
}
.committee-section .section-header h2 {
  color: var(--blue-dark);
}
.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.committee-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(13,45,107,0.09);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.committee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13,45,107,0.14);
}
.committee-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
  margin: 0 auto 0.9rem;
  display: block;
}
.committee-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  letter-spacing: 1px;
}
/* Used in admin list too */
.committee-initials-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.committee-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 0.2rem;
  font-family: 'Merriweather', serif;
}
.committee-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.6rem;
}
.committee-bio {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.committee-section-hidden {
  display: none;
}
@media (max-width: 600px) {
  .committee-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 380px) {
  .committee-grid { grid-template-columns: 1fr; }
}

/* ================================================
   PEOPLE ROW (Committee + Staff side by side)
   ================================================ */
.about-people-row {
  background: transparent;
  margin-top: 2rem;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid rgba(13,45,107,0.12);
}
.people-toggles-wrap {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.people-column {
  flex: 1;
  min-width: 240px;
}

.committee-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: #fff;
  border: 2px solid var(--blue-dark);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.committee-toggle:hover,
.committee-toggle.open {
  background: var(--blue-dark);
  color: #fff;
}
.committee-chevron {
  width: 22px;
  height: 22px;
  fill: var(--blue-dark);
  flex-shrink: 0;
  transition: transform 0.3s ease, fill 0.2s;
}
.committee-toggle:hover .committee-chevron,
.committee-toggle.open .committee-chevron {
  fill: #fff;
}
.committee-toggle.open .committee-chevron {
  transform: rotate(180deg);
}
.committee-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.committee-panel.open {
  padding-top: 1.75rem;
}

/* ================================================
   MINI EVENTS CALENDAR
   ================================================ */
.mini-cal {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid rgba(13,45,107,0.12);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  max-width: 400px;
}
.mini-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.mini-cal-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mini-cal-btn:hover {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
}
.mini-cal-title {
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 0.95rem;
}
.mini-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  gap: 2px;
}
.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.mini-cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: default;
  position: relative;
}
.mini-cal-day.has-events {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-dark);
}
.mini-cal-day.has-events:hover {
  background: rgba(13,45,107,0.08);
}
.mini-cal-day.selected {
  background: var(--blue-dark);
  color: #fff;
}
.mini-cal-day.today {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}
.cal-event-dot {
  position: absolute;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}
.mini-cal-day.selected .cal-event-dot {
  background: rgba(255,255,255,0.7);
}
.mini-cal-clear {
  display: block;
  margin: 0.75rem auto 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mini-cal-clear:hover {
  background: var(--border);
  color: var(--blue-dark);
}

/* ================================================
   ON TONIGHT BANNER
   ================================================ */
.tonight-banner {
  background: linear-gradient(90deg, #0d2d6b 0%, #1a4fba 100%);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.tonight-icon { font-size: 1.5rem; flex-shrink: 0; }
.tonight-text { flex: 1; color: #fff; min-width: 0; }
.tonight-text strong { display: block; font-size: 1rem; margin-bottom: 0.15rem; }
.tonight-text span { font-size: 0.84rem; color: rgba(255,255,255,0.78); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.tonight-badge {
  background: #f7941d;
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ================================================
   EVENT CATEGORY FILTER
   ================================================ */
.event-filter-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e6f2;
}
.filter-btn {
  background: #fff;
  border: 2px solid #d8e1f0;
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.filter-btn:hover { border-color: #1a4fba; color: #1a4fba; }
.filter-btn.active { background: #0d2d6b; border-color: #0d2d6b; color: #fff; }

/* ================================================
   EVENT SHARE BUTTON
   ================================================ */
.event-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid #d8e1f0;
  border-radius: 6px;
  padding: 0.28rem 0.65rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.event-share-btn:hover { background: #f0f4fb; border-color: #1a4fba; color: #1a4fba; }

/* ================================================
   COMPLIANCE STRIP (18+ / Allergens)
   ================================================ */
.compliance-strip {
  background: #111827;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.compliance-inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.compliance-inner span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .compliance-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
}

/* ================================================
   HONEYPOT (hidden spam trap)
   ================================================ */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ================================================
   DARK / LIGHT MODE TOGGLE BUTTON
   ================================================ */
.nav-theme-item {
  display: flex;
  align-items: center;
  padding-left: 0.25rem;
}

.theme-toggle {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  padding: 0;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.55);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

@media (max-width: 768px) {
  .nav-theme-item {
    padding: 0.5rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .theme-toggle {
    width: 32px;
    height: 32px;
  }
}

/* ================================================
   DARK MODE OVERRIDES
   ================================================
   All light-background sections are covered here.
   Sections that are already dark (hero, header,
   events, membership, facebook, footer) need no
   changes — they look great in both modes.
   ================================================ */

/* Smooth theme transition */
body,
.about, .about-text h2, .about-text p,
.hours, .hours-text h2, .hours-text p,
.upcoming, .gallery-section, .reviews-section, .contact,
.hours-table-wrap, .contact-form-wrap, .upcoming-card,
.review-card, .committee-card, .mini-cal,
.form-group input, .form-group select, .form-group textarea,
.filter-btn, .event-share-btn, .btn-print, .btn-google-review {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* --- Page base --- */
[data-theme="dark"] body {
  background: #0e1422;
  color: #e2e8f4;
}

/* --- About section --- */
[data-theme="dark"] .about {
  background: #141a2e;
}
[data-theme="dark"] .about-text h2   { color: #e2e8f4; }
[data-theme="dark"] .about-text p    { color: #a0aec0; }
[data-theme="dark"] .about-badge     { background: #1c2540; }
[data-theme="dark"] .about-people-row { border-top-color: rgba(255,255,255,0.08); }

/* Committee / Staff toggle buttons */
[data-theme="dark"] .committee-toggle {
  background: #1c2540;
  border-color: rgba(255,255,255,0.18);
  color: #e2e8f4;
}
[data-theme="dark"] .committee-toggle:hover,
[data-theme="dark"] .committee-toggle.open {
  background: #1a4fba;
  border-color: #1a4fba;
  color: #fff;
}
[data-theme="dark"] .committee-chevron { fill: #c8d4e8; }
[data-theme="dark"] .committee-toggle:hover .committee-chevron,
[data-theme="dark"] .committee-toggle.open  .committee-chevron { fill: #fff; }

/* Committee / Staff cards */
[data-theme="dark"] .committee-card {
  background: #1c2540;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
[data-theme="dark"] .committee-name { color: #e2e8f4; }
[data-theme="dark"] .committee-bio  { color: #8a9bb8; }

/* --- Opening Hours --- */
[data-theme="dark"] .hours { background: #0e1422; }
[data-theme="dark"] .hours-text h2 { color: #e2e8f4; }
[data-theme="dark"] .hours-text p  { color: #a0aec0; }
[data-theme="dark"] .hours-table-wrap {
  background: #1c2540;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
[data-theme="dark"] .hours-table td {
  color: #c8d4e8;
  border-bottom-color: #273358;
}
[data-theme="dark"] .hours-table tr.highlight td {
  color: #f7941d;
  background: rgba(247,148,29,0.1);
}
[data-theme="dark"] .hours-note { color: #6b7a99; }

/* --- Upcoming Events --- */
[data-theme="dark"] .upcoming { background: #141a2e; }
[data-theme="dark"] .upcoming h2 { color: #e2e8f4 !important; }
[data-theme="dark"] .upcoming p[style] { color: #a0aec0 !important; }
[data-theme="dark"] .upcoming-card {
  background: #1c2540;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
[data-theme="dark"] .upcoming-card-title  { color: #e2e8f4; }
[data-theme="dark"] .upcoming-card-time   { color: #8a9bb8; }
[data-theme="dark"] .upcoming-card-desc   { color: #a0aec0; }
[data-theme="dark"] .upcoming-empty {
  background: #1c2540;
  border-color: #273358;
  color: #8a9bb8;
}
/* Adjust "other" badge for dark surfaces */
[data-theme="dark"] .badge-other { background: #273358; color: #c8d4e8; }

/* Event filter strip */
[data-theme="dark"] .event-filter-wrap { border-bottom-color: #273358; }
[data-theme="dark"] .filter-btn {
  background: #1c2540;
  border-color: #273358;
  color: #b0bee0;
}
[data-theme="dark"] .filter-btn:hover  { border-color: #1a4fba; color: #a0c0f8; }
[data-theme="dark"] .filter-btn.active { background: #1a4fba; border-color: #1a4fba; color: #fff; }

/* Event share button */
[data-theme="dark"] .event-share-btn {
  border-color: #273358;
  color: #8a9bb8;
}
[data-theme="dark"] .event-share-btn:hover { background: #273358; border-color: #1a4fba; color: #a0c0f8; }

/* Print button */
[data-theme="dark"] .btn-print {
  background: #1c2540;
  color: #b0bee0;
  border-color: #273358;
}
[data-theme="dark"] .btn-print:hover { background: #273358; border-color: #1a4fba; }

/* --- Mini Calendar --- */
[data-theme="dark"] .mini-cal {
  background: #1c2540;
  border-color: #273358;
}
[data-theme="dark"] .mini-cal-btn {
  border-color: #273358;
  color: #e2e8f4;
}
[data-theme="dark"] .mini-cal-btn:hover {
  background: #1a4fba;
  border-color: #1a4fba;
}
[data-theme="dark"] .mini-cal-title { color: #e2e8f4; }
[data-theme="dark"] .mini-cal-weekdays span { color: #6b7a99; }
[data-theme="dark"] .mini-cal-day { color: #b0bee0; }
[data-theme="dark"] .mini-cal-day.has-events { color: #e2e8f4; }
[data-theme="dark"] .mini-cal-day.has-events:hover { background: rgba(255,255,255,0.07); }
[data-theme="dark"] .mini-cal-clear {
  border-color: #273358;
  color: #8a9bb8;
}
[data-theme="dark"] .mini-cal-clear:hover { background: #273358; color: #e2e8f4; }

/* --- Gallery --- */
[data-theme="dark"] .gallery-section { background: #141a2e; }
[data-theme="dark"] .gallery-section h2 { color: #e2e8f4 !important; }
[data-theme="dark"] .gallery-section p  { color: #a0aec0 !important; }
[data-theme="dark"] .gallery-item { background: #1c2540; }
[data-theme="dark"] .gallery-empty {
  background: #1c2540;
  border-color: #273358;
  color: #8a9bb8;
}

/* --- Reviews --- */
[data-theme="dark"] .reviews-section { background: #0e1422; }
[data-theme="dark"] .reviews-section h2 { color: #e2e8f4 !important; }
[data-theme="dark"] .review-card { background: #1c2540; }
[data-theme="dark"] .review-text    { color: #a0aec0; }
[data-theme="dark"] .review-name    { color: #e2e8f4; }
[data-theme="dark"] .review-date    { color: #6b7a99; }
[data-theme="dark"] .reviews-label  { color: #a0aec0; }
[data-theme="dark"] .btn-google-review {
  background: #1c2540;
  color: #e2e8f4;
  border-color: #273358;
}
[data-theme="dark"] .btn-google-review:hover { background: #273358; border-color: #1a4fba; }

/* --- Contact --- */
[data-theme="dark"] .contact { background: #141a2e; }
[data-theme="dark"] .contact-info h2       { color: #e2e8f4; }
[data-theme="dark"] .contact-detail strong { color: #c8d4e8; }
[data-theme="dark"] .contact-detail p      { color: #a0aec0; }
[data-theme="dark"] .contact-form-wrap {
  background: #1c2540;
  box-shadow: 0 6px 30px rgba(0,0,0,0.45);
}
[data-theme="dark"] .contact-form-wrap h3 { color: #e2e8f4; }
[data-theme="dark"] .form-group label { color: #b0bee0; }
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background: #0e1422;
  color: #e2e8f4;
  border-color: #273358;
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
  border-color: #1a4fba;
  background: #141a2e;
}
[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder { color: #6b7a99; }
[data-theme="dark"] .form-success {
  background: #0f2318;
  border-color: #2d6a4f;
  color: #6fcf97;
}

/* Renewal prompt (inside membership section — already dark bg, fine as-is) */

/* Print styles — no changes needed in dark mode */

