/* ============================================
   BIX KURUMSAL — Base Styles
   ============================================ */

body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: var(--weight-regular);
    line-height: var(--line-height-normal);
    color: var(--bix-dark-text);
    background-color: var(--bix-white);
    overflow-x: hidden;
}

/* ── Headings ── */
h1 {
    font-size: var(--text-h1);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
}

h2 {
    font-size: var(--text-h2);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
}

h3 {
    font-size: var(--text-h3);
    line-height: var(--line-height-tight);
}

h4 {
    font-size: var(--text-h4);
    line-height: var(--line-height-tight);
}

p {
    color: var(--bix-body-text);
    line-height: var(--line-height-loose);
}

/* ── Links ── */
a {
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--bix-orange);
}

/* ── Selection ── */
::selection {
    background: var(--bix-orange);
    color: var(--bix-white);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bix-off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--bix-mid-grey);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bix-orange);
}