/* ===================================================
   BREATH & STRENGTH - SHARED NAVBAR
=================================================== */

header{

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition: all .35s ease;

}

header.scrolled{

    background: rgba(255,255,255,.88);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 8px 25px rgba(0,0,0,.08);

}

/* ===========================
        NAVBAR
=========================== */

.navbar{

    width: 92%;

    max-width: 1400px;

    margin: auto;

    height: 88px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

/* ===========================
          LOGO
=========================== */

.logo{

    display: flex;

    align-items: center;

    gap: 14px;

    flex-shrink: 0;

}

.logo img{

    width: 65px;

    height: 65px;

    object-fit: contain;

}

.logo-text{

    display: flex;

    flex-direction: column;

}

.logo-text h2{

    font-size: 15px;

    line-height: 1.1;

    color: #10284f;

    font-weight: 700;

    margin: 0;

    letter-spacing: .5px;

}

.logo-text span{

    margin-top: 3px;

    font-size: 9px;

    letter-spacing: 1px;

    color: #555;

    text-transform: uppercase;

}

/* ===========================
        NAV LINKS
=========================== */

.nav-links{

    display: flex;

    align-items: center;

    gap: 38px;

    list-style: none;

}

.nav-links li{

    list-style: none;

}

.nav-links a{

    text-decoration: none;

    color: #10284f;

    font-size: 16px;

    font-weight: 600;

    transition: .3s;

}

.nav-links a:hover,

.nav-links a.active{

    color: #6B8E23;

}

/* ===========================
        RIGHT SIDE
=========================== */

.nav-right{

    display: flex;

    align-items: center;

    gap: 12px;

}

/* ===========================
         LOGIN BTN
=========================== */

.login-btn,

.signup-btn{

    text-decoration: none;

    padding: 10px 18px;

    border-radius: 10px;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;

}

.login-btn{

    border: 2px solid #10284f;

    color: #10284f;

}

.login-btn:hover{

    background: #10284f;

    color: #fff;

}

.signup-btn{

    background: #10284f;

    color: #fff;

    border: 2px solid #10284f;

}

.signup-btn:hover{

    background: #6B8E23;

    border-color: #6B8E23;

}

/* ===========================
        PROFILE LINK
=========================== */

.profile-link{

    display: flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;

    color: #10284f;

    font-weight: 600;

}

.profile-link i{

    color: #6B8E23;

    font-size: 20px;

}

/* ===========================
        HAMBURGER
=========================== */
.menu-toggle{

    display:none;

    cursor:pointer;

    font-size:28px;

    color:#10284f;

    z-index:1200;

    position:relative;

}

/* ===========================
       MOBILE MENU
=========================== */

@media(max-width:768px){

    .navbar{
    width:100%;
    height:80px;
    padding:0 12px;
}

    .logo img{
    width:45px;
    height:45px;
}

    .logo-text h2{
    font-size:11px;
}

    .logo-text span{
    font-size:7px;
}

.logo{
    gap:8px;
}

.login-btn{
    padding:8px 14px;
    font-size:14px;
}

    

.signup-btn{

        display: none;

    }

    


}

@media (max-width: 768px) {

    .menu-toggle{
        display:block;
    }

   .menu-toggle {
        display: block;
    }

    .nav-links {

        position: fixed;

        top: 80px;

        right: -100%;

        left: auto;

        width: 280px;

        height: calc(100vh - 80px);

        background: rgba(255, 255, 255, 0.98);

        backdrop-filter: blur(12px);

        -webkit-backdrop-filter: blur(12px);

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        padding: 40px 30px;

        gap: 25px;

        transition: right 0.3s ease;

        box-shadow: -8px 0 20px rgba(0, 0, 0, 0.1);

        z-index: 999;

    }

    .nav-links.active {

        right: 0;

    }

    .nav-links li {

        width: 100%;

    }

    .nav-links a {

        font-size: 20px;

        color: #10284f;

        width: 100%;

        display: block;

    }


}
html,
body{
    overflow-x:hidden;
    max-width:100%;
}