/* ===== ANNOUNCEMENT BANNER - ANNIVERSARY ===== */

.fiu-announcement-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    height: auto;
    min-height: 70px;
    padding: 15px 30px;
    box-sizing: border-box;
    margin: 0;

    /* Anniversary bright golden gradient */
    background: linear-gradient(
        90deg,
        #d4af37 0%,
        #e6c87d 25%,
        #f0e68c 50%,
        #e6c87d 75%,
        #d4af37 100%
    );
    border-top: 2px solid rgba(240, 230, 140, 0.4);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    animation: fiu-gentle-glow 4s ease-in-out infinite;
}

.fiu-announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    animation: fiu-gentle-shine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes fiu-gentle-glow {
    0%, 100% {
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    }
    50% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }
}

@keyframes fiu-gentle-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}


/* ===== TEXT CONTENT ===== */
.fiu-announcement-content {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    animation: fiu-fade-in 0.8s ease-out;
}

@keyframes fiu-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fiu-ann-text {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #3d3d3d;
    letter-spacing: 0.3px;
}

.fiu-ann-countdown {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #3d3d3d;
    letter-spacing: 0.5px;
}

.fiu-ann-countdown strong {
    font-size: 16px;
    font-weight: 900;
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .fiu-announcement-bar {
        padding: 12px 25px;
        min-height: 65px;
    }

    .fiu-ann-title {
        font-size: 16px;
    }

    .fiu-ann-subtitle {
        font-size: 11px;
    }

    .fiu-announcement-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
}

@media (max-width: 768px) {
    .fiu-announcement-bar {
        padding: 10px 20px;
        min-height: 55px;
        gap: 15px;
    }

    .fiu-confetti-left {
        gap: 8px;
    }

    .confetti-triangle {
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 14px solid rgba(212, 175, 55, 0.8);
    }

    .confetti-dot {
        width: 6px;
        height: 6px;
    }

    .fiu-announcement-text-wrapper {
        gap: 2px;
    }

    .fiu-ann-title {
        font-size: 14px;
    }

    .fiu-ann-subtitle {
        font-size: 10px;
    }

    .fiu-right-section {
        gap: 12px;
    }

    .fiu-confetti-right {
        gap: 6px;
    }

    .fiu-announcement-badge {
        font-size: 11px;
        padding: 7px 14px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .fiu-announcement-bar {
        padding: 12px 15px;
        min-height: auto;
        flex-direction: column;
        gap: 10px;
    }

    .fiu-confetti-left,
    .fiu-confetti-right {
        display: none;
    }

    .fiu-announcement-text-wrapper {
        gap: 2px;
        width: 100%;
    }

    .fiu-ann-title {
        font-size: 13px;
    }

    .fiu-ann-subtitle {
        font-size: 10px;
    }

    .fiu-right-section {
        width: 100%;
        justify-content: center;
        gap: 0;
    }

    .fiu-announcement-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
}

/* ===== WRAPPER SPACING ===== */
.wrapper {
    padding-top: 62px;
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .wrapper {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding-top: 0px;
    }
}
