/*header*/

html {
    scroll-padding-top: 136px;
}

#header {
    background-image: url("../images/menu.jpeg");
    background-color: rgba(0, 0, 0, 0.60);
    background-blend-mode: overlay;
    background-position: center;
    background-size: cover;
    padding-top: 75px;

    display: flex;
    height: 753px;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.header_logo {
    width: 120px;
    flex-shrink: 0;
    background-position: center;
    background-size: cover;
}

.header_text {
    display: flex;
    width: 442px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

/* Style the tab */
.tab {
    display: flex;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    /*padding: 15px 30px;
    text-align: center;
    flex-grow: 1;
    border-radius: 10px 10px 0px 0px;
    background-color: #fff;
    border: 0px;
    font-size: 32px;
    font-family: sen, sans-serif;
    font-weight: bold;*/

    padding: 15px 30px;
    text-align: center;
    flex-grow: 1;
    border-radius: 10px 10px 0px 0px;
    background-color: #F6E1C6;
    border: 0px;
    color: #141414;
    text-align: center;
    font-family: Figtree, sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.6px;
    margin: 0px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #FF5E16;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #141414;
    color: #F6E1C6;
}

/* Style the tab content */
.tabcontent {
    /*display: none;
    padding: 50px 50px 0px 50px;
    width: 940px;*/

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    justify-items: center;
}

/* Menu Styles */

/*#menu {
    display: flex;
    width: 940px;
    align-items: flex-start;
    align-content: flex-start;
    gap: 100px;
    flex-wrap: wrap;
}*/

/*.menu-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
    gap: 50px;
    border-bottom: 2px solid #F6E1C6;
    margin-bottom: 50px;
}
*/

#menu {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding-top: 200px;
    padding-bottom: 100px;
}

.menu-item {
    display: flex;
    width: 420px;
    padding-bottom: 30px;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
    border-bottom: 2px solid #F6E1C6;
}

.menu-item-heading {
    display: flex;
    justify-content: space-between;

    p {
        font-weight: 700;
        margin-bottom: 0px;
        line-height: normal;
    }
}



/*
.menu-price {
    display: flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #3495ee;
    color: #fff;
    font: sen, sans-serif;
    font-size: 32px;
}
    */

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

    /* Global */

    /*header*/
    .header_p {
        max-width: 260px;
    }

    /*menu*/
    #menu {
        padding-top: 95px;
        padding-bottom: 60px;
    }

    .menu-item {
        width: 340px;

        .menu-item-heading {
            p {
                font-size: 16px;
            }
        }
    }

    .tabcontent {
        display: flex;
        grid: none;
        flex-direction: column;
        justify-items: center;
        gap: 70px;
    }

    .tab button{
        font-size: 16px;
        border-radius: 7px 7px 0px 0px;
        padding: 8px 20px;
    }
    
}