@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;600;700&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --forest:    #2D5016;
  --fern:      #4E7B28;
  --sage:      #7A9E5A;
  --leaf:      #B8D99A;
  --parchment: #F4EFE2;
  --paper:     #E6DEC6;
  --bark:      #5A3A1C;
  --amber:     #C4862A;
  --text:      #2A1F0E;
  --muted:     #7A6A50;
  --white:     #FDFAF3;
  --shadow:    0 2px 12px rgba(42,31,14,0.12);
  --radius:    8px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[class^="iconoir-"], [class*=" iconoir-"] { vertical-align: middle; }

/* ── Base ─────────────────────────────────────────────────── */
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background: var(--parchment);
  color: var(--text);
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--forest);
}

/* ── Nav ──────────────────────────────────────────────────── */
.site-header {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-icon { width: 42px; height: 42px; }
.logo-text-block { display: flex; flex-direction: column; line-height: 1; }
.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--leaf);
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.nav-links .admin-link a {
  background: var(--amber);
  color: #fff;
  margin-left: 0.5rem;
}
.nav-links .admin-link a:hover { background: #a8711f; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
}

/* ── Hero (home) ──────────────────────────────────────────── */
.site-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 520px;
  padding: 4rem 1.5rem;
  background: #1e3a0b;
}
.site-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/assets/images/grassybackground.png') center/cover no-repeat;
  opacity: 0.45;
}
.site-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(20,45,8,0.55) 0%,
    rgba(30,58,11,0.35) 50%,
    rgba(20,45,8,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
  color: #fff;
}

/* ── Carousel ─────────────────────────────────────────────── */
.hero-carousel {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(0,0,0,0.75), 0 0 0 3px rgba(184,217,154,0.2);
  aspect-ratio: 16/9;
  margin-bottom: 1.75rem;
  background: rgba(30,58,11,0.6);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}
.carousel-placeholder i { font-size: 3rem; }

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
}
.carousel-prev { left: 0.85rem; }
.carousel-next { right: 0.85rem; }
.carousel-prev:hover,
.carousel-next:hover { background: rgba(0,0,0,0.72); }

.carousel-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.2s;
}
.carousel-dot.active {
  background: #fff;
  transform: scale(1.25);
}
.hero-content .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--leaf);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-btn {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  padding: 0.8rem 2.25rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.hero-btn:hover {
  background: #a8711f;
  transform: translateY(-2px);
  box-shadow: 0 7px 24px rgba(0,0,0,0.4);
  color: #fff;
}
@media (max-width: 720px) {
  .hero-carousel { aspect-ratio: 4/3; }
}

/* ── Page Hero (non-home) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--fern) 100%);
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.28;
}
.page-hero-content {
  position: relative; z-index: 1; color: #fff;
}
.page-hero-content h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  margin-bottom: 0.4rem;
}
.page-hero-content p { color: var(--leaf); font-size: 1.05rem; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--paper); }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 0.5rem; }
.section-title p { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-title .divider {
  width: 56px; height: 3px;
  background: var(--amber);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ── Pillars ──────────────────────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--sage);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(42,31,14,0.16);
}
.pillar-icon {
  font-size: 2.6rem;
  color: var(--sage);
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}
.pillar-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.pillar-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

/* ── Quick Links ──────────────────────────────────────────── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}
.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--forest);
  color: #fff;
  padding: 1.75rem 1rem;
  border-radius: 12px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.quick-link-card:hover { background: var(--fern); transform: translateY(-3px); color: #fff; }
.ql-icon { font-size: 2rem; display: block; text-align: center; }

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--paper);
  box-shadow: var(--shadow);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  background: var(--white);
  border-radius: 12px;
}
.gallery-empty .empty-icon { font-size: 3rem; margin-bottom: 1rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: #fff; font-size: 2.5rem;
  cursor: pointer; line-height: 1;
  opacity: 0.8; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ── Events ───────────────────────────────────────────────── */
.events-list { display: flex; flex-direction: column; gap: 1.5rem; }
.event-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--sage);
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.event-date-block {
  background: var(--forest);
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 0.5rem;
  text-align: center;
}
.event-date-block .month {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--leaf); font-weight: 700;
}
.event-date-block .day {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 700; line-height: 1;
}
.event-date-block .year {
  font-size: 0.68rem; color: rgba(255,255,255,0.55);
}
.event-details h2 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.event-meta {
  font-size: 0.88rem; color: var(--muted);
  margin-bottom: 0.6rem;
}
.event-description { font-size: 0.95rem; margin-bottom: 0.85rem; }
.event-address-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--fern); font-weight: 700; font-size: 0.9rem;
  transition: color 0.2s;
}
.event-address-link:hover { color: var(--forest); }
.events-empty {
  text-align: center; padding: 4rem 2rem;
  color: var(--muted); background: var(--white);
  border-radius: 12px; box-shadow: var(--shadow);
}

