/* ============================================================
   SIMPLE HERO SLIDER - CLEAN & MINIMAL DESIGN
   ============================================================ */

.hero-slider-section {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: #f5f5f5;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Background image */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Simple overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

/* Content */
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-slide-text {
  max-width: 600px;
}

.hero-slide-text h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slide-text h1 strong {
  color: #D4AF37;
}

.hero-slide-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Simple button */
.hero-slide-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #D4AF37;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-slide-button:hover {
  background: #BF9B4E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-slide-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.hero-slide-button:hover i {
  transform: translateX(4px);
}

/* Navigation controls */
.hero-slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.hero-slider-btn {
  pointer-events: all;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #333;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-slider-btn:hover {
  background: #D4AF37;
  color: #FFFFFF;
  transform: scale(1.1);
}

/* Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot.active {
  background: #D4AF37;
  border-color: #D4AF37;
  width: 30px;
  border-radius: 5px;
}

.hero-slider-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

/* 3D Element - Hidden in simple version */
.hero-slide-3d-element,
.hero-slide-3d-showcase {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider-section,
  .hero-slider-container {
    min-height: 400px;
    height: 400px;
  }
  
  .hero-slide-content {
    padding: 0 20px;
  }
  
  .hero-slide-text h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 15px;
  }
  
  .hero-slide-text p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-slide-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  
  .hero-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .hero-slider-dots {
    bottom: 20px;
    gap: 8px;
  }
  
  .hero-slider-dot {
    width: 8px;
    height: 8px;
  }
  
  .hero-slider-dot.active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .hero-slider-section,
  .hero-slider-container {
    min-height: 350px;
    height: 350px;
  }
  
  .hero-slide-text h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .hero-slide-text p {
    font-size: 0.9rem;
  }
  
  .hero-slider-controls {
    padding: 0 10px;
  }
  
  .hero-slider-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}
