/* components/hero/hero.css */
.hero {
  background-image: url('../../assets/images/Баннер\ 1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.6) 50%, transparent 100%);
  z-index: 1;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero__content {
  animation: slideInLeft 0.8s ease-out;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-primary);
  border-radius: 50px;
  color: var(--accent-primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__badge-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero__title {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary-text);
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: left;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.5px;
}

.hero__title-main {
  display: block;
  margin-bottom: 16px;
}

.hero__title-accent {
  color: var(--primary-text);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  text-align: left;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--secondary-text);
  line-height: 1.6;
  text-align: left;
  text-shadow: 0 1px 15px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  font-weight: 400;
}

.hero__buttons {
  display: flex;
  gap: 20px;
}

.hero__btn-primary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  background: var(--gradient-primary);
  color: var(--primary-text);
  border: none;
  border-radius: var(--border-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hero__btn-secondary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  border-radius: var(--border-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.hero__btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--primary-text);
  transform: translateY(-2px);
}

.hero__btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero__visual {
  display: none;
}

.hero__images-grid {
  display: none;
}

.hero__image-item {
  display: none;
}

.hero__image {
  display: none;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .hero {
    background-image: url('../../assets/images/Баннер\ 1.1.jpg');
    padding: 80px 0 60px;
    min-height: 500px;
  }
  
  .hero::before {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 60%, transparent 100%);
  }
  
  .hero__title {
    font-size: 48px;
  }
  
  .hero__title-accent {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-image: url('../../assets/images/Баннер\ 1.2.jpg');
    padding: 60px 0 50px;
    min-height: 400px;
  }
  
  .hero::before {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 100%);
  }
  
  .hero__title {
    font-size: 36px;
  }
  
  .hero__title-accent {
    font-size: 20px;
  }
  
  .hero__subtitle {
    font-size: 16px;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero {
    background-image: url('../../assets/images/Баннер\ 1.3.jpg');
  }
  
  .hero::before {
    background: rgba(10, 10, 10, 0.85);
  }
}