/* Main styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Kaushan+Script&family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --Inter: 'Inter', sans-serif;
    --Kaushan: 'Kaushan Script', cursive;
    --Dancing-Script: 'Dancing Script', cursive;
    --Mont: 'Montserrat', sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.5;
    font-family: var(--Mont);
    background: #FFF4CF !important;
    color: #000;
}

img {
    width: 100%;
    display: block;
}

@keyframes fadeIn {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.menu {
    margin: 0 0;
}

ul {
    margin-bottom: 0px !important;
    padding-left: unset !important;
}

/* Food menu */

.menu-container {
    margin: 0 auto;
    padding: 0 1rem;
}

.special-offers {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.special-offer-item {
    height: auto;
}

.special-offer-item > img {
    display: block;
}

.food-items {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.food-item {
    border-radius: 30px;
    background: #F29393;
    color: #000;
    box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px;
    animation: fadeIn 2s;
    align-items: center;
    padding: 1rem;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
}

.food-img {
    width: 100%;
}

.food-img img {
    border-radius: 30px;
}

.food-content {
    padding: 1rem;
}

.food-name {
    font-family: var(--Mont);
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0.3rem;
}

.food-price {
    padding: 0.4rem 0;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.8;
}

@media screen and (min-width: 1300px) {
    .food-item {
        flex: 1 0 21%;
        margin: 2%;
        max-width: 20%;
    }
    .special-offer-item {
        flex: 1 0 21%;
        margin: 2%;
        max-width: 20%;
    }
    .menu-btns ul {
        display: block;
    }
}

@media screen and (max-width: 1300px) {
    .food-item {
        flex: 1 0 28%;
        margin: 2%;
        max-width: 28%;
    }
    .special-offer-item {
        flex: 1 0 28%;
        margin: 2%;
        max-width: 28%;
    }
    .menu-btns ul {
        display: block;
    }
}

@media screen and (max-width: 800px) {
    .food-item {
        flex: 1 0 40%;
        margin: 5%;
        max-width: 40%;
    }
    .special-offer-item {
        flex: 1 0 40%;
        margin: 5%;
        max-width: 40%;
    }
    .menu-btns ul {
        display: block;
    }
}

@media screen and (max-width: 500px) {
    .food-img img {
        height: 200px;
        width: auto;
        margin: auto;
    }
    .food-item {
        flex: 1 0 90%;
        margin: 5%;
        max-width: 90%;
    }
    .special-offer-item {
        flex: 1 0 90%;
        margin: 5%;
        max-width: 90%;
    }
    .menu-btns ul {
        display: flex;
    }
}

/* Menu header */

.logo img {
    width: 40%;
    margin: auto;
    padding: 0.9rem;
}

.menu-head {
    background: #f7981c;
    padding: 1rem 0rem 0.7rem 0rem;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .menu-head p {
        width: 50%;
    }
}

@media screen and (min-width: 768px) {
    .menu-head p {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

.language-select {
    width: 300px;
    margin: auto;
}

.language-select-text {
    background: rgba(165, 120, 129, 0.75) !important;
    display: block !important;
    border: none !important;
    width: 60%;
}

.language-select-select {
    width: 40%;
    text-align: center;
}

/* Menu buttons */

.category {
    font-family: var(--Inter);
    margin-top: 10px;
    text-align: center;
    padding-top: -0.0rem;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(24, 24, 24, 0.6)
}

.category span {
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .menu-btns ul::-webkit-scrollbar {
        display:none;
    }
}

.menu-btns ul li {
    display: inline-block;
    white-space: nowrap;
    width: auto;
    padding-bottom: 10px;
}

.menu-btns ul {
    overflow-x: auto;
    text-align: center;

    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.menu-btns ul::-webkit-scrollbar {
    display: none;
}

.menu-btns ul::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
}

.menu-btns ul::-webkit-scrollbar-thumb {
    background-color: #9D9D9D;
    -webkit-border-radius: 15px;
    -webkit-box-shadow: none;
}

.menu-btns ul::-webkit-scrollbar-thumb:window-inactive {
    background: none;
}

.menu-btns li {
    margin-right: 20px;
}

.menu-btn-icon {
    filter: brightness(2) invert(0);
}

.menu-btns {
    padding: 0.3rem 0;
    display: flex;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;

    position: sticky;
    top: 0;
    background-color: #f7981c;
    z-index: 9;
}

.menu-btn {
    font-family: var(--Inter);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    outline: 0;
    transition: opacity 0.4s ease-out;
    background-color: rgba(165, 120, 129, 0.75);
    border-radius: 20px;
    padding-block: 5px;
    padding-inline: 10px;
    align-items: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    width: 110%;

    display: flex;
    flex-wrap: nowrap;
}

.menu-btn-icon img {
    width: 50px;
    display: block;
    margin: auto;
    padding-right: 20%;
}

.menu-btn:hover {
    opacity: 0.8;
}

.active {
    color: rgb(255, 255, 255);
    background-color: #5A49B4;
    border-radius: 20px;
}