/* Reset and base styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--figma-white);
    color: var(--figma-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-family: 'Source Serif Pro', serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    text-transform: lowercase;
}

h2 {
    font-family: 'Source Serif Pro', serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    text-transform: lowercase;
}

h3 {
    font-family: 'Source Serif Pro', serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-transform: lowercase;
}

p {
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: var(--spacing-md);
    color: var(--figma-text);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

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

a:hover {
    color: var(--primary-color);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Focus styles */
:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background-color: var(--accent-color);
    color: var(--white);
}

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

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: var(--border-radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}
