/*
Theme Name: Emlak Bilgi Platformu
Theme URI: https://emlak.com.co
Author: emlak.com.co
Description: Türkiye ve KKTC'nin en kapsamlı emlak bilgi ve takip platformu. Fiyat endeksleri, AI değerleme, yasal rehberler ve profesyonel araçlar.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.2
License: Proprietary
Text Domain: emlak
Tags: real-estate, data, analytics, professional
*/

/* === DESIGN TOKENS === */
:root {
  --clr-primary:       #1D6A5A;
  --clr-primary-dark:  #0F4A3F;
  --clr-primary-light: #E1F5EE;
  --clr-accent:        #BA7517;
  --clr-accent-light:  #FAEEDA;
  --clr-blue:          #185FA5;
  --clr-blue-light:    #E6F1FB;
  --clr-purple:        #534AB7;
  --clr-purple-light:  #EEEDFE;
  --clr-red:           #C0392B;
  --clr-red-light:     #FDEDEC;

  --clr-text:          #1A1A1A;
  --clr-text-muted:    #5A5A5A;
  --clr-text-faint:    #9A9A9A;
  --clr-border:        #E2E2E2;
  --clr-border-dark:   #C8C8C8;
  --clr-bg:            #F7F8F6;
  --clr-bg-card:       #FFFFFF;
  --clr-bg-dark:       #0D2B24;

  --font-sans:   'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display:'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  22px;
  --radius-pill:9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.06);

  --transition: 200ms cubic-bezier(.4,0,.2,1);
  --container:  1240px;
  --gap:        1.5rem;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }
