/* ============================
   POMITA Website - Main Styles
   Navy #1a2d5a | Gold #c9961a | White
   Font: Poppins
   ============================ */

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

:root {
  --navy: #1a2d5a;
  --navy-dark: #0f1c3d;
  --navy-light: #2a4080;
  --gold: #c9961a;
  --gold-light: #e0ad2f;
  --gold-pale: #fdf6e3;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --cream: #fffdf7;
  --text: #1e2531;
  --text-muted: #5c6478;
  --border: #e6e9f1;
  --shadow: 0 4px 24px rgba(26,45,90,0.08);
  --shadow-lg: 0 12px 48px rgba(26,45,90,0.16);
  --radius: 12px;
  --radius-sm: 7px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
}

h1, h2, h3, h4, .display-font {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  line-height: 1;
  font-family: inherit;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.6); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: rgba(255,255,255,0.22); color: var(--white); border-color: var(--white); }
.btn-secondary { background: var(--off-white); color: var(--text); border-color: var(--border); }
.btn-block { display: flex; width: 100%; }
.btn-disabled {
  background: var(--off-white);
  color: #aab0c0;
  border-color: var(--border);
  cursor: not-allowed;
  position: relative;
}
.btn-disabled:hover { transform: none; box-shadow: none; }

/* ---- Navbar (white, logo-matched) ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,45,90,0.08);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { height: 52px; width: auto; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active { background: var(--gold-pale); color: var(--navy); }
.nav-link.active { font-weight: 600; }
.nav-cta { margin-left: 8px; }
.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: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ---- Hero (photo background) ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15,28,61,0.92) 0%, rgba(26,45,90,0.78) 45%, rgba(26,45,90,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 18px;
  padding: 6px 16px;
  border: 1px solid rgba(224,173,47,0.4);
  border-radius: 30px;
  background: rgba(224,173,47,0.08);
}
.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
  max-width: 700px;
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  z-index: 2;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: bounce .9s infinite alternate;
}
@keyframes bounce { from { transform: rotate(45deg) translateY(0); } to { transform: rotate(45deg) translateY(6px); } }

/* ---- Page Hero (inner pages, plain navy gradient) ---- */
.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 100px 24px 72px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-overlay { display: none; }
.page-hero-sm { padding: 72px 24px 48px; }
.page-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--white); margin: 10px 0 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.06rem; }

/* ---- Sections ---- */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--navy); font-weight: 700; }
.section-desc { color: var(--text-muted); max-width: 600px; margin: 14px auto 0; }
.section-cta { text-align: center; margin-top: 44px; }

/* ---- Mission Strip ---- */
.mission-strip { background: var(--off-white); padding: 64px 0; }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: left;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}
.mission-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.mission-num { font-size: 0.78rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; display: block; }
.mission-card h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 10px; }
.mission-card p { font-size: 0.92rem; color: var(--text-muted); }

/* ---- Scripture Banner ---- */
.scripture-banner { background: var(--navy); padding: 64px 0; text-align: center; position: relative; }
.scripture-banner::before {
  content: '"';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  font-size: 8rem; color: rgba(255,255,255,0.06); font-family: Georgia, serif; line-height: 1;
}
.scripture-banner blockquote { position: relative; z-index: 1; }
.scripture-banner blockquote p {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  max-width: 740px;
  margin: 0 auto 14px;
  line-height: 1.7;
}
.scripture-banner blockquote cite { color: var(--gold-light); font-size: 0.9rem; font-style: normal; font-weight: 600; }

