@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==================================== */
/* ========= GLOBAL STYLES ============ */
/* ==================================== */

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

:root {
    --bg-primary: #282828;
    --bg-secondary: #3c3836;
    --bg-tertiary: #504945;
    --text-primary: #ebdbb2;
    --text-secondary: #bdae93;
    --text-accent: #fabd2f;
    --border: #665c54;
    --code-bg: #1d2021;
    --hover: #32302f;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* links */
a {
    color: var(--text-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    transform: translateY(-2px);
}