/* =========================================
   NAVBAR SECTION
========================================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 5%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,0.12);

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 999;
}

/* =========================================
   LOGO
========================================= */

.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* =========================================
   NAV LINKS
========================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =========================================
   NAV ACTIONS
========================================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-icon {
    position: relative;
    color: var(--white);
    text-decoration: none;
}

.nav-count {
    position: absolute;
    top: -8px;
    right: -10px;
}

.nav-account {
    color: var(--gold);
    text-decoration: none;
}
/* =========================================
   LOGO IMAGE
========================================= */

.nav-logo img{
    height:80px !important;
    width:auto;
    display:block;
    object-fit:contain;
}

.nav-logo{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.logo-text{
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1;
    color: #B5B5B5;
}

/* =========================================
   HAMBURGER MENU
========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}
