/* ========== CHRISTMAS THEME ADDITIONS ========== */

/* Snowfall Animation */
@keyframes snowfall {
  0% {
    transform: translateY(-10vh) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(100px);
    opacity: 0.3;
  }
}

@keyframes snowfall-slow {
  0% {
    transform: translateY(-10vh) translateX(0) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(100vh) translateX(-50px) rotate(360deg);
    opacity: 0.2;
  }
}

/* Snowflakes */
.snowflake {
  position: fixed;
  top: -10vh;
  color: #fff;
  font-size: 1em;
  z-index: 9999;
  pointer-events: none;
  animation: snowfall linear infinite;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; font-size: 0.8em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 15s; animation-delay: 4s; font-size: 1.2em; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 11s; animation-delay: 1s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 13s; animation-delay: 3s; font-size: 0.9em; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 14s; animation-delay: 5s; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 16s; animation-delay: 0s; font-size: 1.1em; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 10s; animation-delay: 2.5s; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 12s; animation-delay: 4.5s; font-size: 0.85em; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 11s; animation-delay: 1.5s; animation-name: snowfall-slow; }
.snowflake:nth-child(11) { left: 25%; animation-duration: 13s; animation-delay: 3.5s; animation-name: snowfall-slow; }
.snowflake:nth-child(12) { left: 35%; animation-duration: 14s; animation-delay: 5.5s; font-size: 1.3em; }
.snowflake:nth-child(13) { left: 45%; animation-duration: 12s; animation-delay: 2s; animation-name: snowfall-slow; }
.snowflake:nth-child(14) { left: 55%; animation-duration: 15s; animation-delay: 4s; }
.snowflake:nth-child(15) { left: 65%; animation-duration: 11s; animation-delay: 1s; font-size: 0.95em; }
.snowflake:nth-child(16) { left: 75%; animation-duration: 13s; animation-delay: 3s; animation-name: snowfall-slow; }
.snowflake:nth-child(17) { left: 85%; animation-duration: 16s; animation-delay: 0s; }
.snowflake:nth-child(18) { left: 95%; animation-duration: 10s; animation-delay: 5s; font-size: 1.15em; }
.snowflake:nth-child(19) { left: 5%; animation-duration: 14s; animation-delay: 2.5s; animation-name: snowfall-slow; }
.snowflake:nth-child(20) { left: 50%; animation-duration: 12s; animation-delay: 4.5s; font-size: 0.75em; }

/* Christmas lights animation */
@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.christmas-lights {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  z-index: 9998;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}

.light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: twinkle 1.5s ease-in-out infinite;
}

.light:nth-child(1) { background: #c41e3a; animation-delay: 0s; }
.light:nth-child(2) { background: #d4af37; animation-delay: 0.3s; }
.light:nth-child(3) { background: #165b33; animation-delay: 0.6s; }
.light:nth-child(4) { background: #c41e3a; animation-delay: 0.9s; }
.light:nth-child(5) { background: #d4af37; animation-delay: 1.2s; }
.light:nth-child(6) { background: #165b33; animation-delay: 0.2s; }
.light:nth-child(7) { background: #c41e3a; animation-delay: 0.5s; }
.light:nth-child(8) { background: #d4af37; animation-delay: 0.8s; }
.light:nth-child(9) { background: #165b33; animation-delay: 1.1s; }
.light:nth-child(10) { background: #c41e3a; animation-delay: 0.4s; }

/* Christmas emoji decorations for cards */
.card::before {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  opacity: 0.3;
  pointer-events: none;
}

/* Add festive border to cards */
.card {
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.2), 
              0 0 20px rgba(212, 175, 55, 0.1);
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 12px 48px rgba(196, 30, 58, 0.3),
              0 0 30px rgba(212, 175, 55, 0.2);
}