/* ============================================================
   Warburton Film Festival — Main Stylesheet
   Brand colours: #007249 (dark green), #A1CE72 (light green), #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── Reset & Root ─────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark:   #007249;
  --green-light:  #A1CE72;
  --white:        #FFFFFF;
  --off-white:    #F4F9F0;
  --bg:           #0a1a10;
  --bg-card:      #0f2218;
  --amber:        #F5C842;
  --text:         #F4F9F0;
  --muted:        rgba(244, 249, 240, 0.62);
  --border:       rgba(161, 206, 114, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }


/* ── Film Strip Ticker ────────────────────────────────────── */
.filmstrip {
  background: #050e08;
  height: 44px;
  display: flex;
  overflow: hidden;
  align-items: center;
  border-bottom: 2px solid var(--green-light);
}

.strip-inner {
  display: flex;
  align-items: center;
  min-width: max-content;
  animation: ticker 24s linear infinite;
}

.s-hole {
  width: 12px;
  height: 20px;
  background: #1a3020;
  border-radius: 2px;
  margin: 0 8px;
  flex-shrink: 0;
}

.s-text {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--green-light);
  font-size: 13px;
  letter-spacing: 3px;
  white-space: nowrap;
  padding: 0 16px;
  flex-shrink: 0;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-20%); }
}


/* ── Navigation ───────────────────────────────────────────── */
nav {
  background: var(--green-dark);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(161, 206, 114, 0.2);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 80px;
  height: 60px;
  background: var(--green-light);
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: var(--green-dark);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-light);
  background: rgba(161, 206, 114, 0.1);
}

.nav-links a.nav-cta {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 500;
  margin-left: 8px;
}

.nav-links a.nav-cta:hover {
  background: #b8dc8a;
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}


/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border: none;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-main {
  background: var(--green-light);
  color: var(--green-dark);
}
.btn-main:hover { background: #b8dc8a; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
}
.btn-ghost:hover {
  border-color: var(--green-light);
  color: var(--green-light);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
}


/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--green-dark);
  padding: 52px 48px 44px;
  border-bottom: 2px solid var(--green-light);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.page-title .g { color: var(--green-light); }

.page-sub {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.65;
}


/* ── Section headings ─────────────────────────────────────── */
.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 32px;
}

.section-title .g { color: var(--green-light); }

.body-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 14px;
}


/* ── Info Box ─────────────────────────────────────────────── */
.info-box {
  background: var(--bg-card);
  border-radius: 4px;
  padding: 28px;
  border: 1px solid var(--border);
}

.info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(161, 206, 114, 0.07);
}
.info-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.info-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.info-val {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}


/* ── Tags / Pills ─────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-right: 6px;
  margin-top: 8px;
}

.t-drama   { background: rgba(0,114,73,0.25);   color: #6fcf97; border: 1px solid rgba(111,207,151,0.2); }
.t-comedy  { background: rgba(245,200,66,0.12);  color: var(--amber); border: 1px solid rgba(245,200,66,0.2); }
.t-comp    { background: rgba(161,206,114,0.12); color: var(--green-light); border: 1px solid rgba(161,206,114,0.2); }
.t-classic { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.1); }


/* ── Tip / Callout Bar ────────────────────────────────────── */
.callout-bar {
  background: rgba(161, 206, 114, 0.08);
  border-left: 3px solid var(--green-light);
  padding: 18px 24px;
  border-radius: 0 4px 4px 0;
}
.callout-bar p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.callout-bar strong { color: var(--green-light); }


