/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'FiraSans_B';
  background: #fff;
  overflow-x: hidden;
}

/* =========================
   GLOBAL SLIDER BASE
========================= */
.slider,
.single-banner {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* =========================
   SLIDES
========================= */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

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

/* =========================
   MEDIA FIX (IMPORTANT)
========================= */
.slide img,
.slide video,
.single-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.08);
  transition: transform 6s ease;
}

.slide.active img,
.slide.active video {
  transform: scale(1);
}

/* =========================
   OVERLAY (FIX BLACK GAP ISSUE)
========================= */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0)
  );
  z-index: 1;
}

/* =========================
   CONTENT
========================= */
.content {
  position: absolute;
  z-index: 5;
  max-width: 600px;
  padding: 40px;
  color: #fff;
}

/* LEFT / RIGHT FIX */
.left .content {
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.right .content {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.center .content {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* =========================
   GLASS BOX
========================= */
.glass-box {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* =========================
   DOTS (PAGINATION FIXED)
========================= */
.dots {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,255,0,0.3);
  border: 1px solid rgba(0,255,0,0.5);
  cursor: pointer;
}

.dot.active {
  background: #00ff00;
  transform: scale(1.3);
  box-shadow: 0 0 10px #00ff00;
}

/* =========================
   SINGLE BANNER FIX (NO STRETCH)
========================= */
.single-banner img {
  object-fit: cover;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 768px) {

  .slider,
  .single-banner {
    height: 50vh;
  }

  .dots {
    display: none;
  }

  .content {
    max-width: 90%;
    padding: 20px;
  }
}

/* =========================
   LARGE SCREENS
========================= */
@media (min-width: 1920px) {
  .slider,
  .single-banner {
    height: 80vh;
  }
}

@media (min-width: 2560px) {
  .slider,
  .single-banner {
    height: 85vh;
  }
}