/**
 * BGK Informatics - Announcement Banner
 * Kayan duyuru bandı
 */

.announcement-banner {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: #d38225;
    color: white;
    padding: 0.35rem 0;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.announcement-content {
    display: flex;
    width: fit-content;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.announcement-text {
    padding: 0 3rem;
    display: inline-flex;
    align-items: center;
}

/* Animasyon - Sağdan sola kayar */
@keyframes marquee {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Hero Banner'ı aşağı kaydır */
.hero-banner-section {
    margin-top: calc(var(--header-height) + 2.5rem);
}

/* Hover durumunda yavaşlat */
.announcement-banner:hover .announcement-content {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .announcement-banner {
        font-size: 0.875rem;
        padding: 0.3rem 0;
    }

    .announcement-text {
        padding: 0 2rem;
    }

    .hero-banner-section {
        margin-top: calc(var(--header-height) + 2rem);
    }
}