/* Norge for Kristus — norgeforkristus.no */

:root {
  --navy: #1b2a4a;
  --navy-dark: #14203a;
  --red: #b21317;
  --red-hover: #d61a1f;
  --ink: #22293a;
  --muted: #5c6474;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --border: #e5e8ee;
  --max: 1120px;
  --radius: 14px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(20, 32, 58, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .3s;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand img { height: 40px; width: auto; }

.nav { display: flex; gap: 6px; align-items: center; }

.nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s;
}

.nav a:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.nav a.active { background: rgba(255,255,255,.16); }
.nav a.nav-cta { background: var(--red); }
.nav a.nav-cta:hover { background: var(--red-hover); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy-dark);
    padding: 12px 24px 20px;
    gap: 4px;
    display: none;
    box-shadow: 0 16px 32px rgba(0,0,0,.25);
  }
  .nav-open .nav { display: flex; }
  .nav a { padding: 14px; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("/images/forside_bg.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,32,58,.55) 0%, rgba(20,32,58,.35) 45%, rgba(20,32,58,.75) 100%);
}

.hero-inner { position: relative; z-index: 1; padding: 140px 24px 90px; max-width: 820px; }

.hero-kicker {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .9;
}

.hero h1 {
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.1;
  margin: 18px 0 28px;
}

.hero blockquote {
  font-size: clamp(18px, 2.6vw, 23px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.hero blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-style: normal;
  opacity: .8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .15s, background .2s, box-shadow .2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 24px rgba(178,19,23,.35); }
.btn-primary:hover { background: var(--red-hover); }

.btn-outline { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section.soft { background: var(--bg-soft); }
.section.navy { background: var(--navy-dark); color: #fff; }

.section-label {
  display: block;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.navy .section-label { color: #ff8a8d; }

h2.section-title {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}
.navy h2.section-title { color: #fff; }

.center { text-align: center; }
.center .section-title { margin-left: auto; margin-right: auto; }

.lead { font-size: 19px; color: var(--muted); max-width: 700px; }
.center .lead { margin: 0 auto; }

/* Two-column split */
.split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { grid-template-columns: 6fr 5fr; }

.split .img-wrap img {
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(27,42,74,.18);
  width: 100%;
  object-fit: cover;
}

.split p + p { margin-top: 16px; }

@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 64px 0; }
}

/* ---------- Video ---------- */
.video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(27,42,74,.25);
  background: #000;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- Program / parallax CTA ---------- */
.banner {
  position: relative;
  padding: 120px 0;
  color: #fff;
  background: var(--navy-dark);
  overflow: hidden;
  text-align: center;
}
.banner::before {
  content: "";
  position: absolute; inset: 0;
  background: url("/images/parallax1.jpg") center/cover no-repeat fixed;
}
@media (max-width: 860px) { .banner::before { background-attachment: scroll; } }
.banner::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(20,32,58,.72);
}
.banner .container { position: relative; z-index: 1; }
.banner h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: .06em; margin-bottom: 16px; }
.banner p { max-width: 540px; margin: 0 auto 32px; font-size: 18px; opacity: .92; }

/* ---------- Beliefs / visjon ---------- */
.beliefs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.belief {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  font-size: 16px;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(27,42,74,.05);
}
.belief strong { color: var(--navy); display: block; margin-bottom: 6px; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 720px) { .beliefs { grid-template-columns: 1fr; } }

/* ---------- Info cards (kontakt) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(27,42,74,.05);
}
.card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { color: var(--navy); font-size: 15px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 16px; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Article (Israel) ---------- */
.page-hero {
  background: var(--navy-dark);
  color: #fff;
  padding: 160px 0 72px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: .06em;
}
.page-hero p { margin-top: 14px; font-size: 18px; opacity: .85; max-width: 640px; margin-left: auto; margin-right: auto; }

.article { max-width: 780px; margin: 0 auto; }
.article figure { margin: 56px 0 32px; }
.article figure img { border-radius: var(--radius); box-shadow: 0 16px 40px rgba(27,42,74,.15); width: 100%; }
.article .intro {
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin-bottom: 24px;
}
.article h3 {
  color: var(--navy);
  font-size: 22px;
  margin: 36px 0 12px;
}
.article p { margin-bottom: 16px; }

/* ---------- Steps (podcast how-to) ---------- */
.steps { counter-reset: step; }
.steps li {
  list-style: none;
  counter-increment: step;
  position: relative;
  padding: 0 0 18px 56px;
  font-size: 17px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: -2px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 17px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><path d="M20 6L9 17l-5-5"/></svg>') center/14px no-repeat, linear-gradient(#fff,#fff);
  -webkit-mask-composite: destination-out;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><path d="M20 6L9 17l-5-5"/></svg>') center/14px no-repeat;
}
.feature-list strong { color: var(--navy); }

.phone-shots { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.phone-shots img { border-radius: var(--radius); box-shadow: 0 12px 32px rgba(27,42,74,.15); }

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 16px rgba(27,42,74,.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color .2s, box-shadow .2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,.12);
  background: #fff;
}

.form-field textarea { resize: vertical; min-height: 140px; }

.contact-form .btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-status { text-align: center; margin-top: 18px; font-weight: 600; min-height: 1.5em; }
.form-status.ok { color: #1c7c3c; }
.form-status.error { color: var(--red); }

@media (max-width: 640px) {
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.82);
  padding: 72px 0 40px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.site-footer img.footer-logo { height: 52px; width: auto; margin-bottom: 18px; }
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer a { color: #fff; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }

.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.socials a:hover { background: var(--red); }
.socials svg { width: 18px; height: 18px; fill: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
  text-align: center;
  font-size: 13.5px;
  opacity: .7;
}

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