/* ── Map ──────────────────────────────────────────────────── */
.map-embed-wrapper {
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); height: 480px;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.map-embed-wrapper iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
  text-align: center; color: var(--muted); font-size: 0.95rem; padding: 2rem;
}
.map-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.map-info-card {
  background: var(--white); border-radius: 10px;
  padding: 1.4rem; box-shadow: var(--shadow);
}
.map-info-card h3 { font-size: 0.95rem; color: var(--fern); margin-bottom: 0.4rem; }
.map-info-card p, .map-info-card a { font-size: 0.93rem; }
.map-info-card a { color: var(--fern); font-weight: 600; }
.map-info-card a:hover { color: var(--forest); }

/* ── Merch ────────────────────────────────────────────────── */
.merch-placeholder {
  text-align: center; padding: 5rem 2rem;
  background: var(--white); border-radius: 14px;
  box-shadow: var(--shadow);
}
.merch-placeholder .icon { font-size: 4rem; margin-bottom: 1.25rem; }
.merch-placeholder h2 { margin-bottom: 0.75rem; }
.merch-placeholder p { color: var(--muted); max-width: 420px; margin: 0 auto 1.5rem; }
.merch-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.merch-ext-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--forest); color: #fff;
  padding: 0.6rem 1.25rem; border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
}
.merch-ext-link:hover { background: var(--fern); color: #fff; }

/* ── History block ────────────────────────────────────────── */
.history-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.history-text p { color: var(--muted); margin-bottom: 1rem; font-size: 0.97rem; }
.history-text h2 { margin-bottom: 1rem; }
.history-visual {
  background: var(--forest); border-radius: 16px;
  padding: 2.5rem 2rem; color: #fff;
}
.history-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--leaf);
  margin-bottom: 1rem;
}
.history-attribution { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.history-facts { margin-top: 1.5rem; }
.history-facts li {
  list-style: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.history-facts li:last-child { border-bottom: none; }
.history-facts li strong { color: var(--leaf); }

/* ── Partners bar ─────────────────────────────────────────── */
.partners-bar {
  background: var(--white);
  padding: 2rem 0;
  border-top: 1px solid var(--paper);
}
.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.partners-inner span { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.partner-link {
  color: var(--fern); font-weight: 700; font-size: 0.9rem;
  transition: color 0.2s;
}
.partner-link:hover { color: var(--forest); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bark); color: rgba(255,255,255,0.78);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand .logo-title { color: var(--leaf); font-size: 1.35rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.75; }
.footer-links h4 {
  color: var(--leaf);
  font-family: 'Playfair Display', serif;
  font-size: 1rem; margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul a {
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links ul a:hover { color: var(--leaf); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Auth / Login ─────────────────────────────────────────── */
.auth-page {
  min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: linear-gradient(158deg, #1e3a0b 0%, #2D5016 50%, var(--parchment) 100%);
}
.auth-card {
  background: var(--white); border-radius: 18px;
  padding: 2.75rem 2rem; width: 100%; max-width: 420px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
}
.auth-logo { text-align: center; margin-bottom: 1.75rem; }
.auth-logo svg { margin: 0 auto; }
.auth-card h1 { text-align: center; font-size: 1.5rem; margin-bottom: 0.25rem; }
.auth-card .sub {
  text-align: center; color: var(--muted);
  font-size: 0.88rem; margin-bottom: 2rem;
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 700; font-size: 0.88rem;
  margin-bottom: 0.4rem; color: var(--forest);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 2px solid var(--paper);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  background: var(--parchment);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.93rem;
  cursor: pointer; border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--fern); color: #fff; }
.btn-full { width: 100%; display: block; }
.btn-danger { background: #c0392b; color: #fff; }
.btn-danger:hover { background: #a93226; }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: #a8711f; }
.btn-sm { padding: 0.38rem 0.85rem; font-size: 0.82rem; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: #fff; }

.alert {
  padding: 0.8rem 1rem; border-radius: var(--radius);
  margin-bottom: 1.25rem; font-size: 0.9rem;
}
.alert-error   { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c2; }
.alert-success { background: #edfaf0; color: #27ae60; border: 1px solid #b8e9c5; }

/* ── Admin Layout ─────────────────────────────────────────── */
.admin-body { background: #f0ece0; }
.admin-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: calc(100vh - 68px);
}
.admin-sidebar {
  background: var(--forest);
  padding: 1.5rem 0;
  display: flex; flex-direction: column;
}
.sidebar-section-label {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(184,217,154,0.7);
  padding: 1rem 1.25rem 0.35rem;
  font-weight: 700;
}
.admin-sidebar ul { list-style: none; }
.admin-sidebar ul li a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  color: rgba(255,255,255,0.72); font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s, color 0.2s;
}
.admin-sidebar ul li a:hover,
.admin-sidebar ul li a.active {
  background: rgba(255,255,255,0.12); color: #fff;
}
.sidebar-user {
  margin-top: auto;
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.sidebar-user strong { color: rgba(255,255,255,0.7); display: block; margin-bottom: 0.25rem; }
.sidebar-user a { color: var(--leaf); font-size: 0.78rem; }

.admin-main { padding: 2rem; overflow-y: auto; }
.admin-page-header { margin-bottom: 2rem; }
.admin-page-header h1 { font-size: 1.7rem; }
.admin-page-header p { color: var(--muted); font-size: 0.9rem; margin-top: 0.2rem; }

.admin-card {
  background: var(--white); border-radius: 12px;
  padding: 1.75rem; box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.admin-card h2 {
  font-size: 1.1rem; margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--paper);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem; margin-bottom: 1.5rem;
}
.stat-box {
  background: var(--white); border-radius: 10px;
  padding: 1.25rem; text-align: center; box-shadow: var(--shadow);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem; color: var(--forest);
  line-height: 1; margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.data-table th {
  text-align: left; padding: 0.6rem 0.75rem;
  background: var(--parchment); color: var(--forest);
  font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 2px solid var(--paper);
}
.data-table td { padding: 0.75rem; border-bottom: 1px solid var(--paper); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--parchment); }

.badge {
  display: inline-block; padding: 0.2rem 0.6rem;
  border-radius: 20px; font-size: 0.75rem; font-weight: 700;
}
.badge-green  { background: #edfaf0; color: #27ae60; }
.badge-amber  { background: #fef8e7; color: #c4862a; }
.badge-blue   { background: #ebf5fb; color: #2980b9; }

.admin-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}
.admin-thumb {
  position: relative; aspect-ratio: 1;
  border-radius: 6px; overflow: hidden;
  background: var(--paper);
}
.admin-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.admin-thumb:hover .admin-thumb-overlay { opacity: 1; }

.hero-pickers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.hero-picker { border: 2px solid var(--paper); border-radius: 10px; padding: 1rem; }
.hero-picker h3 { font-size: 0.95rem; margin-bottom: 0.65rem; }
.hero-preview {
  aspect-ratio: 16/7; background: var(--paper);
  border-radius: 6px; overflow: hidden; margin-bottom: 0.65rem;
  display: flex; align-items: center; justify-content: center;
}
.hero-preview img { width: 100%; height: 100%; object-fit: cover; }
.hero-preview .no-img { color: var(--muted); font-size: 0.82rem; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .history-block { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--forest); flex-direction: column;
    padding: 1rem; gap: 0.2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.65rem 1rem; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .event-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
