/* ============================================================
   TheOrlandoAgent.com — Shared Stylesheet
   Darein Washington, REALTOR® | KW Advantage Realty
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #8B6914;
  --deep: #1A1F2E;
  --deep-mid: #252D42;
  --green: #2D5A3D;
  --warm: #F7F3EE;
  --white: #FFFFFF;
  --text: #2C2C2A;
  --muted: #6B6860;
  --border: rgba(0,0,0,0.08);
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--warm); color: var(--text); font-size: 16px; line-height: 1.7; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1,h2,h3 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.2; color: var(--deep); }
h1 { font-size: clamp(30px, 5vw, 50px); }
h2 { font-size: clamp(22px, 3.5vw, 34px); }
h3 { font-size: 20px; }
p { line-height: 1.85; }

.section-tag { display: block; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { margin-bottom: 10px; }
.section-sub { color: var(--muted); font-size: 15px; font-weight: 300; margin-bottom: 32px; }

/* Buttons */
.btn { display: inline-block; padding: 14px 30px; font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; font-weight: 700; cursor: pointer; border: none; transition: opacity .2s, transform .15s; }
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--deep); }
.btn-dark { background: var(--deep); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.4); }
.btn-outline-dark { background: transparent; color: var(--deep); border: 1.5px solid var(--deep); }

/* Nav */
.site-nav { position: sticky; top: 0; z-index: 200; background: var(--deep); height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; box-shadow: 0 2px 20px rgba(0,0,0,.25); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--gold); letter-spacing: .3px; white-space: nowrap; }
.nav-logo span { color: rgba(255,255,255,.7); font-weight: 400; }
.nav-links { display: flex; list-style: none; gap: 26px; align-items: center; }
.nav-links a { color: rgba(255,255,255,.65); font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--deep); border: none; padding: 9px 22px; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: opacity .2s; font-family: 'Lato', sans-serif; }
.nav-cta:hover { opacity: .85; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--deep-mid); padding: 1.5rem 2rem; z-index: 199; border-top: 1px solid rgba(255,255,255,.07); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,.75); font-size: 15px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu a:last-child { border-bottom: none; }

/* Hero */
.hero { background: var(--deep); position: relative; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(201,169,110,.07) 0%, transparent 65%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.hero-content { padding: 5rem 3rem 5rem 2.5rem; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.hero-tag { display: inline-block; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,169,110,.35); padding: 5px 14px; margin-bottom: 20px; width: fit-content; }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.58); font-size: 15px; font-weight: 300; margin-bottom: 34px; max-width: 400px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image-side { display: flex; align-items: center; justify-content: center; padding: 2rem; background: linear-gradient(135deg, #1E2535, #252D42); }

/* Page Hero (inner pages) */
.page-hero { background: var(--deep); padding: 4rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 80%, rgba(201,169,110,.08) 0%, transparent 60%); pointer-events: none; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; position: relative; }
.page-hero p { color: rgba(255,255,255,.55); font-weight: 300; max-width: 560px; margin: 0 auto; position: relative; }

/* Search bar */
.search-section { background: var(--white); padding: 2rem 2.5rem; border-bottom: 1px solid var(--border); }
.search-label { text-align: center; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.search-bar { display: flex; max-width: 720px; margin: 0 auto; border: 1.5px solid var(--deep); overflow: hidden; }
.search-bar select, .search-bar input { border: none; outline: none; padding: 13px 16px; font-size: 14px; background: var(--white); color: var(--text); font-family: 'Lato', sans-serif; }
.search-bar select { border-right: 1px solid var(--border); cursor: pointer; font-size: 13px; }
.search-bar input { flex: 1; }
.search-btn { background: var(--deep); color: var(--white); border: none; padding: 13px 28px; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; cursor: pointer; white-space: nowrap; font-family: 'Lato', sans-serif; }
.search-btn:hover { background: var(--deep-mid); }

/* Layout */
.section { padding: 4.5rem 2.5rem; }
.section-center { text-align: center; }
.section-white { background: var(--white); }
.section-warm { background: var(--warm); }
.section-deep { background: var(--deep); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.max-w { max-width: 900px; margin: 0 auto; }
.max-w-md { max-width: 700px; margin: 0 auto; }

/* Cards */
.card { background: var(--white); border: 1px solid var(--border); padding: 1.75rem; transition: border-color .2s, transform .2s; }
.card:hover { border-color: var(--gold); transform: translateY(-3px); }

/* County cards */
.county-card { background: var(--white); border: 1px solid var(--border); padding: 1.2rem 1rem 1.2rem 1.25rem; cursor: pointer; transition: border-color .2s; position: relative; overflow: hidden; display: flex; justify-content: space-between; align-items: center; }
.county-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform .25s; }
.county-card:hover { border-color: rgba(201,169,110,.6); }
.county-card:hover::after { transform: scaleX(1); }
.county-name { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--deep); margin-bottom: 3px; }
.county-desc { font-size: 11px; color: var(--muted); letter-spacing: .6px; }
.county-arrow { color: var(--gold); font-size: 18px; opacity: 0; transition: opacity .2s; }
.county-card:hover .county-arrow { opacity: 1; }

/* Agent card */
.agent-card { background: rgba(255,255,255,.05); border: 1px solid rgba(201,169,110,.22); padding: 2rem; text-align: center; max-width: 310px; width: 100%; }
.agent-avatar { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 600; color: var(--deep); }
.agent-name { font-family: 'Playfair Display', serif; color: var(--white); font-size: 20px; margin-bottom: 4px; }
.agent-title { color: var(--gold); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.agent-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.stat-box { background: rgba(201,169,110,.09); border: 1px solid rgba(201,169,110,.14); padding: 9px 6px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 19px; display: block; }
.stat-label { color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .7px; text-transform: uppercase; }
.belt-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); padding: 6px 12px; font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .4px; margin-top: 10px; }
.belt-dot { width: 8px; height: 8px; background: #111; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); flex-shrink: 0; }

/* Features bar */
.features-bar { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--deep); }
.feature-item { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,.06); text-align: center; }
.feature-item:last-child { border-right: none; }
.feature-icon { width: 48px; height: 48px; border: 1px solid rgba(201,169,110,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--gold); font-size: 20px; }
.feature-title { font-family: 'Playfair Display', serif; color: var(--white); font-size: 17px; margin-bottom: 8px; }
.feature-desc { color: rgba(255,255,255,.45); font-size: 13px; font-weight: 300; }

