/* ============================================================
   HEADER
   ============================================================ */
body.admin-bar{
    header{
        top: 30px;
    }
}

body.transparent-menu {
    header {
        background: transparent;
    }
}

body.scroll-down{
    header {
        background: #222;
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    transition: all .3s ease, background .3s ease;
    background: #222;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gold-dim);
    .contact-links{
        img{
           max-width: 25px;
        }
    }
}

.header-inner {
    margin: 0 auto;
    padding: 10px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
    max-width: 1320px;
}

.site-logo {
    flex-shrink: 0;
}
.site-logo img,
.site-logo .custom-logo {
    height: 90px;
    width: auto;
    display: block;
}

#main-menu {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .header-inner {
        height: fit-content;
        padding: 10px 20px;
    }
}