/* ============================================================
   MAXIMISE AV NAVIGATION

   Premium glass style navigation.

   Transparent at top.
   Glass effect after scrolling.

============================================================ */


.navbar{

    width:100%;

    padding:25px 0;

    transition:var(--transition);

}


/* Main container */

.nav-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

}


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


.logo img{

    width:180px;

    height:auto;

    transition:var(--transition);

}


/* Logo hover */

.logo:hover img{

    transform:scale(1.05);

}



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


.nav-links{

    display:flex;

    align-items:center;

    gap:45px;

}


.nav-links a{

    position:relative;

    color:white;

    font-size:0.95rem;

    font-weight:500;

    transition:var(--transition);

}


/* Orange animated underline */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}



.nav-links a:hover::after{

    width:100%;

}



.nav-links a:hover{

    color:var(--primary);

}



/* ============================================================
   SCROLLED HEADER

============================================================ */


header.scrolled .navbar{


    padding:15px 0;


}



header.scrolled{


    background:rgba(13,13,13,0.85);

    backdrop-filter:blur(20px);

    border-bottom:1px solid var(--border);


}



header.scrolled .logo img{

    width:150px;

}



/* ============================================================
   MOBILE BUTTON

============================================================ */


.menu-button{

    display:none;

    flex-direction:column;

    gap:6px;

}


.menu-button span{

    width:30px;

    height:3px;

    background:white;

    border-radius:5px;

}



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


@media(max-width:900px){


.nav-links{

    display:none;

}


.menu-button{

    display:flex;

}


}