:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --grey: #777777;
  --light-grey: #e4e4e4;
  --green: #1a7a1a;
  --green-light: #e8f5e8;
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: "Barlow", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

h1, h2, h3, .nav-left a, .nav-right a, .btn, .eyebrow, .card-time, .event-day, .event-month, .leader-role, .sermon-series {
  font-family: "Bebas Neue", sans-serif;
}

h2 { letter-spacing: 0.04em; }
h3 { font-family: "Bebas Neue", sans-serif; letter-spacing: 0.03em; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.nav-left, .nav-right {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-left a, .nav-right a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.nav-left a:hover, .nav-right a:hover { color: var(--green); }

.logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.btn-nav {
  background: var(--black) !important;
  color: var(--white) !important;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem !important;
  letter-spacing: 0.06em;
}

.btn-nav:hover { background: var(--green) !important; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  padding: 1rem 4%;
  border-top: 1px solid var(--light-grey);
  gap: 0.9rem;
  background: var(--white);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  text-decoration: none;
  color: var(--black);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  scroll-margin-top: 0;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.eyebrow {
  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: block;
}

.eyebrow-light { color: #8ee88e; }

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.0;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.section-dark h2 { color: var(--white); }

.hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-quick-links a {
  text-decoration: none;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: border-color 0.2s, background 0.2s;
}

.hero-quick-links a:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

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

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-white:hover { background: var(--green); border-color: var(--green); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover { background: var(--white); color: var(--black); }

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ── SECTIONS ── */
.section { padding: 5.5rem 0; }

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-soft { background: var(--off-white); }

.section-heading { margin-bottom: 3rem; }
.section-heading.center { text-align: center; }

.section-sub {
  color: var(--grey);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* ── OOR ONS ── */
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.col-text p {
  color: var(--grey);
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}

.col-stats { display: flex; flex-direction: column; gap: 1rem; }

.stat-card {
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s;
}

.stat-card:hover { border-color: var(--green); }

.stat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--green);
}

.stat-icon svg { width: 100%; height: 100%; }

.stat-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.1rem;
  color: var(--black);
}

.stat-card p { color: var(--grey); font-size: 0.9rem; margin: 0; }

/* ── DIENSTE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}

.card {
  border: 1.5px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 1.8rem;
  background: #141414;
  transition: border-color 0.2s;
}

.card:hover { border-color: var(--green); }

.card-icon-line {
  width: 36px;
  height: 36px;
  color: var(--green);
  margin-bottom: 1rem;
}

.card-icon-line svg { width: 100%; height: 100%; }

.card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.card-time {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.6rem;
  display: block;
}

.card p { color: #aaa; font-size: 0.95rem; }

/* ── LEIERSKAP ── */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.leader-card {
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.leader-card:hover { border-color: var(--green); }

.leader-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-grey);
}

.leader-card h3 {
  font-size: 1.4rem;
  padding: 1rem 1.2rem 0;
}

.leader-role {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--green);
  padding: 0.1rem 1.2rem 0.6rem;
  display: block;
}

.leader-card p:last-child {
  color: var(--grey);
  font-size: 0.93rem;
  padding: 0 1.2rem 1.2rem;
}

/* ── PREKE ── */
.sermons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

.sermon-card {
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.sermon-card:hover { border-color: var(--green); }

.sermon-thumb {
  background: var(--black);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sermon-play {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s;
}

.sermon-card:hover .sermon-play { transform: scale(1.1); }

.sermon-play svg { width: 20px; height: 20px; margin-left: 3px; }

.sermon-info { padding: 1.1rem 1.2rem; }

.sermon-series {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--green);
  display: block;
  margin-bottom: 0.3rem;
}

.sermon-info h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }

.sermon-meta { color: var(--grey); font-size: 0.88rem; }

/* ── GEBEURE ── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--light-grey);
}

.event-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--light-grey);
  transition: background 0.2s;
}

.event-item:hover { background: var(--off-white); padding-left: 1rem; padding-right: 1rem; margin: 0 -1rem; }

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  text-align: center;
}

.event-day {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--green);
}

.event-month {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.event-details { flex: 1; }

.event-details h3 { font-size: 1.4rem; margin-bottom: 0.2rem; }

.event-details p { color: var(--grey); font-size: 0.93rem; }

.event-desc { margin-top: 0.3rem !important; }

/* ── GALERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: #1e1e1e;
  border: 1.5px dashed #333;
  border-radius: var(--radius);
}

.gallery-note {
  text-align: center;
  color: #666;
  font-size: 0.88rem;
}

/* ── KONTAK ── */
.kontak-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.kontak-info h2 { margin-bottom: 0.6rem; }
.kontak-info > p { color: var(--grey); margin-bottom: 2rem; font-size: 1.05rem; }

.kontak-details { display: flex; flex-direction: column; gap: 1.4rem; }

.kontak-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.kontak-detail-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 3px;
}

