/* Сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Основной стиль */
body {
  font-family: 'Arial', sans-serif;
  font-size: 17px;
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: #333;
  scroll-behavior: smooth;
}

/* Контейнер */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Навигация */
.navbar {
  background: #ff5722;
  padding: 10px 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-img {
  width: 40px;
  height: auto;
  margin-right: 10px;
}
.nav-menu {
  list-style: none;
  display: flex;
}
.nav-menu li {
  margin-left: 20px;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: #e91e63;
}

/* Мобильное меню */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #fff;
  margin: 4px 0;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    display: none;
    width: 100%;
    text-align: center;
  }
  .nav-menu li {
    margin: 10px 0;
  }
  .menu-toggle {
    display: flex;
  }
  .navbar.active .nav-menu {
    display: flex;
    position: absolute;
    background: #ff5722;
    left: 0;
    top: 60px;
    padding: 10px;
  }
}

/* Hero секция */
.header {
  position: relative;
}
.hero {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translateX(-50%);
  opacity: 0.8;
}
.hero-content {
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.btn-play {
  display: inline-block;
  transition: transform 0.3s;
}
.btn-play:hover {
  transform: scale(1.05);
}
.btn-play img {
  width: 350px;
  height: auto;
}

/* Секции */
.section {
  background: rgba(255, 255, 255, 0.95);
  margin: 40px auto;
  padding: 40px;
  border-radius: 10px;
  max-width: 1200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #e91e63;
}

/* Колонки в секциях */
.columns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.column-text,
.column-image {
  flex: 1;
}
.column-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .columns {
    flex-direction: column;
  }
}

/* Стили для списков */
.column-text ul {
  list-style: none;
  padding-left: 20px;
}
.column-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.column-text ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #e91e63;
}

/* Отзывы */
.review {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

/* Swiper галерея */
.swiper-container {
  width: 100%;
  padding: 20px 0;
}
.swiper-slide {
  text-align: center;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Футер */
footer {
  background: #ff5722;
  color: #fff;
  padding: 40px 20px;
  text-align: left;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-column {
  flex: 1;
  min-width: 250px;
}
.footer-column h3 {
  margin-bottom: 10px;
}
.footer-column p,
.footer-column li {
  font-size: 15px;
  line-height: 1.6;
}
.footer-column ul {
  list-style: none;
  padding-left: 0;
}
.footer-column ul li {
  margin-bottom: 5px;
}
.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-column ul li a:hover {
  color: #e91e63;
}
.copy {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
}
img {
  width: 100%;
}
#gallery {
  position: relative;
  overflow-x: hidden;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.advantage-item {
  background: rgba(233, 30, 99, 0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  color: #e91e63;
}
.review {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-rating {
  margin-bottom: 10px;
}

.rating-text {
  font-size: 16px;
  font-weight: bold;
  color: #e91e63;
}
/* Стилизация формы рассылки */
#newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 auto;
}

#newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
}

#newsletter-form input[type="email"]:focus {
  border-color: #e91e63;
  box-shadow: 0 0 5px rgba(233, 30, 99, 0.5);
}

#newsletter-form button {
  padding: 10px 20px;
  background-color: #e91e63;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#newsletter-form button:hover {
  background-color: #d81b60;
}
#cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  height: 300px;
  background: #fff;
  border: 2px solid #e91e63;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
}

#cookie-consent p {
  margin-bottom: 20px;
}

#cookie-accept {
  background-color: #e91e63;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#cookie-accept:hover {
  background-color: #d81b60;
}
.btn-play {
  display: inline-block;
  background-color: #e91e63;
  color: #fff;
  padding: 15px 15px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-play:hover {
  background-color: #d81b60;
  transform: scale(1.05);
}
