:root {
    --bg-color: #FFFFFF;
    --text-color: #000000;
    --accent-color: #E2001A;
    --nav-bg: rgba(255, 255, 255, 0.98);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.4;
    overflow-x: hidden;
    width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-color);
    line-height: 0.95
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 3%;
    background: var(--bg-color);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #000
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    gap: 3rem
}

.nav-links a {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 2000
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 5px
}
