
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}


h1, h2, h3, .logo {
  font-family: 'Montserrat', sans-serif; 
}

header {
  background: #6a3093;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  background: #f9f0ff;
  padding: 3rem 1rem;
  text-align: center;
}

.price, .contacts {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Контакты */
.contacts {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.contact-left, .contact-right {
  width: 48%;
  text-align: center;
}

.contact-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 0.95rem;
  color: #6a3093;
  text-decoration: none;
  display: block;
}

.contact-address {
  font-size: 0.9rem;
  color: #555;
  margin-top: 1.5rem;
}

/* Адаптивность для мобилок */
@media (max-width: 600px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-left, .contact-right {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

.download-btn {
  display: inline-block;
  background: #6a3093;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin: 1rem 0;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}


@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}
/* Стили слайдера с отступами */
.slider-section {
  padding: 2rem 0;
  background: #fff;
  text-align: center;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 1rem auto;
  padding: 0 20px; /* Отступы по краям */
}

.slider-track {
  display: flex;
  gap: 30px; 
  animation: scroll 20s linear infinite;
  width: calc((250px + 30px) * 6); /* Учитываем gap в общей ширине */
}

.slide {
  min-width: 250px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 5px; /* Дополнительные отступы */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 5px; /* Отступ внутри рамки картинки */
}

/* Анимация (с учетом новых отступов) */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc((-250px - 30px) * 3)); }
}

/* Обновлённые переменные цветов */
:root {
  --primary: #8e44ad;  /* Фиолетовый */
  --secondary: #3498db; /* Голубой */
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
  --text-light: #f5f5f5;
  --text-dark: #333;
}

/* Хедер с градиентом */
header {
  background: var(--gradient);
  color: var(--text-light);
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Кнопка скачивания прайса */
.download-btn {
  background: var(--gradient);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px; /* Закруглённая форма */
  font-weight: bold;
  transition: all 0.3s;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(142, 68, 173, 0.3);
}

/* Секции с лёгким фоном */
.hero {
  background: linear-gradient(45deg, #f9f0ff, #e6f7ff);
  padding: 3rem 1rem;
}

.price {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 2rem auto;
  padding: 2rem;
}
/* Плавное появление секций */
section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Хедер */
header {
  background: linear-gradient(135deg, #6a3093, #a044ff);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(106, 48, 147, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Логотип */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: #ffcc00;
}

/* Навигация */
nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-btn {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nav-btn.active {
  background: #ffcc00;
  color: #6a3093;
  font-weight: bold;
}

/* Мобильное меню */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

