/**
 * Color Essentials — SAHA
 *
 * Figma Color Palette'ten çıkarılan gerçek değerler.
 * theme.json otomatik CSS custom properties üretir:
 *   --wp--preset--color--brand-dark
 *   --wp--preset--color--white
 *   --wp--preset--color--surface-light
 *   --wp--preset--color--border
 *   --wp--preset--color--link-accent
 *   --wp--preset--color--text-grey
 *   --wp--preset--color--error
 *   --wp--preset--color--success
 *
 * Bu dosya ek semantic alias'lar için.
 *
 * @package Saha
 */

:root {
    /* ========================
       Semantic Color Aliases
       ======================== */

    /* Text */
    --saha-color-text-primary: var(--wp--preset--color--brand-dark);    /* #242424 — body text */
    --saha-color-text-secondary: var(--wp--preset--color--text-grey);   /* #707070 — dates, meta */
    --saha-color-text-inverse: var(--wp--preset--color--white);         /* #FFFFFF — dark bg üzerinde */

    /* Background */
    --saha-color-bg-primary: var(--wp--preset--color--white);           /* #FFFFFF — page background */
    --saha-color-bg-secondary: var(--wp--preset--color--surface-light); /* #F8F8F8 — section background */
    --saha-color-bg-dark: var(--wp--preset--color--brand-dark);         /* #242424 — header, mega-menu, title bars */

    /* Interactive */
    --saha-color-link: var(--wp--preset--color--link-accent);           /* #666666 — link accent */
    --saha-color-link-hover: var(--wp--preset--color--brand-dark);      /* #242424 — hover state */

    /* Border */
    --saha-color-border: var(--wp--preset--color--border);              /* #E9E9E9 — dividers, borders */

    /* Feedback */
    --saha-color-error: var(--wp--preset--color--error);                /* #EF4444 */
    --saha-color-success: var(--wp--preset--color--success);            /* #22C55E */
}
