*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:90px;
}

body{
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

/* NAVBAR */

.premium-navbar{
    width:100%;
    height:92px;
    padding:0 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(5,5,5,.48);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(219,161,78,.18);
    transition:.35s ease;
}

.premium-navbar.scrolled{
    height:76px;
    background:rgba(3,3,3,.92);
    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

/* LOGO */

.nav-logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    color:#fff;
    flex-shrink:0;
}

.logo-shape{
    width:50px;
    height:50px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#e0a758;
    font-size:22px;
    border:1px solid rgba(224,167,88,.65);
    background:linear-gradient(145deg,rgba(255,255,255,.1),rgba(255,255,255,.02));
    box-shadow:inset 0 0 18px rgba(224,167,88,.12);
}

.logo-name span{
    display:block;
    font-size:22px;
    font-weight:800;
    letter-spacing:7px;
    line-height:1;
}

.logo-name small{
    display:block;
    margin-top:6px;
    font-size:11px;
    letter-spacing:5px;
    color:#c8c8c8;
}

.logo-image{
    width:58px;
    height:58px;
    object-fit:contain;
    display:block;
}

/* LINKS */

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links > a{
    color:#e8e8e8;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    position:relative;
    white-space:nowrap;
    transition:.3s;
}

.nav-links > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-13px;
    width:0;
    height:2px;
    background:#e0a758;
    transition:.3s;
}

.nav-links > a:hover,
.nav-links > a.active{
    color:#e0a758;
}

.nav-links > a:hover::after,
.nav-links > a.active::after{
    width:100%;
}

/* SEARCH + LOGIN */

.nav-tools{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.search-wrapper{
    width:220px;
    height:42px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 14px;
    border-radius:50px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(224,167,88,.35);
    transition:.3s;
}

.search-wrapper:focus-within{
    width:260px;
    border-color:#e0a758;
    background:rgba(255,255,255,.1);
}

.search-wrapper i{
    color:#e0a758;
    font-size:14px;
}

.search-wrapper input{
    width:100%;
    border:none;
    outline:none;
    background:transparent;
    color:#fff;
    font-size:13px;
}

.search-wrapper input::placeholder{
    color:#aaa;
}

.login-small{
    height:42px;
    padding:0 18px;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    border:1px solid rgba(224,167,88,.45);
    background:rgba(255,255,255,.05);
    transition:.3s;
    white-space:nowrap;
}

.login-small:hover{
    background:#e0a758;
    color:#050505;
}

/* MENU BUTTON */

.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:none;
    background:rgba(255,255,255,.07);
    border-radius:14px;
    cursor:pointer;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    display:block;
    margin:5px auto;
    border-radius:20px;
    transition:.3s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

.mobile-only{
    display:none;
}

/* TABLET */

@media(max-width:1180px){
    .premium-navbar{
        padding:0 28px;
    }

    .nav-links{
        gap:20px;
    }

    .desktop-search{
        width:170px;
    }

    .search-wrapper:focus-within{
        width:210px;
    }

    .nav-links > a{
        font-size:12px;
    }
}

/* MOBILE */

@media(max-width:960px){
    html{
        scroll-padding-top:78px;
    }

    .premium-navbar{
        height:78px;
        padding:0 18px;
    }

    .premium-navbar.scrolled{
        height:72px;
    }

    .logo-shape{
        width:42px;
        height:42px;
        font-size:18px;
        border-radius:13px;
    }

    .logo-name span{
        font-size:17px;
        letter-spacing:4px;
    }

    .logo-name small{
        font-size:9px;
        letter-spacing:3px;
    }

    .nav-tools{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:fixed;
        top:78px;
        right:-100%;
        width:82%;
        max-width:360px;
        height:calc(100vh - 78px);
        padding:25px;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        background:rgba(5,5,5,.98);
        border-left:1px solid rgba(224,167,88,.22);
        box-shadow:-20px 0 45px rgba(0,0,0,.45);
        transition:.35s ease;
        overflow-y:auto;
    }

    .nav-links.open{
        right:0;
    }

    .nav-links > a{
        padding:16px 0;
        border-bottom:1px solid rgba(255,255,255,.08);
        font-size:14px;
    }

    .nav-links > a::after{
        display:none;
    }

    .mobile-only{
        display:block;
    }

    .mobile-tools{
        margin-top:22px;
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .mobile-tools .search-wrapper{
        width:100%;
        height:46px;
    }

    .mobile-tools .search-wrapper:focus-within{
        width:100%;
    }

    .mobile-tools .login-small{
        width:100%;
        height:46px;
    }
}

/* SMALL PHONE */

@media(max-width:420px){
    .nav-links{
        width:100%;
        max-width:none;
    }

    .logo-name span{
        font-size:15px;
    }

    .logo-name small{
        font-size:8px;
    }
}