/* ---- Events Cards ---- */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 30px; }
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.event-card-image { position: relative; height: 215px; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.event-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.event-card:hover .event-card-image img { transform: scale(1.06); }
.event-card-placeholder { display: flex; align-items: center; justify-content: center; }
.event-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: 30px;
}
.media-count {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(15,28,61,0.75); color: var(--white);
  font-size: 0.74rem; padding: 4px 10px; border-radius: 30px;
  display: flex; align-items: center; gap: 4px;
}
.event-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.event-date { font-size: 0.76rem; color: var(--gold); font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.event-location { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.event-card-body h3 { font-size: 1.08rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.event-card-body h3 a { color: inherit; }
.event-card-body h3 a:hover { color: var(--gold); }
.event-excerpt { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; flex: 1; }
.event-link { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-top: auto; }
.event-link:hover { color: var(--gold); }

/* ---- About Teaser ---- */
.about-teaser { background: var(--white); }
.about-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-teaser-text h2 { font-size: 2.1rem; color: var(--navy); margin-bottom: 18px; }
.about-teaser-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-teaser-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: var(--gold-pale); border: 1px solid #f0e4b8; border-radius: var(--radius); padding: 30px 20px; text-align: center; }
.stat-number { display: block; font-size: 2.3rem; font-weight: 700; color: var(--navy); }
.stat-label { display: block; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-top: 6px; }

/* ---- CTA Section ---- */
.cta-section { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); padding: 76px 0; text-align: center; }
.cta-section h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-section .btn-gold { background: var(--navy); border-color: var(--navy); }
.cta-section .btn-gold:hover { background: var(--navy-dark); }

/* ---- Filter Bar ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-btn { padding: 9px 22px; border-radius: 30px; border: 2px solid var(--border); font-size: 0.88rem; font-weight: 600; color: var(--text-muted); transition: all .2s; background: var(--white); cursor: pointer; font-family: inherit; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- Pagination ---- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 52px; flex-wrap: wrap; }
.page-btn { padding: 9px 17px; border-radius: var(--radius-sm); border: 2px solid var(--border); font-weight: 600; font-size: 0.9rem; color: var(--text); transition: all .2s; background: var(--white); cursor: pointer; font-family: inherit; }
.page-btn:hover, .page-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- Event Detail ---- */
.event-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.event-meta-strip { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 14px; align-items: center; justify-content: center; }
.event-meta-strip span { color: rgba(255,255,255,0.88); font-size: 0.92rem; display: flex; align-items: center; gap: 6px; }
.event-description { font-size: 1.04rem; line-height: 1.9; color: var(--text); margin-bottom: 48px; white-space: pre-line; }
.media-section { margin-bottom: 52px; }
.media-section h2 { font-size: 1.55rem; color: var(--navy); margin-bottom: 22px; font-weight: 700; }
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.gallery-thumb { cursor: pointer; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: var(--off-white); transition: transform .25s, box-shadow .25s; position: relative; }
.gallery-thumb:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-zoom {
  position: absolute; inset: 0; background: rgba(15,28,61,0.0); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all .25s; color: white; font-size: 1.6rem;
}
.gallery-thumb:hover .gallery-thumb-zoom { opacity: 1; background: rgba(15,28,61,0.35); }
.thumb-caption { font-size: 0.8rem; color: var(--text-muted); padding: 6px 0; }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-sm); background: #000; }
.video-embed iframe, .video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-item video { width: 100%; border-radius: var(--radius-sm); background: #000; display: block; }

/* ---- Sidebar Cards ---- */
.sidebar-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.sidebar-card h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 14px; font-weight: 700; }
.sidebar-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
.sidebar-card a { color: var(--navy); font-weight: 500; }
.sidebar-card a:hover { color: var(--gold); }
.scripture-card { background: var(--navy); border-color: var(--navy); }
.scripture-card p { color: rgba(255,255,255,0.9); font-style: italic; font-size: 0.95rem; line-height: 1.75; margin-bottom: 10px; }
.scripture-card cite { color: var(--gold-light); font-size: 0.82rem; font-style: normal; font-weight: 600; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { background: var(--gold-pale); color: var(--navy); font-size: 0.78rem; padding: 5px 12px; border-radius: 30px; font-weight: 500; }

/* ---- About Page ---- */
.about-content { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.about-main h2 { font-size: 1.7rem; color: var(--navy); margin: 36px 0 14px; }
.about-main h2:first-child { margin-top: 0; }
.about-main p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.85; }
.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 26px 0; }
.vm-card { background: var(--off-white); border-radius: var(--radius); padding: 26px; border-left: 4px solid var(--gold); }
.vm-card h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 10px; }
.vm-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.objectives-list li { padding: 12px 0 12px 30px; position: relative; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 0.95rem; }
.objectives-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---- Communities grid (with photos) ---- */
.communities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; margin: 24px 0; }
.community-card { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.community-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.community-card:hover img { transform: scale(1.08); }
.community-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,28,61,0.85) 0%, rgba(15,28,61,0.1) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 16px;
}
.community-card-overlay span { color: var(--white); font-weight: 600; font-size: 0.95rem; }