/* Testimonials */
.testimonial-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; }
.testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 64px; color: var(--gold-light); line-height: .5; display: block; margin-bottom: 14px; }
.testimonial-text { font-size: 14.5px; line-height: 1.85; color: var(--text); margin-bottom: 14px; font-style: italic; }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--deep); }
.testimonial-detail { font-size: 11px; color: var(--muted); margin-top: 2px; }
.star-row { color: var(--gold); font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }

/* Blog */
.blog-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: transform .2s, border-color .2s; cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--gold-light); }
.blog-thumb { height: 160px; display: flex; align-items: flex-end; padding: 14px; }
.blog-thumb-1 { background: linear-gradient(150deg, #1A1F2E 30%, #2D5A3D); }
.blog-thumb-2 { background: linear-gradient(150deg, #2D3B1A, #1A1F2E); }
.blog-thumb-3 { background: linear-gradient(150deg, #2D1A1A, #1A2435); }
.blog-thumb-4 { background: linear-gradient(150deg, #1A2D2D, #1A1F2E); }
.blog-thumb-5 { background: linear-gradient(150deg, #2D2A1A, #1A1F2E); }
.blog-thumb-6 { background: linear-gradient(150deg, #1A1F2E, #2D1A2D); }
.blog-category { background: var(--gold); color: var(--deep); font-size: 9px; letter-spacing: 1.3px; text-transform: uppercase; padding: 4px 10px; font-weight: 700; }
.blog-body { padding: 16px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--deep); line-height: 1.4; margin-bottom: 8px; }
.blog-meta { font-size: 11px; color: var(--muted); }
.blog-excerpt { font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 300; line-height: 1.7; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; font-weight: 700; }
.form-control { width: 100%; border: 1.5px solid rgba(0,0,0,.14); padding: 12px 14px; font-size: 14px; color: var(--text); background: var(--white); outline: none; transition: border-color .2s; font-family: 'Lato', sans-serif; }
.form-control:focus { border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; background: var(--gold); color: var(--deep); border: none; padding: 16px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; cursor: pointer; font-family: 'Lato', sans-serif; }
.form-submit:hover { opacity: .85; }

/* CTA Banner */
.cta-banner { background: var(--gold); padding: 3rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-banner h2 { font-size: 26px; color: var(--deep); }
.cta-banner p { color: rgba(26,31,46,.65); font-size: 14px; margin-top: 6px; }

/* Footer */
.site-footer { background: #0D1118; padding: 3.5rem 2.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 1.5rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--gold); margin-bottom: 10px; }
.footer-brand span { color: rgba(255,255,255,.45); font-weight: 400; }
.footer-tagline { color: rgba(255,255,255,.3); font-size: 12.5px; line-height: 1.85; margin-bottom: 14px; }
.footer-license { font-size: 11px; color: rgba(255,255,255,.18); line-height: 1.7; }
.footer-heading { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.38); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-line { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.38); font-size: 13px; margin-bottom: 10px; }
.footer-contact-line .icon { color: var(--gold); font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,.18); flex-wrap: wrap; gap: 8px; }
.footer-eho { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: 4px 10px; font-size: 10px; color: rgba(255,255,255,.3); }

/* Helpers */
.pill { display: inline-block; padding: 5px 14px; font-size: 11px; border: 1px solid var(--border); color: var(--text); background: var(--warm); margin: 3px; }
.gold-divider { width: 48px; height: 2px; background: var(--gold); margin: 18px 0; }
.gold-divider-center { margin: 18px auto; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-side { display: none; }
  .hero-content { padding: 3rem 1.5rem; }
  .section { padding: 3rem 1.5rem; }
  .features-bar { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .feature-item:last-child { border-bottom: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .search-bar { flex-direction: column; }
  .search-bar select, .search-bar input { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 520px) {
  h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
