/**
 * Base Styles - Reset + Typography
 * يمكن استخدام هذا الملف في أي مشروع
 */

/* ─── CSS Reset ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--font-family, 'Cairo', sans-serif);
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family, 'Cairo', sans-serif);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    appearance: button;
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
}

button:focus,
[type='button']:focus {
    outline: none;
}

input,
select,
textarea {
    font-family: var(--font-family, 'Cairo', sans-serif);
    font-size: inherit;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: inherit;
}