/* ---------- WEATHER EFFECTS ---------- */

#weather-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Ensure content stays above effects */
.page {
  position: relative;
  z-index: 1;
}

/* ---------- SNOW ---------- */

.snowflake {
  position: absolute;
  top: -10px;
  color: white;
  font-size: 0.8rem;
  opacity: 0.8;
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes snow-fall {
  to {
    transform: translateY(110vh);
  }
}

/* ---------- RAIN ---------- */

.raindrop {
  position: absolute;
  top: -20px;
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, 0.4);
  animation-name: rain-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes rain-fall {
  to {
    transform: translateY(110vh);
  }
}