/* ─────────────────────────────────────────────────────────────────────────
   Публичная часть — базовые стили (fcunibars.ru)
   Токены подключены в App.razor через _content/Unibars.Shared/css/tokens.css
   ───────────────────────────────────────────────────────────────────────── */

/* ── CSS Reset ──────────────────────────────────────────────────────────── */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* ── Base ───────────────────────────────────────────────────────────────── */

body {
  font-family: var(--font-body);
  font-size: var(--text-main-2);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Заголовки ──────────────────────────────────────────────────────────── */

h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h1);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h2);
  text-transform: uppercase;
  color: var(--color-dark);
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-h3-inter);
  color: var(--color-dark);
}

/* ── Ссылки ─────────────────────────────────────────────────────────────── */

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Кнопки ─────────────────────────────────────────────────────────────── */

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* ── Адаптив ────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  h1 { font-size: 72px; }
  h2 { font-size: 36px; }
  h3 { font-size: 32px; }
}

@media (max-width: 376px) {
  h1 { font-size: 48px; }
  h2 { font-size: 28px; }
}
