@import url(styles.css);

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: fixed;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    background-color: rgba(235, 237, 247, 0.72);
    max-width: 1366px;
    width: 100%;
    top: 0;
    z-index: 999;
}

header div {
    
}

.header-logo img {
    height: 48px;
    width: 164px;
}

.header-menus {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-menus a {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}

.header-menus a:hover, .active {
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight: bold;
    transition: font-weight 0.2s ease;
}

.header-menus .active {
    text-decoration: underline;
    text-underline-offset: 5px;
    font-weight: bold;
    transition: font-weight 0.2s ease;
}

@media screen and (min-width: 320px) {
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        left: 0;
        padding: 16px;
    }

    .header-menus {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 90%;
    }

    .header-logo {
        width: 100%;
    }

    .header-logo img {
        height: 38px;
        width: 124px;
    }

    .header-menus a {
        font-size: 16px;
    }
}

@media screen and (min-width: 600px) {
    header {
        align-items: start;
    }

    .header-menus {
        justify-content: space-around;
        gap: 18px;
    }
}

@media screen and (min-width: 800px) {
    header {
        position: sticky;
    }

    .header-menus {
        gap: 14px;
    }

    .header-logo img {
        height: 42px;
        width: 132px;
    }

}

@media screen and (min-width: 1024px) {
    header {
        flex-direction: row;
        align-items: center;

    }
    
    .header-menus {
        gap: 16px;
        justify-content: end;
    }

    .header-logo {
        width: auto;
    }

    .header-logo img {
        height: 50px;
        width: 160px;
    }
}

@media screen and (min-width: 1300px) {
    .header-menus {
        gap: 24px;
    }

    .header-logo img {
        height: 48px;
        width: 164px;
    }
}