/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#ffffff;
}

/* Navbar */

.navbar{

    width:100%;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.container{

    max-width:1300px;
    margin:auto;
    padding:18px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/* Logo */

.logo{

    display:flex;
    align-items:center;
    text-decoration:none;

}

.logo img{

    width:62px;
    margin-right:12px;

}

.logo-text h2{

    color:#0B8B76;
    font-size:24px;
    font-weight:700;
    line-height:26px;

}

.logo-text span{

    color:#777;
    font-size:13px;
    letter-spacing:1px;

}

/* Links */

.nav-links{

    display:flex;
    list-style:none;
    gap:35px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    text-decoration:none;
    color:#333;
    font-size:16px;
    font-weight:500;
    transition:.3s;

}

.nav-links a:hover{

    color:#11B89A;

}

/* Underline Animation */

.nav-links a::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-8px;

    width:0%;
    height:3px;

    background:#11B89A;

    transition:.4s;
    border-radius:10px;

}

.nav-links a:hover::after{

    width:100%;

}

/* Order Button */

.order-btn{

    text-decoration:none;
    background:#11B89A;
    color:white;

    padding:13px 28px;
    border-radius:50px;

    transition:.4s;
    font-weight:600;

}

.order-btn:hover{

    background:#0B8B76;
    transform:translateY(-2px);

}

/* Mobile */

.menu-toggle{

    display:none;
    flex-direction:column;
    cursor:pointer;

}

.menu-toggle span{

    width:28px;
    height:3px;

    background:#0B8B76;

    margin:4px;
    transition:.3s;

}

@media(max-width:992px){

.nav-links{

    position:absolute;
    top:100%;
    left:-100%;

    width:100%;
    background:#fff;

    flex-direction:column;

    text-align:center;
    gap:25px;

    padding:35px 0;

    transition:.4s;

}

.nav-links.active{

    left:0;

}

.order-btn{

    display:none;

}

.menu-toggle{

    display:flex;

}

}