/* ОБЩЕЕ */
body {
  margin: 0;
  font-family: Arial;
  background: #0b0b0f;
  color: white;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 50px;
  color: gold;
}

.hero p {
  opacity: 0.8;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: gold;
  color: black;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
}

/* СЕКЦИИ */
.section {
  padding: 70px 20px;
  text-align: center;
}

.dark {
  background: #111;
}

/* ВИДЕО */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px;
}

.video-grid video {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 20px gold;
}

/* ГАЛЕРЕЯ (ИДЕАЛЬНАЯ) */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: 220px; /* одинаковая высота */
  object-fit: cover; /* обрезка без искажения */
  border-radius: 12px;
  transition: 0.35s;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
}

.gallery img:hover {
  transform: scale(1.07);
  filter: brightness(1.1);
}

/* ЦЕНЫ */
.prices {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  width: 200px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.gold {
  border: 2px solid gold;
  box-shadow: 0 0 20px gold;
}

/* ОТЗЫВЫ */
.review {
  margin: 10px auto;
  background: #1a1a1a;
  padding: 15px;
  width: 60%;
  border-radius: 10px;
}

/* TELEGRAM КНОПКА */
.tg-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #229ED9;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* КОНТАКТЫ */
.contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.contacts a {
  color: gold;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}

.contacts a:hover {
  transform: scale(1.05);
  color: white;
}

/* 📱 АДАПТАЦИЯ */
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .review {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

.prices {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 25px;
  border-radius: 15px;
  width: 220px;
  transition: 0.4s;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.card h3 {
  color: gold;
}

.card h4 {
  margin-top: 15px;
  font-size: 18px;
}

.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(255,215,0,0.4);
}

.gold {
  border: 2px solid gold;
  box-shadow: 0 0 25px gold;
}

.video-link {
  display: block;
  background: #1a1a2e;
  color: gold;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.video-link:hover {
  background: gold;
  color: #1a1a2e;
}

.seo-footer{
  text-align: center;
  margin-top: 20px;
}

.seo-footer a{
  color:#d4af37;
  text-decoration:none;
  font-weight:600;
}