/* =========================
   Design Tokens
========================= */

:root {
    --color-primary: #bd202e;
    --color-primary-soft: rgba(189, 32, 46, 0.22);

    --color-text: #111111;
    --color-text-muted: #555555;
    --color-text-soft: #666666;

    --color-surface: #ffffff;
    --color-surface-soft: #f7f7f7;
    --color-surface-muted: #eeeeee;

    --color-border: #e2e2e2;
    --color-border-soft: #ececec;

    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;

    --shadow-header: 0 3px 15px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 14px 30px rgba(0, 0, 0, 0.10);
    --shadow-modal: 0 24px 70px rgba(0, 0, 0, 0.22);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}


/* =========================
   Reset / Global
========================= */

html {
    scroll-behavior: auto;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cairo", sans-serif;
    background: var(--color-surface);
    color: var(--color-text);
    direction: inherit;
}

body.menu-open {
    overflow: hidden;
}

p {
    font-weight: 400;
}

img {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--color-primary-soft);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
