/* 
 * Hero Slider Styles
 */

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #000;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(198, 40, 40, 0.4),
    rgba(0, 8, 20, 0.4)
  );
  color: white;
}

.hero-slider .slide-content .container {
  width: 100%;
}

.hero-slider .slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  animation: fadeInUp 0.8s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-slider .slide-text {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-slider .slide-subtitle {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: white;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-slider .slide-content .btn {
  animation: fadeInUp 0.8s ease-out 0.4s both;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.hero-slider .slider-arrow:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider .slider-arrow.prev {
  left: 30px;
}

.hero-slider .slider-arrow.next {
  right: 30px;
}

.hero-slider .slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-slider .dot {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider .dot.active {
  background: white;
  width: 40px;
}

.hero-slider .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slide-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-decoration-line: red initial;
  text-shadow: 3px 5px 5px rgba(0, 0, 0, 0.79);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
