/* =====================
   PREMIUM HERO SLIDER
===================== */

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* SLIDE */
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

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

/* OVERLAY */
.hero-slider .overlay {
      position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(15 15 20 / 47%) 0%, rgb(15 15 20 / 35%) 24%, rgb(15 15 20 / 24%) 64%);
}

/* INNER */
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
}

/* TEXT CARD */
.hero-text {
  max-width: 560px;
  color: #fff;
  padding: 45px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #f4c430;
  margin-bottom: 14px;
}

/* HEADINGS */
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
}

/* BUTTON */
.btn {
  padding: 14px 34px;
  background: linear-gradient(135deg, #f4c430, #e0b520);
  color: #111;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244,196,48,0.4);
}

/* IMAGE */
.hero-image img {
  max-width: 800px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: floatImg 4s ease-in-out infinite;
}

/* DOTS */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.35;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
  transform: scale(1.4);
}

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

@keyframes floatImg {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    margin-bottom: 40px;
  }
  .hero-text h1 {
    font-size: 2.3rem;
  }
}