/* Banner Styles - Fixed the positioning */
.featured-banner {
    position: relative; /* Changed from fixed */
    width: 100%;
    background: linear-gradient(90deg, #FF6B00 0%, #FF9D00 100%);
    color: white;
    padding: 12px 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.banner-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.star-icon {
    color: #FFE600;
    font-size: 1.8rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.banner-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-text h3 span {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.cta-button {
    background-color: white;
    color: #FF6B00;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* For sticky header support */
.site-header {
    position: sticky;
    top: 0;
    z-index: 99; /* Lower than banner's z-index */
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .banner-text {
        flex-direction: column;
        gap: 8px;
    }
    
    .banner-text h3 {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}