/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #050e08;
  padding: 52px 48px 32px;
  border-top: 1px solid rgba(161, 206, 114, 0.15);
  margin-top: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--green-light);
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(244, 249, 240, 0.35);
  margin-top: 4px;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--green-light);
  margin-bottom: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: rgba(244, 249, 240, 0.45);
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid rgba(244, 249, 240, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(244, 249, 240, 0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.sponsor-pills {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sponsor-pill {
  background: rgba(244, 249, 240, 0.06);
  padding: 5px 14px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(244, 249, 240, 0.35);
}


/* ── HOME — Hero ──────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, #003d24 100%);
}
 
.hero-left {
  padding: 60px 40px 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-left-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
 
.hero-left > *:not(.hero-left-bg) {
  position: relative;
  z-index: 1;
}
 
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 84px;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 20px;
}
 
.hero-title .g  { color: var(--green-light); display: block; }
.hero-title .o  { -webkit-text-stroke: 2px var(--green-light); color: transparent; display: block; }
 
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 32px;
  font-weight: 300;
}
 
.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
 
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: #001a0d;
}
 
.film-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
 
.film-tile:nth-child(1) { background: #0d2218; }
.film-tile:nth-child(2) { background: #071a10; }
.film-tile:nth-child(3) { background: #071a10; }
.film-tile:nth-child(4) { background: #0d2218; }
 
.tile-flag {
  font-size: 28px;
  position: relative;
  z-index: 1;
}
 
.tile-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  position: relative;
  z-index: 1;
}
 
.tile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
 
.badge-40 {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--amber);
  color: #1a0f00;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 2px;
  z-index: 10;
}
 
.date-bar {
  background: var(--green-light);
  color: var(--green-dark);
  text-align: center;
  padding: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 3px;
}


/* ── HOME — About ─────────────────────────────────────────── */
.home-about {
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px 14px;
  border-radius: 4px;
  text-align: center;
}

.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--green-light);
  line-height: 1;
}

.stat-l {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
}

.shorts-teaser {
  background: var(--bg-card);
  border-radius: 4px;
  padding: 24px;
  margin-top: 16px;
  border: 1px solid var(--border);
}


/* ── PROGRAM ──────────────────────────────────────────────── */
.day-tabs {
  display: flex;
  padding: 0 48px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
 
.day-tab {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 14px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  letter-spacing: 0.3px;
  transition: color 0.15s, border-color 0.15s;
  text-decoration: none;
  display: inline-block;
}
 
.day-tab.active,
.day-tab:hover {
  color: var(--green-light);
  border-bottom-color: var(--green-light);
}
 
.schedule { padding: 44px 48px; }
 
.session {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(161, 206, 114, 0.07);
}
.session:last-child { border-bottom: none; margin-bottom: 0; }
 
.sess-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--green-light);
  line-height: 1;
  padding-top: 4px;
}
 
.sess-ampm {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-top: 2px;
}
 
.sess-card {
  background: var(--bg-card);
  border-radius: 4px;
  padding: 22px 26px;
  border-left: 3px solid var(--green-dark);
  transition: border-left-color 0.2s;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
}
.sess-card:hover { border-left-color: var(--green-light); }
 
.sess-poster {
  width: 140px;
  height: 190px;
  border-radius: 3px;
  overflow: hidden;
  background: #0a1a10;
  flex-shrink: 0;
}
.sess-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.sess-body { min-width: 0; }
 
.sess-award {
  font-size: 12px;
  color: var(--green-light);
  margin-top: 10px;
  font-weight: 500;
}
 
.sess-director {
  font-size: 12px;
  color: rgba(244,249,240,0.4);
  margin-top: 6px;
  font-style: italic;
}
 
.sess-trailer {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--green-dark);
  text-decoration: underline;
}
 
.sess-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--green-light);
  margin-bottom: 6px;
  font-weight: 500;
  text-transform: uppercase;
}
 
.sess-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.1;
}
 
.sess-meta {
  font-size: 13px;
  color: var(--muted);
  font-style: regular;
  margin-bottom: 10px;
}
 
.sess-desc {
  font-size: 13px;
  color: rgba(244, 249, 240, 0.52);
  line-height: 1.65;
}
 
/* Day sections — JS toggles display */
.day-section       { display: none; }
.day-section.active { display: block; }
 

/* ── SHOW US YOUR SHORTS ──────────────────────────────────── */
.shorts-hero {
  background: var(--green-dark);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-bottom: 2px solid var(--green-light);
}

.prize-circle {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  border: 3px solid var(--green-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prize-amt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--green-light);
  line-height: 1;
}

.prize-lbl {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
}

.shorts-body {
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.cats { display: flex; flex-direction: column; gap: 14px; }

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 22px;
}

.cat-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.cat-prize {
  font-size: 13px;
  color: var(--green-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.cat-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

.cat-capt { font-size: 10px; color: var(--muted); line-height: 1.2; text-align: center; }

.timeline { padding: 0 48px 52px; }

.tl-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 24px;
}

.tl-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.tl-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: var(--green-light);
  padding-top: 2px;
}

.tl-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 18px;
  border-left: 2px solid rgba(161, 206, 114, 0.2);
}


/* ── BOOKING ──────────────────────────────────────────────── */
.booking-layout {
  padding: 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
  align-items: start;
}

.ticket-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

.ticket {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.ticket.featured { border-color: var(--green-light); }

.ticket-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.ticket-desc { font-size: 13px; color: var(--muted); }

.ticket-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--green-light);
  text-align: right;
  white-space: nowrap;
}

.ticket-per { font-size: 11px; color: var(--muted); text-align: right; }


/* ── ACCOMMODATION ────────────────────────────────────────── */
.accomm-tip {
  padding: 0 48px 8px;
  margin-top: 32px;
}

.accomm-grid {
  padding: 16px 48px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.accomm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.accomm-img {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.18);
}

