/* =============================================================================
   MY Accounting & Tax Solutions
============================================================================= */

/*
|--------------------------------------------------------------------------
| File        : header.css
| File Code   : CSS003
| Version     : 1.1.0
| Description : Header & Navigation Styles
| Author      : MY Accounting & Tax Solutions
|--------------------------------------------------------------------------
*/


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

.navbar{

    position:relative;

    background:var(--white);

    padding:18px 0;

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

    transition:all .35s ease;

    z-index:var(--z-header);

}


/* ==========================================================================
   TOP ACCENT BAR
========================================================================== */

.navbar::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:3px;

    background:var(--secondary-color);

}


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

.navbar.sticky{

    position:fixed;

    top:0;

    left:0;

    width:100%;

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

    backdrop-filter:blur(12px);

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

    box-shadow:var(--shadow-md);

    animation:slideDown .35s ease;

}


/* ==========================================================================
   CONTAINER
========================================================================== */

.navbar .container{

    display:flex;

    align-items:center;

}


/* ==========================================================================
   BRAND
========================================================================== */

.navbar-brand{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

}


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

.logo{

    width:65px;

    height:auto;

    transition:var(--transition);

}

.logo:hover{

    transform:scale(1.04);

}


/* ==========================================================================
   COMPANY DETAILS
========================================================================== */

.brand-text{

    display:flex;

    flex-direction:column;

}

.brand-title{

    font-family:var(--font-heading);

    font-size:1.20rem;

    font-weight:700;

    color:var(--primary-color);

    line-height:1.2;

}

.brand-tagline{

    font-size:.82rem;

    color:var(--grey);

    line-height:1.2;

}


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

.navbar-nav{

    gap:8px;

}


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

.nav-link{

    position:relative;

    padding:10px 18px !important;

    font-weight:600;

    color:var(--dark);

    transition:var(--transition);

}

.nav-link:hover{

    color:var(--primary-color);

}


/* ==========================================================================
   ACTIVE LINK
========================================================================== */

.nav-link.active{

    color:var(--primary-color);

}

.nav-link.active::after{

    content:"";

    position:absolute;

    left:16px;

    right:16px;

    bottom:3px;

    height:3px;

    background:var(--secondary-color);

    border-radius:50px;

}


/* ==========================================================================
   CTA BUTTON
========================================================================== */

.navbar .btn{

    margin-left:25px;

}


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

.navbar-toggler{

    border:none;

    box-shadow:none;

    padding:8px;

}

.navbar-toggler:focus{

    box-shadow:none;

}


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

@media (max-width:991px){

    .navbar-collapse{

        margin-top:20px;

        padding:25px;

        background:var(--white);

        border-radius:var(--border-radius);

        box-shadow:var(--shadow-md);

    }

    .navbar-nav{

        gap:4px;

    }

    .navbar .btn{

        width:100%;

        margin:25px 0 0;

    }

    .brand-tagline{

        display:none;

    }

}


/* ==========================================================================
   ANIMATIONS
========================================================================== */

@keyframes slideDown{

    from{

        opacity:0;

        transform:translateY(-100%);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}