/*==================================================
 FUZE PARALEGALS
 HEADER
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#ffffff;
    border-bottom:1px solid #e8e8e8;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.header-container{
    max-width:1300px;
    margin:auto;
    padding:12px 25px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:110px;
    width:auto;
    display:block;
}

.desktop-menu{
    display:flex;
    align-items:center;
    gap:28px;
}

.desktop-menu a{
    color:#0B5D46;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.desktop-menu a:hover{
    color:#D4AF37;
}

.register-btn{
    background:#0B5D46;
    color:#fff !important;
    padding:12px 24px;
    border-radius:8px;
}

.register-btn:hover{
    background:#D4AF37;
    color:#0B5D46 !important;
}

.menu-btn{
    display:none;
    width:52px;
    height:52px;
    border:none;
    background:#0B5D46;
    color:#fff;
    border-radius:8px;
    font-size:24px;
    cursor:pointer;
}

/* MOBILE MENU */

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#ffffff;
    box-shadow:-5px 0 20px rgba(0,0,0,.15);
    padding:90px 25px 30px;
    transition:right .35s ease;
    display:flex;
    flex-direction:column;
    gap:20px;
    z-index:9999;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    color:#0B5D46;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.mobile-menu a:hover{
    color:#D4AF37;
}

@media (max-width:900px){

.desktop-menu{
    display:none;
}

.menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo img{
    height:85px;
}

.header-container{
    padding:10px 20px;
}

/* SHOW MOBILE MENU */

.mobile-menu{
    display:flex;
}

}