.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
}

.header-container {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container img {
    width: 72px;
    display: block;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.navbar a:hover {
    color: #d4af37;
}

@media (max-width: 768px) {
    .header-container {
        min-height: 90px;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
    }

    .navbar ul {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-container img {
        width: 56px;
    }
}

@media (max-width: 768px){

    .header-container{
        flex-direction: column;
        gap: 20px;
    }

    .logo-container{
        justify-content: center;
    }
}