/* ============================================================
   Fresh Wind Community Church — V1 stylesheet
   ============================================================ */

:root {
  --navy: #0e2a47;
  --navy-deep: #081d33;
  --sky: #2e7fc4;
  --sky-light: #e8f2fb;
  --gold: #d4a24e;
  --gold-soft: #f2e4c9;
  --ink: #1c2b3a;
  --muted: #5b6b7c;
  --paper: #ffffff;
  --paper-warm: #f7f9fc;
  --line: #e2e8f0;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(14, 42, 71, 0.10);
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; color: var(--navy); }

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

a { color: inherit; text-decoration: none; }

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

.section { padding: 96px 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.7rem); }
.section-sub { color: var(--muted); margin-top: 14px; font-size: 1.08rem; }

h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); box-shadow: 0 10px 24px rgba(212, 162, 78, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212, 162, 78, 0.45); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 42px; height: 42px; }
.brand-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); line-height: 1.05; display: flex; flex-direction: column; }
.brand-name-sub { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 500; font-size: 0.98rem; color: var(--ink); transition: color 0.15s; }
.nav a:hover { color: var(--sky); }
.nav .nav-cta { background: var(--navy); color: #fff; padding: 10px 22px; border-radius: 999px; }
.nav .nav-cta:hover { background: var(--sky); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 70% 20%, rgba(46,127,196,0.55), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 90%, rgba(212,162,78,0.20), transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; text-align: center; max-width: 780px; padding-top: 40px; padding-bottom: 40px; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; font-weight: 600; color: var(--gold-soft); margin-bottom: 20px; }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.4rem); color: #fff; font-weight: 700; margin-bottom: 18px; }
.hero-tagline { font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: rgba(255,255,255,0.9); font-family: 'Fraunces', serif; font-style: italic; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.about-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 22px; }
.about-text p { color: var(--muted); font-size: 1.08rem; margin-bottom: 18px; }
.signature { font-family: 'Fraunces', serif; font-style: italic; color: var(--navy) !important; font-size: 1.2rem; margin-top: 10px; display: flex; flex-direction: column; }
.signature span { font-family: 'Inter', sans-serif; font-style: normal; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* ---------- Mission ---------- */
.mission {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  text-align: center;
  padding: 80px 0;
}
.mission .eyebrow { margin-bottom: 20px; }
.mission-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.35;
}

/* ---------- Service Times ---------- */
.times-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 760px; margin: 0 auto 56px; }
.time-card {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.time-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.time-day { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.85rem; font-weight: 700; color: var(--sky); margin-bottom: 8px; }
.time-hour { font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 700; color: var(--navy); }
.time-desc { color: var(--muted); margin-top: 8px; }

.visitor-info {
  max-width: 760px; margin: 0 auto;
  background: var(--sky-light);
  border-radius: var(--radius);
  padding: 40px;
}
.visitor-info h3 { font-size: 1.5rem; margin-bottom: 20px; text-align: center; }
.visitor-list { list-style: none; display: grid; gap: 14px; }
.visitor-list li { position: relative; padding-left: 34px; color: var(--ink); }
.visitor-list li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,162,78,0.2);
}

/* ---------- Ministries ---------- */
.ministries { background: var(--paper-warm); }
.ministry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ministry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 4px solid var(--gold);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ministry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ministry-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.ministry-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Give ---------- */
.give { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: #fff; text-align: center; }
.give-inner { max-width: 700px; margin: 0 auto; }
.give h2 { color: #fff; }
.give-sub { color: rgba(255,255,255,0.82); font-size: 1.08rem; margin: 16px 0 36px; }
.give-options { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.give-zelle { display: flex; flex-direction: column; gap: 4px; }
.give-label { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--gold-soft); font-weight: 700; }
.give-detail { font-size: 1.1rem; color: #fff; font-weight: 500; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact-grid h2 { margin-bottom: 18px; }
.contact-grid > div > p { color: var(--muted); font-size: 1.06rem; }
.contact-methods { margin-top: 28px; display: grid; gap: 16px; }
.contact-item { display: flex; flex-direction: column; padding: 18px 22px; background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 0.15s, transform 0.15s; }
.contact-item:hover { border-color: var(--sky); transform: translateY(-2px); }
.contact-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem; font-weight: 700; color: var(--sky); }
.contact-value { font-size: 1.18rem; font-weight: 600; color: var(--navy); margin-top: 4px; }

.contact-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.contact-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 12px; }
.contact-card > p { color: rgba(255,255,255,0.82); margin-bottom: 26px; }
.contact-times { margin-top: 22px; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.98rem; }
.contact-times strong { color: var(--gold-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.8); padding-top: 56px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 52px; height: 52px; }
.footer-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.2rem; color: #fff; }
.footer-tag { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .ministry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .nav {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.28s ease;
  }
  .nav.open { max-height: 420px; }
  .nav a { width: 100%; padding: 16px 24px; border-top: 1px solid var(--line); }
  .nav .nav-cta { border-radius: 0; margin: 0; }
  .nav-toggle { display: flex; }
  .times-grid { grid-template-columns: 1fr; }
  .ministry-grid { grid-template-columns: 1fr; }
  .visitor-info { padding: 28px; }
  .contact-card { padding: 32px; }
}
