/**
 * Seasonal Themes CSS - Navbar Only
 * Stili per i temi stagionali della navbar kokoart.it
 */

/* ==========================================
   NAVBAR STANDARD (Rosso → Viola)
   ========================================== */
.classic-navbar {
  background: linear-gradient(to right, #f65757, #7952b3);
  position: relative;
  overflow: hidden;
}

/* ==========================================
   NAVBAR NATALE (Rosso con neve)
   ========================================== */
.christmas-navbar {
  background-color: #e32e2e !important;
  position: relative;
  overflow: hidden;
}

/* Container neve solo nella navbar */
.christmas-navbar .snow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.christmas-navbar .snowflake {
  position: absolute;
  top: -10px;
  color: white;
  font-size: 1em;
  user-select: none;
  animation: snowfall linear infinite;
  z-index: 1;
}

@keyframes snowfall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(120px) rotate(360deg);
    opacity: 0.6;
  }
}

/* Assicura che gli elementi della navbar siano sopra la neve */
.navbar li,
.navbar a {
  position: relative;
  z-index: 2;
}

/* ==========================================
   NAVBAR BLACK FRIDAY
   ========================================== */
.black-friday-navbar {
  background: linear-gradient(135deg, #000000 0%, #ff0000 50%, #000000 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  position: relative;
}

@keyframes gradientShift {

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

  50% {
    background-position: 100% 50%;
  }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  .snowflake {
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {
  .snowflake {
    font-size: 0.7em;
  }
}