/* GLOBAL VARIABLES */
:root {
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --primary-glow: #3b82f6;
}

body {
  background-color: #0f172a;
  color: #f8fafc;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

@media (max-width: 380px) {
  #nav-tooltip {
    font-size: 11px;
    max-width: 180px;
  }
}

/* UTILITIES */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* SCROLL ANIMATIONS */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* PARTICLES */
#particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 10s infinite linear;
}

@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}

/* DELIVERY VAN SCROLL BAR */
#scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(30, 41, 59, 0.5);
  z-index: 9999;
}

#scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  width: 0%;
  position: relative;
}

#delivery-van-icon {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: black;
  border-radius: 50%;
  padding: 4px;
  font-size: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.1s;
}