/* Prevent horizontal scrollbar and fix double scrollbar */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  overflow-y: auto;
}

/* Modern Clean Hero Slider */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  margin: 0;
  margin-top: 60px;
  padding: 0;
  background: #000;
  z-index: 1;
  display: block;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 1;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Hero Content Overlay */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 20;
  max-width: 800px;
  width: 90%;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
  font-family: MistralD, cursive;
  color: rgb(255,153,0);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1.1s forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-width: 120px;
  backdrop-filter: blur(10px);
 font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
}

.hero-btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-btn-primary:hover {
  background: rgba(255, 153, 0, 0.9);
  color: white;
  border-color: rgba(255, 153, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Navigation Arrows */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s ease;
  color: white;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.hero-prev-btn {
  left: 20px;
}

.hero-next-btn {
  right: 20px;
}

/* Pagination Dots */
.hero-pagination {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 15;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.hero-dot.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.3);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  z-index: 15;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

.hero-scroll-text {
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  animation: bounce 2s infinite;
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-slider-container {
    height: 70vh !important;
  }

  .hero-slide {
    height: 70vh !important;
  }

  .hero-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .hero-prev-btn {
    left: 15px;
  }

  .hero-next-btn {
    right: 15px;
  }

  .hero-pagination {
    bottom: 20px;
    right: 20px;
  }

  .hero-scroll-indicator {
    bottom: 20px;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .hero-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    min-width: 100px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
  }

  .hero-content {
    top: 50%;
  }
}

@media (max-width: 480px) {
  .hero-slider-container {
    height: 60vh !important;
  }

  .hero-slide {
    height: 60vh !important;
  }

  .hero-nav-btn {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .hero-prev-btn {
    left: 10px;
  }

  .hero-next-btn {
    right: 10px;
  }

  .hero-pagination {
    bottom: 15px;
    right: 15px;
  }

  .hero-scroll-indicator {
    bottom: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 180px;
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
  }

  .hero-content {
    top: 50%;
  }
}

/* Slide transition effects */
.hero-slide.fade-enter {
  opacity: 0;
}

.hero-slide.fade-enter-active {
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.fade-exit {
  opacity: 1;
}

.hero-slide.fade-exit-active {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff9500, #ffb347);
}
