:root {
    --color-bg-primary: #ffffff;
    --color-text-primary: #1e1d24;

    --color-bg-secondary: #fc5a0a;
    --color-text-secondary: #ffffff;

    --color-text-muted: rgba(255, 255, 255, 0.72);
    --color-accent: #ffffff;
    --color-border: rgba(255, 255, 255, 0.12);

    --font-family-base: "Inter", Arial, sans-serif;

    --header-height: 70px;

    --navbar-height:64px;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #222222;
    background: #f8fafc;
    scroll-snap-type: y mandatory;
    min-height: 100%;
}