/* ================= HERO SLIDER ================= */
.hero-slider{
  width:100%;
  position:relative;
  overflow:hidden;
  /* margin-top:; */
}

.slider-container{
  width:100%;
  height:75vh;
  position:relative;
}

/* SLIDE */
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.05);
  transition:opacity 1s ease, transform 1s ease;
}

.slide.active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}

/* DARK OVERLAY */
.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0.4),rgba(0,0,0,0.65));
}

/* CONTENT */
.slide-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
  color:#fff;
  z-index:2;
}

.slide-content h1{
  font-family:"Yatra One", cursive;
  font-size:48px;
  letter-spacing:2px;
  margin-bottom:10px;
  text-shadow:2px 4px 12px rgba(0,0,0,0.6);
}

.slide-content p{
  font-size:18px;
  max-width:700px;
  margin-bottom:20px;
  line-height:1.6;
}

/* BUTTONS */
.btn-group{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.btn-primary{
  background:linear-gradient(135deg,#ff9a3c,#ffb86c);
  color:#000;
  padding:12px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 8px 20px rgba(255,154,60,0.45);
  transition:0.3s;
}
.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  border:2px solid #fff;
  color:#fff;
  padding:10px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
}
.btn-secondary:hover{
  background:#fff;
  color:#000;
}

/* NAV ARROWS */
.slider-nav{
  position:absolute;
  width:100%;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  padding:0 15px;
  z-index:3;
}
.slider-nav button{
  background:rgba(0,0,0,0.4);
  border:none;
  color:#fff;
  font-size:26px;
  width:42px;
  height:42px;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}
.slider-nav button:hover{
  background:#ff9a3c;
}

/* DOTS */
.slider-dots{
  position:absolute;
  bottom:20px;
  width:100%;
  display:flex;
  justify-content:center;
  gap:10px;
  z-index:3;
}
.dot{
  width:12px;
  height:12px;
  background:#fff;
  border-radius:50%;
  opacity:0.5;
  cursor:pointer;
  transition:0.3s;
}
.dot.active{
  opacity:1;
  background:#ff9a3c;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
  .slider-container{ height:65vh; }
  .slide-content h1{ font-size:36px; }
  .slide-content p{ font-size:16px; }
}

@media(max-width:576px){
  .slider-container{ height:60vh; }
  .slide-content h1{ font-size:26px; }
  .slide-content p{ font-size:14px; }
  .btn-primary, .btn-secondary{
    padding:10px 20px;
    font-size:14px;
  }
}
