/*
====================================================
THE ARENA HEADER
====================================================
*/

.lb-header {
    position: sticky;
    top: 0;
    z-index: 100000;

    width: 100%;
    height: 75px;
    box-sizing: border-box;

    background:
        linear-gradient(
            90deg,
            rgba(7, 21, 46, 0.96),
            rgba(11, 35, 71, 0.88),
            rgba(56, 210, 122, 0.45)
        ),
        url("https://thearenaltd.com/wp-content/uploads/2026/06/pexels-photo-3131407.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-top: 2px solid #ffc72c;
    border-bottom: 2px solid #38d27a;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/*
====================================================
HEADER INNER
====================================================
*/

.lb-header-inner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 1400px;
    height: 100%;

    margin: 0 auto;
    padding: 6px 20px;
    box-sizing: border-box;
}

/*
====================================================
LOGO
====================================================
*/

.lb-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;

    height: 100%;
    max-width: calc(100% - 70px);

    text-decoration: none;
    line-height: 0;
}

.lb-logo-image {
    display: block;

    width: auto;
    height: 56px;
    max-width: 240px;

    object-fit: contain;
    object-position: left center;
}

/*
====================================================
MENU BUTTON
====================================================
*/

.lb-menu-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    width: 44px;
    height: 42px;
    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;

    background: #38d27a;
    cursor: pointer;

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.lb-menu-btn:hover,
.lb-menu-btn:focus-visible {
    background: #ffc72c;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255, 199, 44, 0.30);
}

.lb-menu-btn:active {
    transform: scale(0.95);
}

.lb-menu-btn span {
    position: absolute;

    display: block;
    width: 18px;
    height: 2px;

    border-radius: 999px;
    background: #081c3a;

    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease;
}

.lb-menu-btn span:nth-child(1) {
    transform: translateY(-6px);
}

.lb-menu-btn span:nth-child(2) {
    transform: translateY(0);
}

.lb-menu-btn span:nth-child(3) {
    transform: translateY(6px);
}

/*
====================================================
ACTIVE MENU ICON
====================================================
*/

.lb-menu-btn.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.lb-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.lb-menu-btn.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

/*
====================================================
INFORMATION DROPDOWN
====================================================
*/

.lb-dropdown {
    position: absolute;
    top: calc(100% + 9px);
    right: 20px;
    z-index: 100001;

    display: flex;
    flex-direction: column;

    width: 210px;
    padding: 7px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 13px;

    background: #081c3a;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px);

    transition:
        opacity 0.22s ease,
        transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.22s ease;
}

/* Supports either class used by the header JavaScript */

.lb-dropdown.open,
.lb-dropdown.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.lb-dropdown a {
    display: block;

    padding: 12px 13px;
    border-radius: 8px;

    color: #d5dce6;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding-left 0.2s ease;
}

.lb-dropdown a:hover,
.lb-dropdown a:focus-visible {
    color: #ffffff;
    background: #0d2a52;
    padding-left: 17px;
}

.lb-dropdown a.active {
    color: #ffffff;
    background: #0d2a52;
    box-shadow: inset 3px 0 0 #38d27a;
}

/*
====================================================
WORDPRESS ADMIN BAR
====================================================
*/

body.admin-bar .lb-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .lb-header {
        top: 46px;
    }
}

/*
====================================================
MOBILE
====================================================
*/

@media (max-width: 600px) {

    .lb-header {
        height: 73px;
    }

    .lb-header-inner {
        padding: 6px 14px;
    }

    .lb-logo-image {
        height: 51px;
        max-width: 205px;
    }

    .lb-menu-btn {
        width: 43px;
        height: 40px;
        border-radius: 10px;
    }

    .lb-dropdown {
        top: calc(100% + 8px);
        right: 14px;

        width: min(210px, calc(100vw - 28px));
    }
}

@media (max-width: 390px) {

    .lb-logo-image {
        height: 47px;
        max-width: 180px;
    }

    .lb-menu-btn {
        width: 41px;
        height: 39px;
    }
}