/* ===== PHAROS GEMEENTE — SHARED STYLES v2 ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy: #1a2540;
  --navy-deep: #0f1728;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c8;
  --cream: #faf7f0;
  --warm-white: #fffdf8;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8a8aaa;
  --border: rgba(201,168,76,0.2);
  --shadow: 0 4px 40px rgba(26,37,64,0.10);
  --shadow-lg: 0 12px 60px rgba(26,37,64,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Jost', sans-serif; background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,23,40,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
}
.nav-logo { display:flex; align-items:center; gap:0.75rem; text-decoration:none; }
.nav-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600;
  color: var(--warm-white); letter-spacing: 0.02em; line-height: 1;
}
.nav-logo-sub {
  font-size: 0.6rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase;
  display: block;
}
.nav-links { display:flex; align-items:center; gap:0.2rem; list-style:none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.72);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.45rem 0.9rem; border-radius: 4px; transition: all 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); background: rgba(201,168,76,0.1); }
.nav-cta { background: var(--gold) !important; color: var(--navy-deep) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-hamburger { display:none; background:none; border:none; cursor:pointer; color:white; font-size:1.5rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--navy-deep); position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 72px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
  filter: saturate(0.6);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(15,23,40,0.97) 40%, rgba(15,23,40,0.6) 100%);
}
.hero-content { position:relative; z-index:2; padding:3rem clamp(2rem,8vw,8rem); max-width:700px; }
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content:''; width:32px; height:1px; background:var(--gold); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem,6.5vw,5.8rem); font-weight: 300; line-height: 1.1;
  color: var(--warm-white); margin-bottom: 1.5rem;
}
.hero h1 em { font-style:italic; color:var(--gold-light); }
.hero p {
  font-size: 1.05rem; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.62); max-width: 520px; margin-bottom: 2.5rem;
}
.hero-btns { display:flex; gap:1rem; flex-wrap:wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; border:none; cursor:pointer;
  border-radius: 3px; transition: all 0.25s; box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(201,168,76,0.45); }
.btn-outline {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding: 0.85rem 2rem; background: transparent;
  color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px; transition: all 0.25s;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold-light); background:rgba(201,168,76,0.08); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before { content:''; width:28px; height:1px; background:var(--gold); }
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,4vw,3.5rem); font-weight: 400; line-height: 1.2;
  color: var(--navy); margin-bottom: 1rem;
}
h2.section-title em { font-style:italic; color:var(--gold); }
.section-lead { font-size:1.05rem; font-weight:300; line-height:1.8; color:var(--text-mid); max-width:560px; }

/* ── LAYOUT ── */
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }
.section { padding:6rem 0; }
.section-dark { background:var(--navy); }
.section-cream { background:var(--cream); }
.section-gold { background:var(--gold-pale); }

/* ── IMAGE COMPONENTS ── */
.img-cover {
  width:100%; height:100%; object-fit:cover;
  display:block;
}
.img-rounded { border-radius:12px; overflow:hidden; }
.img-shadow { box-shadow: var(--shadow-lg); }

/* ── PHOTO GRID ── */
.photo-split {
  display:grid; grid-template-columns:1fr 1fr;
  min-height:560px;
}
.photo-panel { position:relative; overflow:hidden; }
.photo-panel img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.photo-panel:hover img { transform:scale(1.04); }
.photo-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(15,23,40,0.85) 0%, transparent 50%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:2.5rem;
}
.photo-overlay h3 {
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem; font-weight:400; color:white; margin-bottom:0.3rem;
}
.photo-overlay p { font-size:0.85rem; color:rgba(255,255,255,0.65); font-weight:300; }

