/* style.css — Base site styles for atlantamed-a.ru */

/* ── Typography ───────────────────────────────────────────────────────────── */

html {
  /* System font stack with good Cyrillic coverage */
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    system-ui,
    'Helvetica Neue',
    Arial,
    sans-serif;
  font-size: 18px;
  color: #111;
  background-color: #eaeaea;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

/* ── Links ────────────────────────────────────────────────────────────────── */

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.75;
}

/* ── Headings ─────────────────────────────────────────────────────────────── */

h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.35;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */

button,
input[type="submit"],
input[type="button"] {
  cursor: pointer;
  transition: background-color 0.25s, opacity 0.25s;
}

button:hover,
input[type="submit"]:hover {
  opacity: 0.88;
}

/* ── Form inputs ──────────────────────────────────────────────────────────── */

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ── Images ───────────────────────────────────────────────────────────────── */

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── Utility ──────────────────────────────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Scrollbar ────────────────────────────────────────────────────────────── */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #e0e0e0;
}
::-webkit-scrollbar-thumb {
  background: #11e;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #117;
}

/* ── Selection ────────────────────────────────────────────────────────────── */

::selection {
  background: #11e;
  color: #fff;
}
