/* HEADER */
.site-header {
    padding: 10px 0;
    position: relative;
    z-index: 9999;
}

.logo-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

/* HAMBURGER */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 10001;
}

.hamburger-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: #000;
    margin: 5px 0;
}

/* SLIDE MENU */
#navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 50vh;
    background: #fff8f0;
    padding: 60px 25px;
    transition: right 0.35s ease;
    box-shadow: -2px 0 25px rgba(0,0,0,0.15);
    z-index: 10000;
    border-bottom-left-radius: 20px;
    overflow-y: auto;
}

#navbar.active {
    right: 0;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* LINKS */
.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 12px 0;
}

.nav-menu a {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}