/**
* Header CSS Styles.
* Source Development: Max Tantser
* Date Creation: 28 April 2023
* © ModernCode
*/

header {
    position: fixed;
    height: var(--header-height);
    width: 100%;
    z-index: 100;
    padding-left: 1rem;
    padding-right: 1.35rem;

    background-color: white;

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

    -webkit-box-shadow: 0 16px 32px -16px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.1);
    box-shadow: 0 16px 32px -16px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.1);
}

.header-wrapper {
    height: 100%;
}

.header-logo, .header-button-theme, .header-button-git {
    width: 45px;
    height: 45px;
    cursor: pointer;
}

.header-logo {
    background: url(../images/logo/logo-mc-60.png) no-repeat;
    background-size: cover;
}

.header-button-theme, .header-button-git {
    border-radius: 20px;
    padding: 13px 20px;
}

.header-button-theme {
    background: url(../images/misc/btn_colortheme30.png) center no-repeat;
}

.header-button-git {
    background: url(../images/misc/btn_git30.png) center no-repeat;
}

.header-title {
    font-family: 'MontserratBold', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 17px;
    letter-spacing: 1px;
    padding-left: 12px;
    color: black;
    cursor: pointer;
}

.header-button {
    font-family: 'MontserratMedium', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    color: var(--header-title-color);
    border-radius: 20px;
    cursor: pointer;

    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;

    margin-right: 7px;
    padding: 13px 20px;
}

.header-button:hover, .header-button-theme:hover, .header-button-git:hover {
    background-color: var(--back-light-color);
}

.header-button-active {
    color: var(--header-button-title-color);
    background-color: var(--header-button-light-color);
}

/*----------------------------------------------Media Screen Requests-------------------------------------------------*/

@media screen and (max-width: 1690px) {
    .header-button {
        font-size: 14px;
        margin-right: 6px;
        padding: 13px 18px;
    }
}

@media screen and (max-width: 1470px) {
    .header-button {
        font-size: 13px;
        margin-right: 5px;
        padding: 13px 16px;
    }
}

@media screen and (max-width: 1024px) {

}

/*--------------------------------------------------------------------------------------------------------------------*/
