/* ============================================================
   global.css — сброс и базовые стили всего сайта
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    height: -webkit-fill-available;
    /* Цвет футера — показывается в overscroll-зонах iOS Safari (статус-бар и адресная строка) */
    background: #1B2538;
}

body {
    background: linear-gradient(to bottom, #35302c 0%, #1B2538 100%);
    font-family: 'Golos Text', sans-serif;
    color: #1A1A1A;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

* {
    text-wrap: pretty;
}

/* Отступ от фиксированного навбара при прокрутке к якорю */
section[id] {
    scroll-margin-top: 76px;
}

/* Минимальная зона касания */
a, button {
    min-height: 44px;
}
nav a, nav button {
    min-height: unset;
}

/* Цвет выделения текста */
::selection {
    background: rgba(139, 115, 85, 0.2);
    color: #1B2538;
}

/* ---- Адаптив (меньше) ---- */
@media (max-width: 768px) {
    html { font-size: 15px; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
}

/* ---- Адаптив (больше Full HD) ---- */
@media (min-width: 1921px) {
    html { font-size: 18px; }
    section[id] { scroll-margin-top: 88px; }
}

@media (min-width: 2561px) {
    html { font-size: 21px; }
}

@media (min-width: 3841px) {
    html { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}