/*=========================================================
AERO TOUCH DOWN
NAVIGATION
=========================================================*/

.site-header{
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.navbar{
    width:100%;
    height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 60px;
    border:1px solid rgba(255,255,255,.12);

    border-top:1px solid rgba(255,255,255,.22);

    box-shadow:
        0 15px 40px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);

        
    background:rgba(5,12,28,.92);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:none;
    border-radius:0;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.navbar::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:inherit;

    pointer-events:none;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12);

}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.brand:hover .brand-logo {
    transform: rotate(-8deg) scale(1.05);
}

.brand-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.brand-text strong {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-text small {
    margin-top: 2px;
    color: #aab5cb;
    font-size: 13px;
    white-space: nowrap;
}

.navigation-menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.navigation-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navigation-links a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navigation-links a:hover,
.navigation-links a.active {
    color: #f7b928;
}

.navigation-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #f7b928, #ff7b00);
    transition: width 0.35s ease;
}

.navigation-links a:hover::after,
.navigation-links a.active::after {
    width: 100%;
}

.navigation-links a:focus-visible,
.mobile-menu-button:focus-visible {
    outline: 3px solid rgba(47, 132, 255, 0.55);
    outline-offset: 5px;
}

.navigation-download {
    min-width: 185px;
    height: 54px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
}

.mobile-menu-button {
    display: none;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 26px;
    height: 3px;
    border-radius: 20px;
    background: currentColor;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-header.scrolled .navbar {
    background: rgba(3, 9, 22, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

@media (max-width: 1200px) {
    .navigation-links {
        gap: 22px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .navigation-download {
        min-width: 160px;
    }
}

@media (max-width: 992px) {
    .mobile-menu-button {
        display: flex;
    }

    .navigation-menu {
        position: absolute;
        top: 95px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        background: rgba(7, 17, 31, 0.98);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    }

    .navigation-menu.active {
        display: flex;
    }

    .navigation-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .navigation-links li {
        width: 100%;
    }

    .navigation-links a {
        display: block;
        padding: 12px 0;
    }

    .navigation-links a::after {
        bottom: 5px;
    }

    .navigation-download {
        width: 100%;
    }

    .brand-text small {
        display: none;
    }
}

@media (max-width: 600px) {
    .site-header {
        top: 10px;
    }

    .navbar {
        height: 74px;
        padding: 0 16px;
        border-radius: 20px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .brand-text strong {
        font-size: 15px;
    }
}


/* Launch navigation spacing */
@media(min-width:1201px){
    .navigation-links{gap:25px;}
    .navigation-menu{gap:28px;}
}
