/* ===== ОБЩИЕ СТИЛИ ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Poppins", Arial, sans-serif;
  color: #f5f5f5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;

  /* Тёплый степной фон */
  background: linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.55)),
              url("../images/bg-warm.jpg") center/cover fixed;
}

/* Золотые искры */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255,215,0,0.22) 1.5px, transparent 4px),
    radial-gradient(circle, rgba(255,240,150,0.16) 2px, transparent 5px);
  background-size: 110px 110px, 170px 170px;
  opacity: 0.42;
  animation: spark 16s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes spark {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 300px 600px, -300px -300px; }
}

/* ===== ШАПКА ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 40px;
  background: rgba(20, 15, 8, 0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,215,0,0.25);
  z-index: 1000;
}

.header-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 26px;
  color: #ffd700;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255,215,0,0.4);
}

.nav-buttons {
  display: flex;
  gap: 24px;
}

.nav-btn {
  color: #fffbe6;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 24px;
  border: 1.5px solid rgba(255,215,0,0.4);
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-btn:hover {
  background: rgba(255,215,0,0.25);
  border-color: #ffd700;
  color: #fff;
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
  transform: translateY(-2px);
}

/* ===== ГЛАВНЫЙ БЛОК ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1.8s ease-out;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  color: #fffbe6;
  text-shadow: 0 0 25px rgba(255,180,0,0.5);
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-text {
  font-size: 22px;
  color: #fffbe6;
  line-height: 1.7;
  margin-bottom: 50px;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-cta {
  display: inline-block;
  background: rgba(255,215,0,0.2);
  color: #fffbe6;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #ffd700;
  box-shadow: 0 0 25px rgba(255,215,0,0.3);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.hero-cta:hover {
  background: #ffd700;
  color: #2c1800;
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255,215,0,0.7);
}

/* ===== ФУТЕР ===== */
footer {
  text-align: center;
  padding: 30px;
  background: rgba(0,0,0,0.6);
  border-top: 1px solid rgba(255,215,0,0.2);
  backdrop-filter: blur(10px);
  font-size: 15px;
}

/* ===== АНИМАЦИИ И АДАПТИВ ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 868px) {
  .header-content { flex-direction: column; gap: 15px; padding: 10px 0; }
  .hero-title { font-size: 42px; }
  .hero-text { font-size: 19px; }
  .nav-buttons { gap: 15px; }
  .nav-btn { padding: 10px 20px; font-size: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-cta { padding: 16px 40px; font-size: 18px; }
}