/* =========================================
   yk Design Tokens (Colors / Spacing / Motion)
   ========================================= */

:root {
    /* ===== Colors ===== */
    --yk-color-bg: #ffffff;
    --yk-color-text: #4A4A4A;
    --yk-color-light: #F9F9F9;
    --yk-color-border: #D9D9D9;
    --yk-yellow-primary: #FFF200;
    --yk-yellow-hover: #E6DA00;
    --yk-yellow-active: #CFC400;
    --yk-dark-primary: #111111;


    /* ===== Radius ===== */
    --yk-radius-sm: 8px;
    --yk-radius-md: 10px;
    --yk-radius-lg: 15px;
    --yk-radius-xl: 35px;

    /* ===== Motion (Transitions) ===== */
    --yk-ease-standard: .3s ease-in-out all;
    /* margin-bottom: 25px */
    --yk-spacing-md: 25px;
}

a {
    transition: var(--yk-ease-standard);
    text-decoration: none;
    color: var(--yk-color-text);
}

/* احترام إعدادات تقليل الحركة */
@media (prefers-reduced-motion: reduce) {
    :root {
        --yk-duration-fast: 1ms;
        --yk-duration-base: 1ms;
        --yk-duration-slow: 1ms;
    }
}

/* (اختياري) تهيئة بعض متغيرات Bootstrap عبر CSS vars */

p {
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

/* Google Font 'Inter' is loaded via wp_enqueue_style in inc/assets.php */


body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--yk-color-text);
    background-color: var(--yk-color-bg);
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

h1,
h2,
h3 {
    margin-bottom: var(--yk-spacing-md);
    color: var(--yk-dark-primary);
}

h1 {
    font-size: 3.6rem;
    font-weight: 900;
    text-align: center;
}

h2 {
    font-size: 2.6rem;
    font-weight: 700;
}

h3 {
    font-size: 1.7rem;
    font-weight: 600;
}

/* Padding */
.p-100 {
    padding: 100px 0;
}

.p-t-100 {
    padding-top: 100px;
}

.p-70 {
    padding: 100px 0 70px 0;
}

/* Remove default margins from list elements */
dl,
ol,
ul {
    margin: 0;
    padding: 0;
}