/*================ NAVBAR ================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 0, 0, .05);

    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);

    transition: .35s ease;
}

.nav-container {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px 0;

}

/*================ LOGO ================*/

.logo a {

    display: flex;
    align-items: center;
    gap: 14px;

    color: #111;

}

.logo img {

    height: 64px;
    width: auto;

    transition: .35s;

}

.logo-text {

    display: flex;
    flex-direction: column;

}

.logo-text h2 {

    margin: 0;

    font-size: 24px;

    font-weight: 800;

    letter-spacing: 1px;

    line-height: 1;

    color: #111;

}

.logo-text span {

    margin-top: 4px;

    font-size: 15px;

    font-weight: 600;

    color: #ef902d;

}

/*================ MENU ================*/

nav ul {

    display: flex;

    align-items: center;

    gap: 34px;

}

nav ul li {

    position: relative;

}

nav ul li a {

    position: relative;

    color: #222;

    font-size: 16px;

    font-weight: 600;

    transition: .3s;

}

/* Underline Animation */

nav ul li a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #ef902d;

    border-radius: 50px;

    transition: .35s ease;

    transform: translateX(-50%);

}

nav ul li a:hover,
nav ul li a.active {

    color: #ef902d;

}

nav ul li a:hover::after,
nav ul li a.active::after {

    width: 100%;

}


/*================ MOBILE MENU BUTTON ================*/

.mobile-menu-toggle {

    display: none;

    width: 46px;

    height: 46px;

    border: none;

    border-radius: 14px;

    background: #fff7ef;

    color: #ef902d;

    cursor: pointer;

    font-size: 20px;

    transition: .35s;

}

.mobile-menu-toggle:hover {

    background: #ef902d;

    color: #fff;

    transform: rotate(90deg);

}

