.headerBanner {
    --color1: #f8eae9;
    --color2: #e78f87;
    --color3: #A72F2F;
    --color4: #5A1A1A;
    --bannerColor1: var(--color2);
    --bannerColor2: var(--color3);
    --bannerColor3: var(--color4);
    --titleBannerBorderWidth: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: fit-content;
    user-select: none;
    z-index: 1000;
    margin-bottom: 12px;
}

.titleBanner {
    font-family: beaufort-pro;
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 64px 0px 32px;
    position: relative;
    gap: var(--titleBannerBorderWidth);
    z-index:10;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
}

.titleBanner::after {
    position: absolute;
    display: block;
    content: "";
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bannerColor2);
    border: none;
    border-top: var(--titleBannerBorderWidth) solid var(--bannerColor3);
    border-bottom: var(--titleBannerBorderWidth) solid var(--bannerColor3);
    clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 50%, 100% 100%, 100% 300%, 0 300%, 0% 100%);
    z-index: -1;
    box-sizing: border-box;
}

.menuBars{
    font-size: 32px;
    display:none;
}

.titleText {
    font-family: beaufort-pro;
    font-size: 36px;
    font-weight: 900;
    color: white;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
    padding: 8px 0px;
    text-transform: uppercase;
}

.titleText:hover {
    transform: translateY(-3px);
}

.bannerButtons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0px;
    align-items: stretch;
    max-width: 95%;
    z-index:10;
    padding-right: 24px;
}

.menuButton {
    font-family: beaufort-pro;
    font-size: 18px;
    line-height: 18px;
    font-weight: 900;
    color: white;
    text-align: center;
    text-transform: uppercase;
    opacity: 1;
    cursor: pointer;
    display:flex;
    justify-content: center;
    align-items: center;
    gaP: 8px;
    border: none;
    border-left: 1px solid var(--bannerColor2);
    border-right: 1px solid var(--bannerColor2);
    padding: 4px 16px;
    text-decoration: underline rgba(255, 255, 255, 0);
    transition: 0.2s;

}
.menuButton img, .menuButton i{
    width: 18px;
    aspect-ratio: 1 / 1;
}
.menuButton img{
    border-radius: 100%;
}

.menuButton:first-of-type{
    border-left-width: 2px;
}
.menuButton:last-of-type{
    border-right-width: 2px;
}
.menuButton.disabled {
    opacity: 0.5 !important;
    pointer-events: none;
}

.menuButton:hover {
    opacity: 1;
    background: var(--bannerColor2);
}

.menuButton.hidden{
    display:none;
}


@media (min-width:501px){
    #bannerButtons{
        display:flex !important;
    }
}

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

    .nimbrewBanner{
        padding: 0px;
        width:100vw;
        margin: 0px;
        gap: 0px;
        margin-bottom: 24px;
    }

    .titleBanner {
        height:100%;
        width:100%;
        justify-content: space-between;
        padding: 0 8px 0 32px;
    }

    .titleBanner::after{
        border-top: none;
        clip-path:none;
        height:100%;
    }

    .titleText{
        padding:0;
        padding-bottom: var(--titleBannerBorderWidth)
    }

    .menuBars{
        display: block;
    }

    .bannerButtons {
        position:absolute;
        right: 0;
        top: 100%;
        z-index: 10;
        width: fit-content;
        height: 100vh;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        background: var(--bannerColor3);
        border-left: 5px solid var(--bannerColor2);
    }

    .bannerButtons::before{
        clip-path: none;
        display:none;
    }
    .menuButton{
        text-align: unset;
        justify-content: flex-start;
        padding: 12px 64px 12px 16px;
        border: 0;
        border-top: 1px solid var(--bannerColor2);
        border-bottom: 1px solid var(--bannerColor2);
    }
    .menuButton:first-of-type{
        border-top-width: 0px;
    }
    .menuButton:last-of-type{
        border-bottom-width: 2px;
    }
    .redLine{
        display:none;
    }
}



.redLine {
    width: 100vw;
    height: 30px;
    left:0;
    background: var(--bannerColor3);
    position: absolute;
    z-index: -4;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
}

