﻿:root {
  --bg: #f5f1e8;
  --paper: #fffdf8;
  --ink: #1f2a35;
  --muted: #5d6b78;
  --brand: #8a6a2f;
  --brand-strong: #6f5422;
  --line: #e2dacb;
  --footer: #1d2833;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 0%, #faf6ed 0%, var(--bg) 55%, #efe8dc 100%);
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  backdrop-filter: blur(10px);
  background: rgba(245, 241, 232, 0.88);
  border-bottom: 1px solid rgba(138, 106, 47, 0.14);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-strong);
}

.navbar-nav .nav-link {
  color: var(--ink);
  font-weight: 600;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--brand-strong);
}

.hero-section {
  min-height: 78vh;
  position: relative;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  min-height: 78vh;
}

.hero-slide {
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #f2d9a8;
  margin-bottom: 0.75rem;
}

.hero-lead {
  max-width: 60ch;
  margin-bottom: 2rem;
}

.btn-gold {
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  color: #fff;
}

.section-warm {
  background: linear-gradient(180deg, #fffdf7 0%, #f7f1e6 100%);
}

.section-faith {
  position: relative;
  overflow: hidden;
  color: #2f2618;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 240, 206, 0.75), transparent 48%),
    radial-gradient(circle at 84% 78%, rgba(229, 193, 131, 0.45), transparent 42%),
    linear-gradient(180deg, #f4e4c8 0%, #e7d0a8 100%);
}

.section-faith::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(173, 120, 40, 0.12), transparent 36%),
    linear-gradient(90deg, transparent 0%, rgba(255, 253, 246, 0.3) 50%, transparent 100%);
}

.section-soft {
  background: linear-gradient(180deg, #f3ece1 0%, #ece3d6 100%);
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-warm,
.section-faith,
.section-soft {
  border-top: 1px solid rgba(138, 106, 47, 0.14);
  border-bottom: 1px solid rgba(31, 42, 53, 0.08);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.45rem;
}

.section-heading p {
  color: var(--muted);
  margin-bottom: 2.4rem;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 0.7rem auto 0;
  border-radius: 999px;
  background: var(--brand);
}

.section-faith .section-heading h2::after {
  background: #9f6f2f;
}

.section-faith .section-heading p {
  color: #5d4730;
}

.section-faith .section-heading h2,
.section-faith .text-white {
  color: #322515 !important;
}

.content-card,
.member-card,
.faith-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 0 12px 28px rgba(18, 27, 34, 0.08);
}

.content-card h3,
.faith-card h3,
.member-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.9rem;
}

.content-card p,
.faith-card p {
  line-height: 1.7;
}

.quote-block {
  border-left: 3px solid var(--brand);
  padding-left: 0.85rem;
  color: #344554;
}

.faith-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98) 0%, rgba(248, 240, 226, 0.97) 100%);
  border: 1px solid rgba(195, 154, 95, 0.4);
  box-shadow:
    0 14px 28px rgba(88, 56, 16, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faith-card h3 {
  color: #3b2a1a;
}

.faith-card p {
  color: #4a3824;
}

.faith-card h3 i {
  color: #9f6f2f;
}

.faith-card:hover {
  transform: translateY(-6px);
  border-color: rgba(159, 111, 47, 0.85);
  box-shadow:
    0 18px 34px rgba(88, 56, 16, 0.28),
    0 0 0 1px rgba(159, 111, 47, 0.22);
}

.member-photo {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(138, 106, 47, 0.26);
  margin-bottom: 1rem;
}

.member-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  color: #f7efe0;
  background:
    radial-gradient(circle at 20% 0%, rgba(196, 147, 74, 0.18), transparent 40%),
    linear-gradient(180deg, #4a3321 0%, #382617 100%);
}

.site-footer h2 {
  color: #fff6e7;
  margin-bottom: 0.5rem;
}

.social-link {
  color: #f5d79f;
  font-weight: 700;
}

.social-link:hover,
.social-link:focus {
  color: #fff6e7;
}

.contact-list li {
  margin-bottom: 0.7rem;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.contact-list i {
  color: #f5d79f;
}

.map-shell {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(240, 216, 165, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, rgba(40, 29, 20, 0.95), rgba(23, 17, 13, 0.95));
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f6e6cb;
}

.map-preview-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.09) 20%, transparent 20% 22%, rgba(255, 255, 255, 0.09) 22% 24%, transparent 24%),
    linear-gradient(25deg, rgba(255, 255, 255, 0.07) 15%, transparent 15% 17%, rgba(255, 255, 255, 0.07) 17% 19%, transparent 19%),
    radial-gradient(circle at 72% 34%, rgba(180, 130, 62, 0.35), transparent 16%),
    radial-gradient(circle at 30% 70%, rgba(180, 130, 62, 0.26), transparent 16%),
    linear-gradient(180deg, #334657 0%, #293d50 100%);
}

.map-preview-pin {
  position: absolute;
  left: 50%;
  top: 34%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  color: #f2d9a8;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.map-consent-panel {
  position: relative;
  z-index: 1;
  width: min(92%, 470px);
  text-align: center;
  padding: 1rem 1rem 0.9rem;
  background: rgba(16, 22, 29, 0.72);
  border: 1px solid rgba(246, 230, 203, 0.24);
  border-radius: 0.9rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.map-consent-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.map-consent-text {
  margin-bottom: 0.75rem;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.map-load-btn {
  margin-bottom: 0;
}

.map-open-link {
  color: #fff3d6;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 243, 214, 0.92);
  background: rgba(255, 243, 214, 0.08);
  border-radius: 0.55rem;
  padding: 0.6rem 0.8rem;
  line-height: 1.2;
}

.map-open-link:hover,
.map-open-link:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.map-consent-note {
  color: #dbc7a1;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 215, 159, 0.22);
}

.to-top {
  color: #f5d79f;
  text-decoration: none;
}

.to-top:hover,
.to-top:focus {
  color: #fff;
}

.page-main {
  min-height: 65vh;
}

.page-hero {
  position: relative;
  padding: 5.5rem 0 3.5rem;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17, 26, 37, 0.58), rgba(17, 26, 37, 0.66));
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.7rem;
}

.page-hero p {
  max-width: 72ch;
  color: rgba(255, 248, 233, 0.92);
}

.content-long p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-long h3 {
  margin-top: 0.35rem;
}

.content-long .mini-heading {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #876228;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
}

.bullet-list li {
  margin-bottom: 0.7rem;
  line-height: 1.7;
}

.donation-panel {
  background: linear-gradient(180deg, #fffaf0 0%, #f7ecda 100%);
  border: 1px solid rgba(159, 111, 47, 0.35);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: 0 14px 30px rgba(93, 63, 27, 0.16);
}

.vipps-badge {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #ff5ea9;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.vipps-number {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  color: #7c5420;
  margin: 0.6rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(138, 106, 47, 0.25);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 12px 26px rgba(18, 27, 34, 0.12);
}

.contact-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.contact-card li i {
  color: #9f6f2f;
}

@media (max-width: 991.98px) {
  .navbar {
    background: rgba(245, 241, 232, 0.97);
  }

  .hero-section,
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item,
  .hero-slide {
    min-height: 64vh;
  }

  .hero-slide {
    padding: 4rem 0;
  }
}

@media (max-width: 575.98px) {
  .content-card,
  .member-card,
  .faith-card {
    padding: 1.1rem;
  }

  .hero-lead {
    font-size: 1rem;
  }
}
