/* ======================================================
   HOLIDAY LIGHTS — Version A2 (Elegant Floating Bulbs)
   No string. Minimal glow. Above navigation bar.
   ====================================================== */

#holiday-lights {
    position: fixed;
    top: -10px;   /* move UP so it never covers nav */
    left: 0;
    width: 100%;
    height: 70px; /* smaller, elegant */
    pointer-events: none;
    z-index: 99999;
}

/* Bulbs only — no wire */
.holiday-bulb {
    position: absolute;
    width: 16px;       /* smaller */
    height: 22px;
    border-radius: 50% 50% 45% 45%;
    box-shadow: 0 0 6px currentColor;
    transform-origin: top center;
    animation: holidayGlow 2s infinite ease-in-out;
    opacity: 0.85;
}

/* Cap */
.holiday-bulb::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 3px;
    width: 10px;
    height: 8px;
    background: #444;
    border-radius: 3px;
}

/* Modern color palette */
.bulb-red    { background: #ff7070; color: #ff7070; }
.bulb-green  { background: #6bff8b; color: #6bff8b; }
.bulb-blue   { background: #66caff; color: #66caff; }
.bulb-yellow { background: #ffe88c; color: #ffe88c; }
.bulb-purple { background: #ff88ff; color: #ff88ff; }

@keyframes holidayGlow {
    0%   { filter: brightness(0.7); }
    50%  { filter: brightness(1.4); }
    100% { filter: brightness(0.7); }
}
