/* Main Site Header Styles (Fixed to top) */
header {
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, .9) 44%, rgba(0, 0, 0, 0.3) 73%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    padding: 0;
    
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 12vw;
    min-height: 5vh;
    max-height: 12vh;
}

header .inner {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

header .logo {
    position: absolute;
    left: 5vw;
    top: 0;
    width: 11vw;
    height: 15vw;
    min-width: 6vh;
    min-height: 6vh;
    max-width: 11vh;
    max-height: 15vh;
    z-index: 10;
    text-align: center;
    background-image: url('../../images/ribbon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
}

header .logo img {
    width: 70%;
    padding-top: 3vw;
}

header .tapbar {
    display: flex;
    align-items: center;
    height: 100%;
    flex-grow: 1;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: max(14vw, 12vh);
    min-width: 250px;
}

header .btn {
    font-family: 'Montserrat', sans-serif;;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .7);
    border-radius: 2em;
    margin-right: 0.2em;
    padding: 0.3em 1.6em;
    font-size: 1.4em;
    font-weight: 500;
    white-space: nowrap;
    min-width: 80px;
    min-height: 44px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 1s ease;
    outline: .1em solid rgba(255,255,255,0);
}

header .btn:hover {

    outline: .2em solid rgba(255,255,255,1);

}

header .btnselected {


    font-weight: 800;
    background-color: #ED0000;
    


}

/* Responsive Adjustments (from core.css and main.css) */
@media (max-width: 1024px) {
    header .btn {
        padding: 0.7em 1.6em;
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        min-height: 70px;
    }

    header .inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 10px;
    }

    header .logo {
        left: 4vw;
        min-height: 22vw;
        min-width: 16vw;

    }

    header .logo img {
        padding-top: 5vw;
    }

    header .tapbar {
        margin-left: max(25vw, 44px);
        gap: 5px;
        justify-content: center;
        min-width: 150px;
        padding-top: 5vw;
    }

    header .btn {
        padding: 0.5em 1.2em;
        font-size: 1.2em;
        min-width: unset;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    header .logo {
        left: 3.8vw;
        width: 24vw;
        height: 33vw;
    }

    header .tapbar {
        padding-top: 4vw;
        margin-left: max(30vw, 44px);
    }

    header .logo img {
        padding-top: 8vw;
    }

    header .btn {
        padding: 0.4em 1.2em;
        font-size: 1em;
        min-height: 38px;
    }
}

@media screen and (max-width: 1280px) {
    header .logo { left: 6%; width: 6rem; }
}

@media screen and (max-width: 980px) {
    header .logo { left: 6%; width: 6rem; }
}