.hero {
  min-height: 500px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/images/Bathhouse_One.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border-radius: 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  padding: 60px 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.typing-wrapper {
  min-height: 60px;
  margin-bottom: 30px;
}

.typing-text {
  font-size: 20px;
  color: #d4b483;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.btn-primary {
  background: #8B7355;
  color: white;
}

.btn-primary:hover {
  background: #d4b483;
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2C2C2C;
  transform: translateY(-3px);
}

.promo-blocks {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.promo-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 5px solid #8B7355;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.promo-block:hover {
  transform: translateY(-5px);
}

.promo-block h3 {
  color: #2C2C2C;
  margin-top: 0;
  font-size: 1.4em;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.promo-block p {
  margin: 15px 0;
  color: #555;
  line-height: 1.7;
  font-size: 1.05em;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.contact-number {
  display: inline-block;
  background: #8B7355;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 15px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.philosophy {
  padding: 80px 20px;
  text-align: center;
  background: #FAFAFA;
  border-radius: 20px;
  margin: 40px 20px;
}

.philosophy h2 {
  font-size: 42px;
  color: #2C2C2C;
  margin-bottom: 20px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto 50px;
}

.philosophy-text {
  font-size: 22px;
  line-height: 1.6;
  min-height: 60px;
  color: #555555;
  font-style: italic;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 32px;
  color: #8B7355;
  margin-bottom: 15px;
}

.feature h3 {
  color: #2C2C2C;
  margin-bottom: 10px;
  font-size: 20px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.feature p {
  color: #666666;
  font-size: 15px;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.services-preview, .products-preview {
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.service-item, .product-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-item:hover, .product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139,115,85,0.15);
}

.service-item img, .product-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-item h3, .product-item h3 {
  padding: 20px 20px 10px;
  margin: 0;
  font-size: 18px;
  color: #2C2C2C;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

.service-item p, .product-item p {
  padding: 0 20px 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Segoe UI', 'Comfortaa', sans-serif;
}

/* Адаптация под телефон */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .typing-text {
    font-size: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy h2 {
    font-size: 28px;
  }
  
  .philosophy-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .promo-block {
    padding: 20px;
  }
  
  .promo-block h3 {
    font-size: 1.2em;
  }
}