/**
 * Christmas Theme - Noël
 * Elegant, subtle festive design with soft snowflakes and golden accents
 */

/* Soft snowflakes - very subtle */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    animation: snowfall linear infinite;
    opacity: 0.5;
    text-shadow: 0 0 3px rgba(200, 200, 200, 0.5);
}

@keyframes snowfall {
    0% { transform: translateY(-20px) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(180deg); }
}

.snowflake:nth-child(1) { left: 8%; animation-duration: 15s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 18%; animation-duration: 18s; animation-delay: 2s; font-size: 0.6rem; }
.snowflake:nth-child(3) { left: 32%; animation-duration: 20s; animation-delay: 4s; }
.snowflake:nth-child(4) { left: 48%; animation-duration: 16s; animation-delay: 1s; font-size: 0.7rem; }
.snowflake:nth-child(5) { left: 62%; animation-duration: 22s; animation-delay: 3s; }
.snowflake:nth-child(6) { left: 78%; animation-duration: 17s; animation-delay: 5s; font-size: 0.9rem; }
.snowflake:nth-child(7) { left: 88%; animation-duration: 19s; animation-delay: 2s; }
.snowflake:nth-child(8) { left: 95%; animation-duration: 21s; animation-delay: 4s; font-size: 0.5rem; }
.snowflake:nth-child(9) { left: 25%; animation-duration: 23s; animation-delay: 6s; }
.snowflake:nth-child(10) { left: 55%; animation-duration: 14s; animation-delay: 1s; font-size: 0.65rem; }

/* Elegant top accent bar */
.christmas-banner {
    background: linear-gradient(90deg, #1a472a 0%, #c41e3a 50%, #1a472a 100%);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Subtle golden accent on links */
a:not(.btn):not(.nav-item):not(.nav-link):hover {
    color: #b8860b !important;
}

/* Elegant card top border */
.article-card,
.card,
.chronique-card {
    border-top: 3px solid #1a472a;
}

.article-card:hover,
.card:hover,
.chronique-card:hover {
    box-shadow: 0 8px 25px rgba(26, 71, 42, 0.15);
}

/* Footer accent */
footer,
.footer,
.main-footer {
    border-top: 3px solid #c41e3a;
}

/* Subtle button enhancement */
.btn-primary:hover,
.button-primary:hover {
    box-shadow: 0 4px 15px rgba(26, 71, 42, 0.3);
}
