/* ============================================
   Top Banner / Topbar Styles
   ============================================ */

.top-banner {
    background: linear-gradient(135deg, #E46619 0%, #E46619 100%);
    padding: 10px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    z-index: 10000;
}

.top-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Side - Info Text */
.top-banner-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.top-banner-item i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.top-banner-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-banner-item a:hover {
    color: #000;
}

/* Hide email on desktop/web screens */
@media (min-width: 768px) {
    .top-banner-item:nth-child(2) {
        display: none;
    }
}

/* Right Side - Actions */
.top-banner-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hide social media icons completely */
.top-banner-link[title="Facebook"],
.top-banner-link[title="Tiktok"],
.top-banner-link[title="Youtube"] {
    display: none;
}

.top-banner-link {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Event Listings Specific Highlight */
a[href="event-listings.html"].top-banner-link {
    background: #000;
    color: #fff;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: gentlePulse 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

a[href="event-listings.html"].top-banner-link:hover {
    background: #fff;
    color: #E46619;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

a[href="event-listings.html"].top-banner-link i {
    color: #E46619;
    /* Orange icon */
}

a[href="event-listings.html"].top-banner-link:hover i {
    color: #E46619;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.top-banner-link i {
    font-size: 12px;
}

/* Language & Currency Selector */
.top-banner-select {
    position: relative;
}

.top-banner-select select {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 25px 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
}

.top-banner-select select:hover {
    background: rgba(255, 255, 255, 0.25);
}

.top-banner-select select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
}

.top-banner-select select option {
    background: #fff;
    color: #333;
}

.top-banner-select::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 10px;
    pointer-events: none;
}

/* Divider */
.top-banner-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

/* Promo Text */
.top-banner-promo {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-banner-promo .highlight {
    color: #000;
    font-weight: 700;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    margin: 0 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .top-banner {
        padding: 8px 0;
    }

    .top-banner .container {
        flex-direction: column;
        gap: 10px;
    }

    .top-banner-left {
        gap: 15px;
    }

    .top-banner-item {
        font-size: 12px;
    }

    .top-banner-link {
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media (max-width: 767px) {

    /* Hide entire top banner on mobile */
    .top-banner {
        display: none;
    }

    /* Keep only the promo visible */
    .top-banner-promo {
        font-size: 11px;
        text-align: center;
        letter-spacing: 0.3px;
    }

    .top-banner-promo .highlight {
        font-size: 11px;
        padding: 1px 4px;
        margin: 0 2px;
    }

    .top-banner-link {
        font-size: 10px;
        padding: 3px 8px;
        gap: 4px;
    }

    .top-banner-link i {
        font-size: 10px;
    }

    /* Smaller selectors */
    .top-banner-select select {
        font-size: 10px;
        padding: 2px 18px 2px 6px;
    }

    .top-banner-select::after {
        right: 5px;
        font-size: 8px;
    }

    /* Hide divider */
    .top-banner-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-banner {
        padding: 6px 0;
    }

    .top-banner-left {
        gap: 8px;
    }

    .top-banner-item {
        font-size: 11px;
    }

    .top-banner-link {
        font-size: 11px;
        padding: 3px 10px;
    }

    .top-banner-select select {
        font-size: 11px;
        padding: 3px 20px 3px 8px;
    }
}