header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.logo {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af37;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: 0.25s;
}

.nav a:hover {
    color: #d4af37;
}

.mobile-menu-button {
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;

}

@media (max-width:768px){

    header{
        padding:16px 20px;
    }

    .mobile-menu-button{
        display:block;
        margin-left:auto;
    }

    .nav{
        display:none;
        position:absolute;
        top:80px;
        right:20px;
        flex-direction:column;
        gap:16px;
        background:rgba(0,0,0,0.96);
        padding:20px;
        border-radius:12px;
        border:1px solid rgba(255,255,255,0.08);
        z-index:1000;
    }

    #mobileNav.active{
        display:flex;
    }

}