/*
Theme Name: Tax & Real Estate Demo Template
Theme URI: https://example.com
Author: J&J Web Demos
Description: A lightweight WordPress starter theme for tax preparation, secure document upload, mortgage resources, and real estate lead generation demo websites.
Version: 1.0
License: GPL v2 or later
Text Domain: tax-real-estate-demo
*/

:root {
  --navy: #0b1f3a;
  --teal: #0f766e;
  --gold: #d4a017;
  --cream: #f8f5ef;
  --light: #ffffff;
  --gray: #5f6b7a;
  --soft: #eef7f6;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}
a { color: var(--teal); text-decoration: none; }
.container { width: min(1120px, 92%); margin: auto; }
.site-header {
  background: var(--light);
  border-bottom: 1px solid #e4e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
}
.nav a { margin-left: 22px; color: var(--navy); font-weight: 700; }
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 700;
}
.btn.gold { background: var(--gold); color: var(--navy); }
.hero {
  background: linear-gradient(120deg, rgba(11,31,58,.95), rgba(15,118,110,.88)), url('assets/hero-pattern.svg');
  color: white;
  padding: 86px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1.05; margin: 0 0 18px; }
.hero p { font-size: 1.15rem; max-width: 680px; }
.hero-card {
  background: white;
  color: var(--navy);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.hero-card h3 { margin-top: 0; }
.section { padding: 70px 0; }
.section.white { background: white; }
.section.soft { background: var(--soft); }
.section-title { text-align: center; max-width: 780px; margin: 0 auto 38px; }
.section-title h2 { font-size: 2rem; margin-bottom: 10px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: white;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(11,31,58,.08);
  border-top: 5px solid var(--teal);
}
.card.gold-line { border-top-color: var(--gold); }
.card h3 { margin-top: 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.checklist { list-style: none; padding: 0; }
.checklist li { margin: 10px 0; padding-left: 30px; position: relative; }
.checklist li:before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.form-box {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(11,31,58,.08);
}
.form-box input, .form-box textarea, .form-box select {
  width: 100%; padding: 13px; margin: 8px 0 14px; border: 1px solid #cfd8dc; border-radius: 8px;
}
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.listing {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11,31,58,.08);
}
.placeholder-img { height: 170px; background: linear-gradient(135deg, #d7ebe9, #f4df9d); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--navy); }
.listing-content { padding: 20px; }
.cta { background: var(--navy); color: white; text-align: center; padding: 68px 0; }
.site-footer { background: #07162a; color: white; padding: 36px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; }
.footer-grid a { color: white; display: block; margin: 8px 0; }
.small { font-size: .9rem; color: #cbd5e1; }
@media (max-width: 850px) {
  .hero-grid, .split, .cards, .listing-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}
.alepps-logo {
    display: block;
    width: auto;
    height: 65px;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .site-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

