/* Hero Slider Styles */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 66, 21, 0.82) 0%, rgba(90, 116, 44, 0.68) 50%, rgba(20, 46, 24, 0.65) 100%);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-content {
  color: #fff;
  animation: fadeInUp 0.8s ease-out;
}

.hero-slide.active .hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff !important;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  color: #ffffff !important;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.btn-play::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

.btn-play i {
  color: var(--accent-amber);
  font-size: 1.2rem;
  margin-left: 3px;
}

.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.watch-text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.btn-hero-primary,
.btn-hero-outline {
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

.btn-hero-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 116, 44, 0.35);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border-color: var(--accent-gold);
}

.btn-hero-outline:hover {
  background: var(--accent-gold);
  color: var(--primary-darker);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 199, 87, 0.3);
}

/* Slider Controls */
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  opacity: 0.7;
}

.slider-control:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.slider-control.prev {
  left: 30px;
}

.slider-control.next {
  right: 30px;
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: none; /* Hidden - navigation dots removed */
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.indicator.active {
  background: #fff;
  width: 40px;
  border-radius: 6px;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease-out;
}

.video-modal-content {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-modal-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.video-modal-close:hover {
  background: #fff;
  color: #000;
  transform: rotate(90deg);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-slider-wrapper {
    height: 80vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .slider-control {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-control.prev {
    left: 15px;
  }

  .slider-control.next {
    right: 15px;
  }
}

@media (max-width: 767px) {
  .hero-slider-wrapper {
    height: 70vh;
    min-height: 450px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .btn-play {
    width: 50px;
    height: 50px;
  }

  .btn-play i {
    font-size: 1rem;
  }

  .watch-text {
    font-size: 0.9rem;
  }

  .slider-control {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 0.5;
  }

  .slider-control:hover {
    opacity: 0.8;
  }

  .slider-control.prev {
    left: 5px;
  }

  .slider-control.next {
    right: 5px;
  }

  .slider-indicators {
    bottom: 20px;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }

  .indicator.active {
    width: 30px;
  }
}

@media (max-width: 575px) {
  .hero-slider-wrapper {
    height: 60vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .slider-control {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    opacity: 0.4;
  }

  .slider-control:hover {
    opacity: 0.7;
  }

  .slider-control.prev {
    left: 3px;
  }

  .slider-control.next {
    right: 3px;
  }
}