/* ── CARDS ── */
.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; margin-top:3rem; }
.card {
  background:white; border-radius:8px; overflow:hidden;
  border:1px solid rgba(26,37,64,0.06); box-shadow:var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.card-img { width:100%; height:180px; object-fit:cover; }
.card-body { padding:1.75rem; }
.card-icon { width:46px; height:46px; background:var(--gold-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:1rem; }
.card h3 { font-family:'Cormorant Garamond',serif; font-size:1.45rem; font-weight:500; color:var(--navy); margin-bottom:0.5rem; }
.card p { font-size:0.88rem; font-weight:300; line-height:1.75; color:var(--text-mid); }

/* ── SCRIPTURE ── */
.scripture-block {
  background:var(--navy); padding:5rem 2rem; text-align:center; position:relative; overflow:hidden;
}
.scripture-block::before {
  content:'"'; position:absolute; top:-4rem; left:50%; transform:translateX(-50%);
  font-family:'Cormorant Garamond',serif; font-size:22rem; color:rgba(201,168,76,0.04);
  line-height:1; pointer-events:none;
}
.scripture-text {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.6rem,3.5vw,2.8rem); font-weight:300; font-style:italic;
  color:var(--warm-white); line-height:1.55; max-width:820px; margin:0 auto 1.5rem;
  position:relative; z-index:1;
}
.scripture-ref { font-size:0.75rem; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); font-weight:600; }

/* ── PAGE HEADER ── */
.page-header {
  background:var(--navy-deep); padding:9rem 0 4.5rem; position:relative; overflow:hidden;
}
.page-header-bg {
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0.12; filter:saturate(0.5);
}
.page-header::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to right, rgba(15,23,40,0.97) 40%, rgba(15,23,40,0.7) 100%);
}
.page-header .container { position:relative; z-index:1; }
.page-header h1 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.5rem,5vw,4.5rem); font-weight:300; color:var(--warm-white); margin-bottom:0.6rem;
}
.page-header p { font-size:1rem; font-weight:300; color:rgba(255,255,255,0.52); max-width:540px; }
.breadcrumb { font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
.breadcrumb a { color:rgba(255,255,255,0.38); text-decoration:none; }
.breadcrumb a::after { content:' / '; color:rgba(255,255,255,0.18); }

/* ── FOOTER ── */
footer { background:var(--navy-deep); padding:4.5rem 0 2.5rem; border-top:1px solid rgba(201,168,76,0.12); }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:3rem; margin-bottom:3rem; }
.footer-logo { display:flex; align-items:center; gap:0.75rem; text-decoration:none; margin-bottom:1rem; }
.footer-logo img { height:38px; filter:brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg); opacity:0.9; }
.footer-brand p { font-size:0.85rem; font-weight:300; line-height:1.8; color:rgba(255,255,255,0.4); max-width:250px; margin-top:0.75rem; }
.footer-col h4 { font-size:0.65rem; font-weight:600; letter-spacing:0.22em; text-transform:uppercase; color:var(--gold); margin-bottom:1.25rem; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:0.55rem; }
.footer-col ul a { text-decoration:none; font-size:0.85rem; font-weight:300; color:rgba(255,255,255,0.45); transition:color 0.2s; }
.footer-col ul a:hover { color:var(--gold-light); }
.footer-contact-item { display:flex; gap:0.75rem; margin-bottom:0.7rem; font-size:0.82rem; font-weight:300; color:rgba(255,255,255,0.45); }
.footer-contact-item span:first-child { color:var(--gold); flex-shrink:0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.05); padding-top:1.5rem; display:flex; justify-content:space-between; align-items:center; font-size:0.75rem; color:rgba(255,255,255,0.28); flex-wrap:wrap; gap:0.5rem; }
.social-links { display:flex; gap:0.6rem; margin-top:1rem; }
.social-link { width:33px; height:33px; border:1px solid rgba(255,255,255,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; text-decoration:none; color:rgba(255,255,255,0.38); font-size:0.85rem; transition:all 0.2s; }
.social-link:hover { border-color:var(--gold); color:var(--gold); }

/* ── MOBILE ── */
@media (max-width:768px) {
  .nav-links { display:none; }
  .nav-hamburger { display:block; }
  .nav-links.open { display:flex; flex-direction:column; position:fixed; top:72px; left:0; right:0; bottom:0; background:var(--navy-deep); padding:2rem; gap:0.5rem; z-index:99; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .footer-brand { grid-column:1/-1; }
  .photo-split { grid-template-columns:1fr; }
}
@media (max-width:600px) {
  .footer-grid { grid-template-columns:1fr; }
}
