/* static/global.css */
/* Минимальный глобальный стиль + Libre Baskerville */

:root {
  /* 🎨 Основные цвета */
  --color-text-main: #111827;
  --color-bg-dark: #1f2937;
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Libre Baskerville", serif;
  background: #fff;
  color: #111;
  background: url("/img/bg.png");
}

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

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

/* === Формы === */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: 1rem;
  /* padding: 0.5rem; */
  border: 1px solid #ccc;
  border-radius: 4px;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

button {
  cursor: pointer;
  background-color: #007BFF;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

/* Контейнер */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}