/* =========================================================
   FAROELOTTO HEADER
   ========================================================= */

.site-header {
    position: relative;

    width: 100%;

    min-height: var(--header-height);

    background:
        linear-gradient(
            180deg,
            rgba(6, 16, 29, 0.98),
            rgba(3, 10, 20, 0.96)
        );

    border-bottom: 1px solid var(--color-border-soft);

    z-index: 1000;
}


.header-inner {
    min-height: var(--header-height);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: var(--space-xl);
}


/* =========================================================
   BRAND
   ========================================================= */

.site-brand {
    display: inline-flex;

    flex-direction: column;

    justify-content: center;

    flex-shrink: 0;

    line-height: 1;
}


.brand-name {
    color: var(--color-white);

    font-size: 24px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.brand-name span {
    color: var(--color-gold);
}


.brand-tagline {
    margin-top: 6px;

    color: var(--color-text-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 16px;

    flex-shrink: 0;
}


.header-live {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border-radius: 999px;

    border: 1px solid rgba(239, 68, 68, 0.25);

    background: rgba(239, 68, 68, 0.08);

    color: #ff7777;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.7px;
}


.header-live-dot {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--color-danger);

    box-shadow:
        0 0 10px rgba(239, 68, 68, 0.75);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    display: none;

    width: 42px;

    height: 42px;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    background: var(--color-bg-card);

    border: 1px solid var(--color-border-soft);

    border-radius: var(--radius-sm);
}


.mobile-menu-button span {
    width: 18px;

    height: 2px;

    background: var(--color-text);

    border-radius: 2px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .header-inner {
        gap: var(--space-md);
    }

    .mobile-menu-button {
        display: flex;
    }

    .header-live {
        display: none;
    }
}


@media (max-width: 480px) {

    .brand-name {
        font-size: 21px;
    }

    .brand-tagline {
        font-size: 8px;
        letter-spacing: 2px;
    }
}