/* King's David Home — Neighborhood Pages */
:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a25;
  --gold: #c8a55a;
  --gold-light: #e2c97e;
  --gold-dark: #a6853a;
  --text: #e8e6e1;
  --text-muted: #9a968f;
  --green: #4ecb71;
  --green-bg: rgba(78,203,113,0.1);
  --red: #e74c3c;
  --border: rgba(200,165,90,0.12);
  --radius: 12px;
  --max-w: 1100px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,15,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-size: 1.15rem; font-weight: 700; color: var(--text); letter-spacing: 0.5px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; height: 100%; }
.nav-links > a { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.3px; transition: color .2s; display: flex; align-items: center; height: 100%; }
.nav-links > a:hover, .nav-links > a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--bg) !important; padding: 8px 20px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; }
.nav-cta:hover { background: var(--gold-light); color: var(--bg) !important; }
.nav-lang { border: 1px solid var(--border); padding: 5px 14px; border-radius: 6px; font-size: 0.82rem; color: var(--text-muted) !important; }
.nav-lang:hover { border-color: var(--gold); color: var(--gold) !important; }

/* HAMBURGER */
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; display: flex; align-items: center; height: 100%; }
.nav-dropdown-toggle { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.3px; transition: color .2s; cursor: pointer; text-decoration: none; display: flex; align-items: center; height: 100%; }
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active { color: var(--gold); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 280px; background: rgba(18,18,26,0.98); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 0; box-shadow: 0 12px 40px rgba(0,0,0,0.5); z-index: 1001; }
.nav-dropdown-menu a { display: block; padding: 10px 20px; color: var(--text-muted); font-size: 0.85rem; transition: background .2s, color .2s; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: rgba(200,165,90,0.08); color: var(--gold); }
.nav-dropdown-menu .menu-label { font-size: 11px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 14px 4px; font-weight: 600; }
.nav-dropdown-menu hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

/* HERO */
.hero { padding: 120px 0 60px; background: linear-gradient(180deg, rgba(200,165,90,0.06) 0%, transparent 60%); }
.hero .breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.hero .breadcrumb a { color: var(--text-muted); }
.hero .breadcrumb a:hover { color: var(--gold); }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero h1 span { color: var(--gold); }
.hero .subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 680px; line-height: 1.7; }

/* SECTIONS */
section { padding: 60px 0; }
.section-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 28px; }
h2 span { color: var(--gold); }

/* PROFILE CARD */
.profile-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.profile-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.profile-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.profile-row:last-child { border-bottom: none; }
.profile-key { color: var(--text-muted); font-size: 0.88rem; }
.profile-val { font-weight: 600; font-size: 0.92rem; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-gold { background: rgba(200,165,90,0.15); color: var(--gold); }
.badge-green { background: var(--green-bg); color: var(--green); }

/* GRID */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color .3s, transform .2s; }
.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--gold-light); }

/* COMMUNITY */
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.community-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.community-card h3 { color: var(--gold); font-size: 0.95rem; margin-bottom: 10px; }

/* TESTIMONIAL */
.testimonial-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; max-width: 750px; }
.testimonial-box blockquote { font-size: 1.05rem; font-style: italic; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.testimonial-box .detail { font-size: 0.85rem; color: var(--text-muted); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-weight: 600; font-size: 1rem; margin-bottom: 8px; color: var(--gold-light); cursor: pointer; }
.faq-a { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* CTA */
.cta-section { text-align: center; background: linear-gradient(135deg, rgba(200,165,90,0.08), rgba(200,165,90,0.03)); border: 1px solid var(--border); border-radius: var(--radius); padding: 60px 40px; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--bg); padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 1rem; letter-spacing: 0.3px; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--bg); }

/* RELATED */
.related-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color .3s; display: block; }
.related-card:hover { border-color: var(--gold); }
.related-card h3 { font-size: 1rem; margin-bottom: 4px; }
.related-card .meta { font-size: 0.82rem; color: var(--text-muted); }

/* FOOTER */
footer { padding: 40px 0; border-top: 1px solid var(--border); margin-top: 40px; }
.footer-logo { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(10,10,15,0.98); padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-dropdown-menu { position: static; transform: none; margin-top: 8px; box-shadow: none; border: none; background: rgba(200,165,90,0.04); border-radius: 8px; }
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }
  .profile-grid { grid-template-columns: 1fr; }
  .grid-3, .community-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 40px 20px; }
  .hero h1 { font-size: 1.8rem; }
}
