:root {
    /* === Размеры === */
    --container-max-width: 1000px;

    /* === Цвета === */
    --color-primary: #00426E;       /* Тёмно-синий: шапка, ссылки, основные элементы */
    --color-accent: #FF9E03;        /* Оранжевый: кнопки, выделения, акценты */
    --color-text-main: #2D2D2D;     /* Тёмно-серый: основной текст */
    --color-bg: #FFFFFF;            /* Белый: фон страницы, карточки */
    --color-surface-light: #E3E3E3; /* Светло-серый: подложки, разделители, второстепенный фон */
    --color-white: #fff;

    /* === Шрифты === */
    --font-text: 'Muller', system-ui, -apple-system, sans-serif;
    --font-heading: 'Unbounded', system-ui, sans-serif;
    --font-heading-vf: 'Unbounded Variable', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--container-max-width);
    margin-inline: auto;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-text);
}

h1, h2, h3 {
    font-family: var(--font-heading-vf); /* плавное изменение веса через font-weight: 300..900 */
}

.hero-image {
    width: 100vw;
    height: 700px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    z-index: -1;
}

header.header.main {
    color: var(--color-surface-light);
}

.top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
    padding-bottom: 30px;
}
.mainmenu {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.contactinfo {
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: right;
    font-weight: 700;
    font-size: 14px;
}
.slogan {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    line-height: 60px;
}
.slogan-text {
    text-align: center;
    font-size: 14px;
    padding-bottom: 20px;
}
.link-white {
    text-align: center;
    margin: auto;
    display: block;
}

.hero {
    margin-top: 150px;
}
.mainmenu a {
    font-size: 12px;
    color: white;
    text-decoration: none;
}