.kontak-detail-item strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.1rem;
}

.kontak-detail-item p { color: var(--grey); font-size: 0.95rem; margin: 0; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.form-row.full-width { grid-column: 1 / -1; }

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--light-grey);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--black);
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
}

#formStatus {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #222;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 0.6rem;
  filter: invert(1);
  display: block;
}

.footer-brand p {
  color: #888;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: #888;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green); }

.footer-contact p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.copyright {
  text-align: center;
  color: #444;
  font-size: 0.82rem;
  font-family: "Barlow", sans-serif;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col,
  .kontak-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .nav-left, .nav-right { display: none; }
  .mobile-menu-btn { display: flex; }

  .contact-form { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gallery-wide { grid-column: span 2; }

  .event-item { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-wide { grid-column: span 1; aspect-ratio: 16/9; }
  h1 { font-size: 2.8rem; }
  .hero { min-height: 500px; }
}

/* ── FACEBOOK ── */
.fb-link {
  display: flex;
  align-items: center;
  color: var(--black);
  transition: color 0.2s;
}

.fb-link:hover { color: #1877F2; }

.footer-fb {
  display: inline-block;
  margin-top: 0.5rem;
  color: #888;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-fb:hover { color: #1877F2; }

/* Sermon grid 2 columns */
.sermons-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 760px;
  margin: 0 auto;
}

/* ── MAP ── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--light-grey);
  margin-bottom: 1.5rem;
}

.map-wrap iframe {
  display: block;
}

.map-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER CONTACT COLUMN ── */
.footer-contact h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  color: #888;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-fb:hover { color: #1877F2; }

/* ── FOOTER REBUILD ── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 0;
  border-top: 3px solid var(--green);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #222;
  align-items: start;
}

.footer-brand .footer-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  filter: invert(1);
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: #888;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1.5px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.footer-links h4,
.footer-contact h4,
.footer-form-col h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  text-decoration: none;
  color: #888;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #888;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

/* Footer form */
.footer-form-col { display: flex; flex-direction: column; }

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.footer-form input,
.footer-form textarea {
  background: #181818;
  border: 1.5px solid #2a2a2a;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.2s;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder { color: #555; }

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

.footer-form textarea { resize: none; }

.btn-footer-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 1.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-footer-submit:hover { background: #145c14; }

#footerFormStatus {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
  margin: 0;
  min-height: 1.2rem;
}

.footer-bottom {
  padding: 1.2rem 0;
  text-align: center;
}

.footer-bottom .copyright {
  color: #444;
  font-size: 0.82rem;
}

@media (max-width: 1000px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 580px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-form-row { grid-template-columns: 1fr; }
}

/* YouTube hover */
.yt-link:hover { color: #FF0000 !important; }

/* Discreet admin link */
.admin-link {
  color: #333;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.2s;
}

.admin-link:hover { color: var(--green); }

/* Instagram hover */
.footer-socials a[aria-label="Instagram"]:hover {
  border-color: #E4405F;
  background: #E4405F;
  color: var(--white);
}

/* ════ NAV DROPDOWN ════ */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--black);
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}

.nav-dropdown-toggle:hover { color: var(--green); }

.nav-dropdown-toggle .caret {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.nav-dropdown-toggle.open .caret { transform: rotate(180deg); }
.nav-dropdown-toggle.open { color: var(--green); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 60;
}

.nav-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1.5px solid var(--light-grey);
  border-top: 1.5px solid var(--light-grey);
}

.nav-dropdown-menu li { margin: 0; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--black);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--green);
}

/* ════ MINISTRY PAGES ════ */
.min-hero {
  background: var(--black);
  padding: 7rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.min-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,122,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.min-hero .eyebrow { color: var(--green); }

.min-hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
}

.min-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.min-intro-text h2 { margin-bottom: 1.2rem; }

.min-intro-text p {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.min-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.min-highlight {
  border: 1.5px solid var(--light-grey);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  transition: border-color 0.2s;
}

.min-highlight:hover { border-color: var(--green); }

.min-highlight h3 {
  font-size: 1.3rem;
  margin-bottom: 0.1rem;
}

.min-highlight p {
  color: var(--green);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin: 0;
}

.min-scripture {
  background: var(--black);
  padding: 4.5rem 0;
  text-align: center;
}

.min-scripture blockquote { max-width: 720px; margin: 0 auto; }

.min-scripture .big-quote {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.min-scripture cite {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--green);
  font-style: normal;
}

.min-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.min-gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
}

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

.min-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--light-grey);
  border: 1.5px dashed #c4c4c4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.min-cta h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

@media (max-width: 860px) {
  .min-intro { grid-template-columns: 1fr; gap: 2rem; }
  .min-gallery { grid-template-columns: 1fr 1fr; }
}

/* Mobile: dropdown shows inline in mobile menu, hide desktop dropdown */
@media (max-width: 900px) {
  .nav-dropdown { display: none; }
}

/* ════ HERO TAGLINE ════ */
.hero-tagline {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  letter-spacing: 0.06em;
  color: var(--green);
  margin-bottom: 1rem;
  filter: brightness(1.5);
}

/* ════ VISION & MISSION ════ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.vm-card {
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 2.2rem;
  transition: border-color 0.2s;
}
.vm-card:hover { border-color: var(--green); }
.vm-icon {
  width: 44px; height: 44px;
  color: var(--green);
  margin-bottom: 1rem;
}
.vm-icon svg { width: 100%; height: 100%; }
.vm-card h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.vm-card p { color: var(--grey); font-size: 1rem; line-height: 1.75; }

/* ════ SERVICE GROUP LABELS ════ */
.group-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--green);
  margin: 2.5rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #2a2a2a;
}
.group-label:first-of-type { margin-top: 0; }
.card-cta-link { display: flex; flex-direction: column; justify-content: center; }

