/* Holiday Notice Banner */
:root {
    --holiday-banner-height: 64px;
}

.holiday-banner {
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* IMPORTANT: header is fixed; banner must sit visually *below* it */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    min-height: var(--holiday-banner-height);
    animation: slideDown 0.5s ease-out;
}

.holiday-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.holiday-banner-icon {
    font-size: 1.5rem;
    animation: swing 2s ease-in-out infinite;
}

.holiday-banner-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.holiday-banner-text strong {
    font-weight: 700;
    text-decoration: underline;
}

.holiday-banner-dates {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin: 0 4px;
}

/* Spacer to prevent content from sitting underneath the absolute-positioned banner */
.holiday-banner-spacer {
    height: var(--holiday-banner-height);
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes swing {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    :root {
        --holiday-banner-height: 92px;
    }

    .holiday-banner {
        padding: 12px 15px;
    }
    
    .holiday-banner-content {
        gap: 8px;
    }
    
    .holiday-banner-icon {
        font-size: 1.2rem;
    }
    
    .holiday-banner-text {
        font-size: 0.9rem;
    }
    
    .holiday-banner-dates {
        padding: 3px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    :root {
        --holiday-banner-height: 110px;
    }

    .holiday-banner-text {
        font-size: 0.85rem;
    }
    
    .holiday-banner-icon {
        font-size: 1rem;
    }
}
