:root{
  --bg: #0b0a0f;         /* near-black */
  --text: #f5f3ff;       /* soft white */
  --muted: #c7c2d6;      /* muted text */
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.14);

  /* Warm worship-night brand */
  --primary: #d4a017;    /* gold */
  --primary2: #8b1d2c;   /* deep red */
  --accent: #ffcc66;     /* warm highlight */
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: var(--primary); }
a:hover{ color: var(--accent); }

.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px;
}

/* ===== HEADER / NAV ===== */
header{
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(212,160,23,0.22), transparent 60%),
    radial-gradient(900px 420px at 85% 10%, rgba(139,29,44,0.22), transparent 55%),
    radial-gradient(700px 360px at 50% 0%, rgba(255,204,102,0.10), transparent 55%);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.logo{
  font-weight: 950;
  letter-spacing: 1.6px;
  font-size: 38px;              /* BIG on laptop */
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.05;
  white-space: nowrap;          /* keep one line on laptop */
}

.links{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.links a{
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  font-size: 14px;              /* slightly smaller than logo */
}

.links a:hover{
  opacity: 1;
  color: var(--accent);
}

/* ===== HERO ===== */
.hero{ padding: 44px 0 18px; }
.hero.small{ padding: 26px 0 10px; }

.hero h1{
  font-size: clamp(38px, 5vw, 68px); /* bigger headline */
  line-height: 1.05;
  margin: 18px 0 10px;
}

.lead{
  font-size: 18px;
  max-width: 70ch;
  color: var(--muted);
}

.ml{ opacity: 0.9; }

.heroActions{
  display: flex;
  gap: 12px;
  margin: 14px 0;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  color: #111;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow: 0 12px 26px rgba(212,160,23,0.18);
  transition: transform 140ms ease, filter 140ms ease;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn.secondary{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 650;
  box-shadow: none;
}

/* ===== SECTIONS / CARDS ===== */
.section{ padding: 22px 0; }

.grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.card{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.card h3{ margin-top: 0; }

/* ===== VIDEO EMBED ===== */
.video{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.video iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===== CTA ===== */
.cta{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
}

.supportRow{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ===== FORMS ===== */
.form{
  display: grid;
  gap: 10px;
  max-width: 720px;
}

input, select, textarea{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(255,204,102,0.55);
  box-shadow: 0 0 0 3px rgba(255,204,102,0.15);
}

input::placeholder, textarea::placeholder{
  color: rgba(245,243,255,0.55);
}

/* ===== FOOTER ===== */
.footer{
  padding: 22px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: 24px;
}

.tiny{
  font-size: 12px;
  color: rgba(245,243,255,0.75);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .logo{
    font-size: 28px;
    white-space: normal;     /* allow wrap if needed */
  }
  .grid3{
    grid-template-columns: 1fr;
  }
}