/* ════ MEDIA ════ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.media-card {
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color 0.2s;
}
.media-card:hover { border-color: var(--green); }
.media-icon { width: 40px; height: 40px; color: var(--green); margin-bottom: 1rem; }
.media-icon svg { width: 100%; height: 100%; }
.media-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.media-card p { color: var(--grey); font-size: 0.93rem; margin-bottom: 0.8rem; }
.media-link {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--green);
  text-decoration: none;
}
.media-link:hover { text-decoration: underline; }
.media-socials { display: flex; gap: 0.6rem; }
.media-socials a {
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1.5px solid var(--light-grey);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  transition: all 0.2s;
}
.media-socials a:hover { border-color: var(--green); background: var(--green); color: var(--white); }

/* ════ CONTACT SOCIALS ════ */
.contact-socials a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.contact-socials a:hover { text-decoration: underline; }

/* TikTok hover */
.footer-socials a[aria-label="TikTok"]:hover { border-color:#000; background:#000; color:#fff; }

@media (max-width: 860px) {
  .vm-grid { grid-template-columns: 1fr; }
}

/* ════ MINISTRY LEADERS / TEAM ════ */
.min-purpose {
  color: var(--black) !important;
  font-size: 1rem !important;
  padding: 0.8rem 1rem;
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 6px;
  margin-bottom: 1.2rem !important;
}
.leader-feature {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.leader-feature-photo .min-photo-placeholder {
  aspect-ratio: 4/5;
  border-radius: 14px;
}
.leader-feature-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
}
.leader-feature-text h3 { font-size: 1.8rem; margin-bottom: 0.2rem; }
.leader-feature-text .leader-role { margin-bottom: 1rem; }
.leader-feature-text p { color: var(--grey); font-size: 1.02rem; line-height: 1.75; }

.team-block { margin-top: 1rem; }
.team-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 1.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
}
.team-member { text-align: center; }
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 999px;
  background: var(--light-grey);
  margin: 0 auto 0.7rem;
  border: 2px solid var(--green);
}
.team-member h4 { font-family: "Bebas Neue", sans-serif; font-size: 1.15rem; letter-spacing: 0.04em; }
.team-member p { color: var(--green); font-family: "Bebas Neue", sans-serif; font-size: 0.85rem; letter-spacing: 0.08em; }

@media (max-width: 860px) {
  .leader-feature { grid-template-columns: 1fr; gap: 1.5rem; }
}
