/* ============================================
   Ramadan & Eid Seasonal Decorations
   ============================================ */

:root {
    --seasonal-primary: #2d1b4e; /* Deep Ramadan Purple */
    --seasonal-accent: #c9a86c;  /* Gold */
    --seasonal-text: #ffffff;
}

/* Seasonal Announcement Bar */
.seasonal-announcement {
    background: linear-gradient(135deg, var(--seasonal-primary) 0%, #4a2c7d 100%);
    color: var(--seasonal-text);
    padding: 10px 20px;
    text-align: center;
    position: relative;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.seasonal-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(201, 168, 108, 0.3)" /><circle cx="50" cy="30" r="1.5" fill="rgba(201, 168, 108, 0.2)" /><circle cx="80" cy="70" r="1" fill="rgba(201, 168, 108, 0.4)" /></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.seasonal-text {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.seasonal-text strong {
    color: var(--seasonal-accent);
    font-weight: 700;
}

.seasonal-link {
    color: var(--seasonal-accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.seasonal-link:hover {
    border-bottom-color: var(--seasonal-accent);
    letter-spacing: 1px;
}

.seasonal-close {
    background: none;
    border: none;
    color: var(--seasonal-text);
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seasonal-close:hover {
    opacity: 1;
}

/* Floating Lantern Decoration */
.floating-decoration {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 999;
    pointer-events: none;
    animation: sway 4s ease-in-out infinite;
    opacity: 0.8;
    background: transparent !important;
}

@keyframes sway {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-8px); }
}

.lantern-icon {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(201, 168, 108, 0.5));
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

/* Hide on mobile if it disturbs content */
@media (max-width: 768px) {
    .floating-decoration {
        bottom: 15px;
        right: 10px;
        opacity: 0.6; /* More subtle on mobile */
    }
    .lantern-icon {
        width: 35px;
    }
    .seasonal-text {
        font-size: 0.8rem;
        line-height: 1.2;
        padding-right: 25px; /* Space for close button */
    }
    .seasonal-announcement {
        padding: 8px 15px;
        flex-direction: column;
        gap: 5px;
    }
    .seasonal-close {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
    }
}
