* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fdfdfd;
  color: #1a202c;
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.05);
}

.wrap-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ========== Header ========== */
header {
  text-align: center;
  padding: 60px 20px 40px;
}

.brand-mark img {
  max-height: 120px;
  border-radius: 12px;
}

.title-hero {
  font-size: 42px;
  font-weight: 700;
  margin-top: 20px;
  color: #e53e3e;
}

.tagline {
  font-size: 20px;
  color: #4a5568;
  margin-top: 10px;
}

/* ========== Главное изображение ========== */
.main-image {
  width: 100%;
  max-width: 1100px;
  height: 500px;
  object-fit: cover;
  object-position: 50% 10%;
  border-radius: 12px;
  display: block;
  margin: 20px auto;
}

@media (max-width: 768px) {
  .main-image {
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}

/* ========== Инфоблоки ========== */
.info-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  margin: 40px 0;
  text-align: center;
}

h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2f855a;
}

.list-points {
  list-style: none;
  padding-left: 0;
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}

.list-points li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.5;
}

.list-points li::before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.1em;
}

/* ========== Кнопка действия ========== */
.call-action {
  display: inline-block;
  background: linear-gradient(135deg, #f56565, #e53e3e);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  margin-top: 20px;
  transition: all 0.3s ease;
}
.button-wrapper {
  text-align: center;
  margin-top: 20px;
}
.call-action:hover {
  background: linear-gradient(135deg, #e53e3e, #c53030);
  transform: translateY(-2px);
}

/* ========== Спецблок ========== */
.notice-block {
  background: #fff5f5;
  color: #e53e3e;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  margin: 40px 0;
}

/* ========== Таймер и примечание ========== */
#reservation-timer {
  font-size: 24px;
  font-weight: bold;
  color: #d63333;
  margin: 20px 0;
}

.subnote {
  font-size: 16px;
  color: #4a5568;
  margin-top: 10px;
}

/* ========== Футер ========== */
.site-footer {
  background: #1a202c;
  color: #a0aec0;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

.site-footer a {
  color: #63b3ed;
  font-weight: 600;
}

/* ========== Кнопка наверх ========== */
#Btnscroll {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e53e3e;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none; /* по умолчанию скрыта */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

#Btnscroll:hover {
  transform: translateY(-2px);
}

/* ========== Адаптив ========== */
@media (max-width: 768px) {
  .title-hero {
    font-size: 32px;
  }

  h2 {
    font-size: 22px;
  }

  .call-action {
    font-size: 16px;
    padding: 12px 24px;
  }
}
