/* ==========================
   HEADER
========================== */

.site-header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    z-index: 9999;
}

.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
}

/* ==========================
   LOGO
========================== */

.site-branding{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-logo img{
    max-height: 120px;
    width: auto;
    display: block;
}

.site-slogan{
    margin-top: 8px;
}

.site-slogan p{
    font-size: 15px;
    color: #666;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ==========================
   NAVIGATION
========================== */

.nav-menu{
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu li{
    list-style: none;
}

.nav-menu li a{
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.nav-menu li a:hover{
    color: #1e73be;
}

/* ==========================
   HEADER ACTIONS
========================== */

.header-actions{
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions a{
    text-decoration: none;
    color: #222;
    font-size: 22px;
    transition: .3s;
}

.header-actions a:hover{
    color: #1e73be;
}

/* ==========================
   HAMBURGER BUTTON
========================== */

.menu-toggle{
    display: none;
    border: none;
    background: none;
    font-size: 32px;
    cursor: pointer;
    color: #222;
}

/* ==========================
   MOBILE MENU
========================== */

.mobile-menu{
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,.15);
    z-index: 10000;
    transition: .4s;
    padding: 30px;
}

.mobile-menu.active{
    right: 0;
}

.close-menu{
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    float: right;
    margin-bottom: 30px;
}

.mobile-nav-menu{
    list-style: none;
    margin-top: 60px;
    padding: 0;
}

.mobile-nav-menu li{
    margin-bottom: 20px;
}

.mobile-nav-menu li a{
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
}

.mobile-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: none;
    z-index: 9998;
}

.mobile-overlay.active{
    display: block;
}
.menu-item-logout a{

    color:#b71c1c;
    font-weight:600;
    transition:.3s;

}

.menu-item-logout a:hover{

    color:#d4af37;

}