/* ---- Partner / Donate Page ---- */
.partner-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.partner-main h2 { font-size: 1.7rem; color: var(--navy); margin: 36px 0 14px; }
.partner-main h2:first-child { margin-top: 0; }
.partner-main p { color: var(--text-muted); margin-bottom: 16px; }
.partner-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 22px 0 36px; }
.partner-way { background: var(--off-white); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); }
.partner-way-num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 700; font-size: 0.95rem; margin-bottom: 14px; }
.partner-way h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 8px; }
.partner-way p { font-size: 0.89rem; color: var(--text-muted); margin: 0; }
.bank-details { background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.bank-row { display: flex; gap: 20px; padding: 16px 22px; border-bottom: 1px solid var(--border); align-items: center; }
.bank-row:last-child { border-bottom: none; }
.bank-row span { font-size: 0.82rem; color: var(--text-muted); min-width: 150px; }
.bank-row strong { color: var(--navy); font-size: 0.95rem; }

/* Donate page - coming soon */
.donate-hero { text-align: center; padding: 80px 0; }
.donate-icon { width: 90px; height: 90px; margin: 0 auto 28px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; }
.donate-hero h1 { font-size: 2rem; color: var(--navy); margin-bottom: 16px; }
.donate-hero p { color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }
.coming-soon-badge {
  display: inline-block; background: var(--gold-pale); color: var(--gold); border: 1px solid #f0e4b8;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 24px;
}

/* ---- Contact ---- */
.contact-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 1.7rem; color: var(--navy); margin-bottom: 28px; }
.contact-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.contact-info-card { background: var(--off-white); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); }
.contact-icon-box { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--white); }
.contact-info-card h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 10px; }
.contact-info-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }
.contact-info-card a { color: var(--navy); font-weight: 500; }
.contact-info-card a:hover { color: var(--gold); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); height: 100%; min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---- Lightbox ---- */
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(10,16,33,0.95); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-content p { color: rgba(255,255,255,0.8); margin-top: 14px; font-size: 0.92rem; }
.lightbox-counter { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-top: 6px; }
.lightbox-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--white); font-size: 1.9rem; cursor: pointer; opacity: 0.75; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 2.6rem; cursor: pointer; padding: 0 18px; height: 90px; border-radius: var(--radius-sm); transition: background .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---- Loading / Empty States ---- */
.loading-state, .empty-state { text-align: center; padding: 70px 0; color: var(--text-muted); }
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--gold); border-radius: 50%; margin: 0 auto 16px; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Footer ---- */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 68px 0 0; }
.footer-container { max-width: 1180px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-wrap { background: var(--white); display: inline-block; padding: 10px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; }
.footer-logo { height: 50px; width: auto; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 22px; max-width: 300px; }
.social-links { display: flex; gap: 14px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all .2s; }
.social-links a:hover { background: var(--gold); color: var(--white); }
.footer-links h4, .footer-contact h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-light); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 10px; line-height: 1.65; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px; }
.admin-link { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.admin-link:hover { color: rgba(255,255,255,0.5); }

/* ---- Icon helper ---- */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; fill: currentColor; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .about-teaser-grid, .about-content, .partner-layout, .event-detail-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--white); padding: 14px; gap: 4px; z-index: 99; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }
  .footer-container { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions { flex-direction: column; gap: 12px; align-items: stretch; }
  .about-teaser-stats { grid-template-columns: 1fr 1fr; }
  .bank-row { flex-direction: column; gap: 4px; align-items: flex-start; }
  .bank-row span { min-width: unset; }
  .vision-mission-grid, .partner-ways { grid-template-columns: 1fr; }
}
