/* ============================================
   BEYTÜŞŞEBAPLILAR — CSS Design Tokens
   Rehbere uygun renkler ve değişkenler
   ============================================ */

:root {
    /* ---- Renk Paleti (Rehbere göre) ---- */
    --color-primary: #2A5F43;
    --color-primary-dark: #1E4731;
    --color-primary-light: #EAF0EC;
    --color-primary-lighter: #F3F7F4;

    /* Orijinal palet referansları */
    --color-evergreen: #132a13;
    --color-hunter: #31572c;
    --color-fern: #4f772d;
    --color-palm: #90a955;
    --color-lime: #ecf39e;

    /* Nötr */
    --color-white: #ffffff;
    --color-bg: #EEF3F0; /* Off-white / Kırık beyaz */
    --color-light-gray: #E5EBE8;
    --color-mid-gray: #9CA3AF;
    --color-text: #1F2937;
    --color-text-muted: #4B5563;
    --color-text-light: #6B7280;
    --color-black: #111827;

    /* Alfa */
    --color-primary-95: rgba(42, 95, 67, 0.95);
    --color-primary-80: rgba(42, 95, 67, 0.8);
    --color-primary-50: rgba(42, 95, 67, 0.5);
    --color-primary-20: rgba(42, 95, 67, 0.2);
    --color-primary-10: rgba(42, 95, 67, 0.1);

    /* ---- Tipografi ---- */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Font Boyutları */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;
    --text-4xl: 3rem;
    --text-5xl: 3.5rem;

    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    --leading-tight: 1.2;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

    --tracking-wide: 0.05em;
    --tracking-wider: 0.12em;

    /* ---- Spacing ---- */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    --space-5xl: 6rem;

    /* ---- Border Radius ---- */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* ---- Shadows ---- */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);

    /* ---- Transitions ---- */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* ---- Z-Index ---- */
    --z-base: 1;
    --z-sticky: 100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-toast: 400;

    /* ---- Layout ---- */
    --container-max: 1280px;
    --container-padding: 1.25rem;
    --navbar-height: 64px;
}
