/* ═══════════════════════════════════════════════════════
   ASAS Contracting — Hero Slider
   File: assets/css/heroSlider.css
   Scope: arrows, slide list visibility, transitions
   Everything else stays in mellis.css untouched
═══════════════════════════════════════════════════════ */

/* ── HIDE THE IMAGE LIST — used only as data source ── */
#hero-slides {
  display: none !important;
}

/* ── ARROW BUTTONS ── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hs-arrow:hover {
  background: rgba(200, 163, 80, 0.55);
  border-color: rgba(200, 163, 80, 0.70);
  transform: translateY(-50%) scale(1.08);
}

.hs-arrow--prev { left: 24px; }
.hs-arrow--next { right: 24px; }

.hs-arrow i {
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
}

/* ── RESPONSIVE: smaller arrows on mobile ── */
@media (max-width: 768px) {
  .hs-arrow {
    width: 40px;
    height: 40px;
  }
  .hs-arrow i { font-size: 14px; }
  .hs-arrow--prev { left: 12px; }
  .hs-arrow--next { right: 12px; }
}

@media (max-width: 480px) {
  .hs-arrow {
    width: 34px;
    height: 34px;
  }
  .hs-arrow i { font-size: 12px; }
  .hs-arrow--prev { left: 8px; }
  .hs-arrow--next { right: 8px; }
}
