/* ═══════════════════════════════════════════════
   FAITH UNITY PRAYER INC — Main Stylesheet
   Palette: Deep Navy (#0d1a33), Gold (#c9962a),
            Cream (#f9f5ee), Warm White (#ffffff)
════════════════════════════════════════════════ */

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

/* Custom cross cursor */
html, body, * {
  cursor: url('cursor.svg') 16 8, crosshair;
}
a, button, input, select, textarea, [role="button"], label {
  cursor: url('cursor.svg') 16 8, crosshair;
}

:root {
  --navy:       #0d1a33;
  --navy-mid:   #1a2a4a;
  --navy-light: #243555;
  --gold:       #c9962a;
  --gold-light: #f5d080;
  --gold-pale:  #fdf3d8;
  --cream:      #f9f5ee;
  --white:      #ffffff;
  --text:       #2c2c2c;
  --text-light: #5a5a6a;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(13,26,51,0.12);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── Typography ──────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Layout ──────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-dark  { background: var(--navy); }
.section-gold  { background: var(--gold-pale); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }
.section-label.dark  { color: var(--navy-mid); }
.section-title  { margin-bottom: 16px; }
.section-title.light  { color: var(--white); }
.section-title.dark   { color: var(--navy); }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 640px; margin: 0 auto 48px; }
.section-subtitle.light { color: #a0b4cc; }
.section-subtitle.dark  { color: var(--navy-mid); }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,150,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn.full-width { width: 100%; text-align: center; }

/* ═══════════════  NAVBAR  ════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition);
}
#navbar.scrolled .nav-inner { padding: 12px 24px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.nav-logo img { width: 44px; height: 44px; border-radius: 8px; }
.nav-logo:hover { color: var(--gold-light); }

#nav-menu ul {
  display: flex;
  list-style: none;
  gap: 8px;
}
#nav-menu ul li a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
#nav-menu ul li a:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════  HERO  ══════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

/* Animated star/particle background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,150,42,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(26,42,74,0.8) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, #0d1a33 0%, #060e1f 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Ccircle cx='100' cy='150' r='1.5' fill='%23f5d080' opacity='0.4'/%3E%3Ccircle cx='250' cy='80' r='1' fill='%23f5d080' opacity='0.3'/%3E%3Ccircle cx='420' cy='200' r='1.5' fill='%23f5d080' opacity='0.5'/%3E%3Ccircle cx='500' cy='100' r='1' fill='%23f5d080' opacity='0.35'/%3E%3Ccircle cx='50' cy='400' r='1' fill='%23f5d080' opacity='0.3'/%3E%3Ccircle cx='350' cy='500' r='1.5' fill='%23f5d080' opacity='0.4'/%3E%3Ccircle cx='550' cy='450' r='1' fill='%23f5d080' opacity='0.3'/%3E%3Ccircle cx='150' cy='550' r='1.5' fill='%23f5d080' opacity='0.25'/%3E%3C/svg%3E") repeat;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}
.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  border: 3px solid rgba(201,150,42,0.5);
  box-shadow: 0 0 40px rgba(201,150,42,0.25);
  margin-bottom: 28px;
  animation: pulse 4s ease-in-out infinite;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 20px;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(201,150,42,0.25); }
  50%       { box-shadow: 0 0 60px rgba(201,150,42,0.45); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════  WELCOME BAR  ══════════════ */
.welcome-bar {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  padding: 18px 0;
  text-align: center;
}
.welcome-bar p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--navy);
  font-weight: 600;
}

/* ═══════════════  ABOUT  ════════════════════ */
.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-logo-card {
  background: #071030;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
}
.about-logo-card img { width: 100%; max-width: 280px; }
.about-accent-bar {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p  { color: var(--text-light); margin-bottom: 20px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.pillar {
  text-align: center;
  padding: 20px 12px;
  background: var(--cream);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.pillar-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.pillar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.pillar p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ═══════════════  LEADERSHIP  ══════════════ */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.leader-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,150,42,0.2);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: transform var(--transition), border-color var(--transition);
}
.leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,150,42,0.5);
}
.leader-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-initials {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.leader-info h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.leader-title {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.leader-info p { color: #a0b4cc; font-size: 0.92rem; margin-bottom: 16px; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}
.instagram-link {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}
.instagram-link:hover {
  color: var(--white);
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,39,67,0.4);
}

/* ═══════════════  SERVICES  ════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 32px;
}
.service-card {
  background: var(--white);
  border: 2px solid #ede9e0;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,150,42,0.15);
}
.service-card.featured {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: #a0b4cc; }
.service-card.featured .service-time { color: var(--gold-light); }

.service-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 8px; color: var(--navy); }
.service-time {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card p { color: var(--text-light); font-size: 0.92rem; }
.services-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
}
.services-note a { color: var(--gold); font-weight: 700; }

/* ═══════════════  CONNECT  ══════════════════ */
.social-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 40px;
  border-radius: var(--radius);
  color: var(--white);
  min-width: 180px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.social-card:hover { transform: translateY(-4px); color: var(--white); }
.social-card.facebook { background: #1877f2; }
.social-card.facebook:hover { background: #0d65d9; }
.social-card.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-card.instagram:hover { opacity: 0.92; }
.social-card span { font-weight: 700; font-size: 1rem; }
.social-card small { font-size: 0.78rem; opacity: 0.85; }

/* ═══════════════  CONTACT  ══════════════════ */
.contact-grid { align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 0.95rem; color: var(--text-light); }
.contact-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 28px; font-size: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #ddd8ce;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.85rem; color: green; margin-top: 12px; text-align: center; }

/* ═══════════════  FOOTER  ════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { width: 64px; height: 64px; border-radius: 8px; margin-bottom: 16px; }
.footer-brand h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 4px; }
.footer-verse { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.85rem; color: var(--gold-light); margin-top: 12px; line-height: 1.5; }

.footer-links h4,
.footer-social h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links ul li a:hover { color: var(--gold-light); }

.footer-social-icons { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.footer-icon.facebook  { background: #1877f2; }
.footer-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-icon:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); color: var(--white); }
.footer-social-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════  RESPONSIVE  ═══════════════ */
@media (max-width: 900px) {
  .two-col      { grid-template-columns: 1fr; gap: 40px; }
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 720px) {
  .section      { padding: 64px 0; }
  .pillars      { grid-template-columns: 1fr; }
  .leaders-grid { grid-template-columns: 1fr; }
  .leader-card  { flex-direction: column; align-items: center; text-align: center; }
  .footer-top   { grid-template-columns: 1fr; gap: 32px; }
  .form-row     { grid-template-columns: 1fr; }
  .about-logo-card { max-width: 260px; padding: 24px; }

  .hamburger { display: flex; }
  #nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  #nav-menu.open { transform: translateX(0); }
  #nav-menu ul { flex-direction: column; gap: 4px; text-align: center; }
  #nav-menu ul li a { font-size: 1.2rem; padding: 14px 32px; }
  .nav-logo span { display: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .social-grid { flex-direction: column; align-items: center; }
  .social-card { width: 100%; max-width: 320px; }
  .contact-form-wrap { padding: 28px 20px; }
}
