#navbar {
    box-sizing: border-box;
    z-index: 1001;
    position: fixed;
    top: 0;
    left: 0; right: 0;
    padding: 12px;
    transition: 0.3s linear all;
    max-height: 124px;
}

#navbar.shrink {
    background-color: #a91b44;
    padding: 12px 0;
    box-shadow: 0 0 20px #3e3e3e;
}
#navbar.shrink .container img { transition: 0.5s ease; max-height: 40px; }

#navbar .container img { max-height: 100px; }

#navbar .flex-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#navbar .flex-navbar .mobileMenu { display: none; }

.flex-navbar ul {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.flex-navbar ul li a {
    transition: 0.2s ease;
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-family: 'vitessebold', sans-serif;
    cursor: pointer;
}

.flex-navbar ul li a:hover {
    color: #f7aa4d;
}

.dropDownParent .dropDownButton * {
    transition: all 0.3s ease;
}

.dropDownParent {
    display: inline-block;
    position: relative;
}

.dropDownParent .rotated {
    transform: rotate(180deg);
}

.dropDownLinks li a {
    color: black !important;
    font-family: 'vitessebook', sans-serif !important;
    font-size: 1.1rem !important;
}
.dropDownLinks li a:hover {
    color: #f7aa4d !important;
}


.dropDown {
    position: absolute;
    margin-top: 8px;
    padding: 20px;
    border-radius: 8px;
    background: white;
    height: auto;
    min-width: 200px;
}

.dropDown.dropDownRight {
    left: auto;
    right: 0;
}

@media screen and (max-width: 1199px) {
    .flex-navbar ul li a { font-size: 20px; }
}

@media screen and (max-width: 991px) {
    .flex-navbar .flex-nav {
        display: none;
    }

    #navbar .flex-navbar .mobileMenu { display: block; }

    #menuButton {
        font-size: 30px;
        background: #a91b44;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        border: none;
        transition: all ease 0.2s;
    }

    #menuButtonClose {
        font-size: 32px;
        background: none;
        color: white;
        border: none;
    }

    #menuButton.shrink_menuButton {
        background: none;
        border-radius: 0;
        width: auto;
        height: auto;
    }

    .mobileMenu .menu {
        padding: 20px;
        transition: 0.4s ease;
        background-color: #960A31;
        position: fixed;
        right: -300px;
        top: 0;
        bottom: 0;
        width: 300px;
        overflow-y: auto;
    }

    .dropDownParentMobile .dropDownButtonMobile * {
        transition: all ease 0.3s;
    }

    .dropDownParentMobile .rotated {
        transform: rotate(180deg);
    }

    .dropDownMobile {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 20px;
        border-radius: 12px;
        margin-right: -5px;
        margin-top: 10px;
    }

    #reserverenMobileButton {
        background-color: #f7aa4d;
        border: none;
        padding: 1px 10px;
        border-radius: 99px;
    }
}