/* ==========================
   HOUSE OF VERONA NAVBAR
========================== */

.navbar{

    width:100%;
    height:90px;

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

    padding:0 8%;

    position:fixed;
    top:0;
    left:0;

    background:rgba(248,245,242,0.95);

    backdrop-filter:blur(10px);

    z-index:1000;

    box-shadow:0 4px 20px rgba(0,0,0,0.05);

}

.logo img{

    height:60px;
    width:auto;

}

.nav-links{

    display:flex;
    gap:40px;

}

.nav-links a{

    font-size:16px;

    font-weight:500;

    color:#222;

    transition:0.3s;

}

.nav-links a:hover{

    color:#0F3D2E;

}

.order-btn{

    background:#0F3D2E;

    color:#fff;

    padding:12px 28px;

    border-radius:40px;

    transition:0.3s;

    font-weight:600;

}

.order-btn:hover{

    background:#C8A97E;

    color:#fff;

  }

/* ==========================
   GLASS NAVBAR EFFECT
========================== */

.navbar{

    transition:.35s ease;

}

.navbar.scrolled{

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

    backdrop-filter:blur(18px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.nav-links a{

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#C8A97E;

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.order-btn{

    box-shadow:0 10px 25px rgba(15,61,46,.25);

}

.order-btn:hover{

    transform:translateY(-3px);

}

/* ===========================
   MOBILE NAVIGATION
=========================== */

.menu-toggle{

    display:none;

    font-size:32px;

    cursor:pointer;

    color:#0F3D2E;

}

@media(max-width:900px){

    .menu-toggle{

        display:block;

    }

    .order-btn{

        display:none;

    }

    .nav-links{

        position:absolute;

        top:90px;

        left:0;

        width:100%;

        background:#F8F5F2;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:35px 0;

        display:none;

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

    }

    .nav-links.active{

        display:flex;

    }

}