.accomm-img.h1 { background: #0d2218; }
.accomm-img.h2 { background: #071a10; }
.accomm-img.h3 { background: #0f1f0d; }
.accomm-img.h4 { background: #0a1a0d; }

.accomm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.accomm-body { padding: 20px; }

.accomm-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.accomm-type {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green-light);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.accomm-detail {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.accomm-note {
  font-size: 12px;
  color: rgba(244, 249, 240, 0.38);
  margin-top: 10px;
  font-style: italic;
}


/* ── SPONSORS ─────────────────────────────────────────────── */
.sponsors-body { padding: 48px; }

.sponsor-tier { margin-bottom: 48px; }

.tier-label {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}

.sponsor-grid { display: grid; gap: 16px; }
.sponsor-grid.major      { grid-template-columns: 1fr 1fr; }
.sponsor-grid.supporting { grid-template-columns: repeat(3, 1fr); }
.sponsor-grid.community  { grid-template-columns: repeat(4, 1fr); }

.sponsor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.sponsor-logo {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  overflow: hidden;
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s-yrc   { background: rgba(0,114,73,0.3);   color: var(--green-light); }
.s-cb    { background: rgba(161,206,114,0.15); color: var(--green-light); }
.s-other { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }

.sponsor-name { font-size: 14px; color: var(--white); font-weight: 500; }
.sponsor-desc { font-size: 12px; color: var(--muted); }

.become-sponsor {
  background: var(--bg-card);
  border: 1px dashed rgba(161, 206, 114, 0.3);
  border-radius: 4px;
  padding: 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.become-sponsor h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--white);
  margin: 10px 0 14px;
}

.become-sponsor p {
  font-size: 14px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.65;
}


/* ── CONTACT ──────────────────────────────────────────────── */
.contact-layout {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(161, 206, 114, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-val { font-size: 14px; color: var(--text); line-height: 1.55; }

.yrfs-note {
  background: rgba(0, 114, 73, 0.12);
  border: 1px solid rgba(0, 114, 73, 0.3);
  border-radius: 4px;
  padding: 22px;
  margin-top: 24px;
}

.yrfs-note-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.yrfs-note p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Contact form */
.form-group { margin-bottom: 18px; }

.form-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green-light);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid rgba(161, 206, 114, 0.22);
  border-radius: 3px;
  padding: 10px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}

.form-input:focus  { border-color: var(--green-light); }
.form-input::placeholder { color: rgba(244, 249, 240, 0.22); }

textarea.form-input { resize: vertical; min-height: 110px; }
select.form-input option { background: #0f2218; }

.form-submit {
  background: var(--green-light);
  color: var(--green-dark);
  border: none;
  padding: 13px 32px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  transition: background 0.15s;
}
.form-submit:hover { background: #b8dc8a; }


/* ── Utility ──────────────────────────────────────────────── */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 8px;
  padding: 0 48px 32px;
  flex-wrap: wrap;
}
 
.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
 
.filter-btn:hover {
  border-color: var(--green-light);
  color: var(--green-light);
}
 
.filter-btn.active {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--green-dark);
  font-weight: 500;
}
 
.gallery-year-group {
  margin-bottom: 8px;
}
 
.gallery-year-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 0 48px;
  margin-bottom: 20px;
}
 
.gallery-year-heading h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
 
.gallery-year-heading .gallery-year-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
 
.gallery-year-heading .gallery-year-count {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}
 
.gallery-grid {
  padding: 0 48px 60px;
  column-count: 4;
  column-gap: 16px;
}
 
.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}
 
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
 
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
 
.gallery-item:hover img {
  transform: scale(1.06);
}
 
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.2s;
}
 
.gallery-item:hover .gallery-overlay { opacity: 1; }
 
.gallery-cap-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}
 
.gallery-cap-year {
  font-size: 11px;
  color: var(--green-light);
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}
 
.gallery-zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s;
}
 
.gallery-item:hover .gallery-zoom-icon { opacity: 1; }
 
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 14, 8, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
 
.lightbox.open { display: flex; }
 
.lightbox-content {
  max-width: 1000px;
  max-height: 88vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
}
 
.lightbox-img-wrap {
  max-height: 60vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
 
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
 
.lightbox-caption {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 8px;
  max-width: 600px;
  flex-shrink: 0;
}
 
.lightbox-cap-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 1px;
}
 
.lightbox-cap-year {
  font-size: 12px;
  color: var(--green-light);
  letter-spacing: 2px;
  margin-top: 6px;
  text-transform: uppercase;
}
 
.lightbox-cap-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
  font-weight: 300;
}
 
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
 
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
 
.lightbox-counter {
  position: absolute;
  top: 28px;
  left: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}
 
@media (max-width: 900px) {
  .gallery-grid { column-count: 2; }
}
 
@media (max-width: 560px) {
  .gallery-grid { column-count: 1; }
}
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }