html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

:root {
  --text-color-0: #4f4fa3;
  --text-color-1: #5f5fb3;
  --text-color-2: #6f6fbf;
  --text-color-3: #8f8fbf;
  --text-color-4: #afafbf;
  --text-color-5: #ffffff;

  --bg-color-0: #000000;
  --bg-color-1: #1f1f1f;
  --bg-color-2: #2f2f2f;
  --bg-color-3: #353535;
  --bg-color-4: #4f4f4f;
  --bg-color-5: #5f5f5f;
}

.full-screen-spacer {
  height: 60vh; /* 100% от высоты видимой области экрана */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.header {
    display: flex;
    align-items: center;
    position: sticky; /* или fixed, если нужно перекрывать контент */
    top: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-block {
    width: 200px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.logo-block img {
    max-height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    flex-grow: 1;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #888;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #000;
}

.contact-info {
    color: #555;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-right: 20px;
    padding-right: 15px;
    border-right: 1px solid #ccc;
}

.btn-write {
    background-color: #d32f2f;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-write:hover {
    background-color: #b71c1c;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .header {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
    }

    .logo-block {
        width: 100%;
        padding: 10px 20px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .nav-menu li {
        margin: 5px 10px;
    }

    .contact-info, .btn-write {
        display: block;
        text-align: center;
        margin: 10px auto;
        border-right: none;
        padding: 0;
    }
}
