/* 
==================================================================
PREMIUM KIOSK BACKGROUND SYSTEM
Dynamic slideshow backgrounds with overlay effects
Optimized for: Touch Screen Kiosks, Professional Warehouse Environment
==================================================================
*/

/* ========== KIOSK BACKGROUND SLIDESHOW (Enhanced from login.css) ========== */
.kiosk-background-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.kiosk-background-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.kiosk-background-slide.active {
  opacity: 1;
}

/* Kiosk-specific background images */
.kiosk-background-slide:nth-child(1) {
  background-image: url('../images/backgrounds/01.jpg');
}

.kiosk-background-slide:nth-child(2) {
  background-image: url('../images/backgrounds/02.jpg');
}

.kiosk-background-slide:nth-child(3) {
  background-image: url('../images/backgrounds/03.jpg');
}

.kiosk-background-slide:nth-child(4) {
  background-image: url('../images/backgrounds/04.jpg');
}

.kiosk-background-slide:nth-child(5) {
  background-image: url('../images/backgrounds/05.jpg');
}

.kiosk-background-slide:nth-child(6) {
  background-image: url('../images/backgrounds/06.jpg');
}

/* Overlay for better content visibility */
.kiosk-background-slideshow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Darker for kiosk readability */
  z-index: 1;
}

/* ========== GLOBAL KIOSK OPTIMIZATIONS ========== */
body, .pusher {
  background: var(--background-gradient) !important;
  font-family: 'Roboto', 'Inter', Arial, sans-serif !important;
  font-size: 18px !important; /* Larger base font for kiosk viewing */
  overflow-x: hidden;
  position: relative;
  z-index: 10; /* Above background slideshow */
}

/* Remove scroll bars for kiosk mode */
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Hide scrollbars but keep functionality */
* {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

/* Prevent text selection on touch */
.kiosk-title, .kiosk-subtitle {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}
