
/* FERO VERO Loaders */
@import url('https://fonts.googleapis.com/css2?family=New+Rocker&display=swap');

/* Full Page Loader - auto-hide on load */
.fv-fullpage-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.5s ease;
  cursor: pointer;
  transform: none;
  transform-origin: center center;
}

/* Immediate hide option */
.fv-fullpage-loader.immediate-hide {
  display: none !important;
}

.fv-fullpage-loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* Section Loader - 2.5 seconds for sections */
.fv-section-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.fv-section-loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* FERO VERO Text */
.fv-loader-text {
  font-family: "New Rocker", system-ui;
  font-size: 33px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transform: none;
  margin-bottom: 1rem;
}

/* Section loader text - increased size */
.fv-section-loader .fv-loader-text {
  font-size: 32px;
  transform: scale(1);
}

@keyframes gradientShift {
  0%, 100% { 
    background-position: 0% 50%; 
  }
  50% { 
    background-position: 100% 50%; 
  }
}

/* Loader Container */
.fv-loader {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 200px;
  height: 15px;
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transform: none;
}

/* Section loader increased size */
.fv-section-loader .fv-loader {
  width: 200px;
  height: 16px;
  transform: scale(1);
  margin-top: 0.5rem !important;
}

/* Animated Shape */
.fv-loader-shape {
  width: 50px;
  height: 15px;
  background: linear-gradient(144deg, #740000, #fc0000 50%, #8B0000);
  border-radius: 25px;
  position: absolute;
  animation: fvSlide 1.9s linear infinite, fvGradientChange 3s ease-in-out infinite;
  background-size: 200%;
  box-shadow: 0 0 10px rgba(252, 0, 0, 0.5);
}

/* Section loader increased shape size */
.fv-section-loader .fv-loader-shape {
  width: 45px;
  height: 15px;
}

@keyframes fvSlide {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 50px);
  }
  100% {
    left: 0;
  }
}

/* Section loader slide animation */
@keyframes fvSlideSmall {
  0% {
    left: 0;
  }
  50% {
    left: calc(100% - 55px);
  }
  100% {
    left: 0;
  }
}

.fv-section-loader .fv-loader-shape {
  animation: fvSlideSmall 1.9s linear infinite, fvGradientChange 3s ease-in-out infinite;
}

@keyframes fvGradientChange {
  0%, 100% {
    background: linear-gradient(144deg, #740000, #fc0000 50%, #8B0000);
  }
  50% {
    background: linear-gradient(144deg, #8B0000, #fc0000 50%, #740000);
  }
}

/* Loading text animation */
.fv-loading-text {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 12px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
  animation: pulse 2s ease-in-out infinite;
}

.fv-section-loader .fv-loading-text {
  font-size: 10px;
  margin-top: 10px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
