/*
 Theme Name: My Theme Child for Hello
 Template: hello-elementor
 Text Domain: hello-elementor-child
*/

/* === 404: отступы секции и выравнивание === */
.mg-section-404 {
  padding: 100px 20px;
  text-align: center;
}

/* === Огромное "404" === */
.mg-error-404 h1 {
  font-size: 140px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #252C32;
}

/* Зеленый ноль */
.mg-error-404 h1 .mg-zero { color: #2C9347; }

/* Подзаголовок */
.mg-error-404 h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #252C32;
}

/* Абзац */
.mg-error-404 p {
  font-size: 16px;
  margin: 0 0 32px;
  color: #252C32;
}

/* === Кнопка "На главную" === */
.btn-404 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  height: 54px;
  padding: 0 24px;

  background-color: #2C9347;
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;

  font-family: "Tilda Sans", "tilda-sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  text-decoration: none !important;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-404:hover,
.btn-404:focus {
  background-color: #2C9347;
  color: #fff;
  text-decoration: none !important;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-404:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}





