/* ==========================================================
   HEADER
========================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:60px;

    background:black;

    border-bottom:1px solid #262626;

    z-index:9999;

    transition:transform .35s ease;

}

.header.hide{

    transform:translateY(-100%);

}

.header-icon{height:40px;
    width:40px;   
}

/* ==========================================================
   CONTAINER
========================================================== */

.header-container{

    width:min(1200px,92%);

    height:100%;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/* ==========================================================
   LOGO
========================================================== */

.header-logo{

    color:#ffffff;

    text-decoration:none;

    font-size:28px;

    font-weight:bold;

}

/* ==========================================================
   NAVIGATION
========================================================== */

.header-navigation{

    display:flex;

    align-items:center;

    gap:40px;

}

/* ==========================================================
   LINK
========================================================== */

.header-link{

    position:relative;

    color:#ffffff;

    text-decoration:none;

    transition:.25s;

}

/* Hover */

.header-link:hover{

    color:crimson;

}

/* ==========================================================
   UNDERLINE
========================================================== */

.header-link::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-8px;

    width:0;

    height:2px;

    background:crimson;

    transition:.25s;

    transform:translateX(-50%);

}

.header-link:hover::after{

    width:100%;

}

/* ==========================================================
   ACTIVE
========================================================== */

.header-link.active{

    color:#ffffff;

}

.header-link.active::after{

    width:100%;

}

/* ==========================================================
   MENU BUTTON
========================================================== */

.header-menu-button{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:34px;

    cursor:pointer;

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    .header-menu-button{

        display:block;

    }

    .header-navigation{

        position:absolute;

        top:80px;

        left:0;

        width:100%;

        background:#111111;

        border-top:1px solid #222222;

        display:none;

        flex-direction:column;

        align-items:center;

        gap:30px;

        padding:30px 0;

    }

    .header-navigation.show{

        display:flex;

    }

}
