/* ==========================
   TICKER BANNER STYLES
   ========================== */

/* Ticker Container */
.ticker-banner {
    background: linear-gradient(135deg, #f4c430 0%, #e8b923 100%);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 500;
}

/* Ticker Wrapper */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
}

/* Ticker Track - Contains all items */
.ticker-track {
    display: flex;
    animation: scroll-ticker 40s linear infinite;
    white-space: nowrap;
}

/* Pause animation on hover */
.ticker-track:hover {
    animation-play-state: paused;
}

/* Individual Ticker Item */
.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 50px;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

/* Separator between items */
.ticker-separator {
    margin: 0 20px;
    color: #000;
    font-size: 18px;
}

/* Highlight specific text */
.ticker-highlight {
    color: #EC3028;
    font-weight: 900;
}

/* Animation for continuous scroll */
@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .ticker-banner {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .ticker-item {
        padding: 0 30px;
    }
    
    .ticker-separator {
        margin: 0 15px;
        font-size: 16px;
    }
    
    /* Faster animation on mobile */
    .ticker-track {
        animation: scroll-ticker 30s linear infinite;
    }
}

@media screen and (max-width: 480px) {
    .ticker-banner {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .ticker-item {
        padding: 0 20px;
    }
    
    .ticker-separator {
        margin: 0 10px;
        font-size: 14px;
    }
}
