@media screen and (min-width: 300px) {

    .topper {
        width: 100%;
        height: 100px;
        background-color: #161616;
    }

    .menu-container {
        position: relative;
        width: 100%;
        height: 300px;
        /* adjust as needed */
        background:
            linear-gradient(to bottom, rgba(25, 11, 3, 0.6) 0%, #190B03 90%),
            url('../image/menu-head.png') center/cover no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 10px 20px;
    }

    .logo {
        height: auto;
        z-index: 2;
    }

    .menu-details {
        width: 100%;
        height: fit-content;
        padding: 20px 10px 20px 10px;
        background-color: #161616;

    }

    .details-cont {
        width: 100%;
        height: fit-content;
        background-color: #000000;
        padding: 40px 15px 15px;
    }

    .menu-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
        padding: 0px 20px;
    }

    .menu-title h1 {
        font-size: 2.5em;
        margin: 0;
        color: white;
        white-space: nowrap;
        font-weight: 800;
    }

    .menu-title .line {
        flex: 1;
        height: 2px;
        background-color: orange;
    }

    .notice {
        text-align: center;
        margin-top: 10px;
        font-weight: bold;
        color: #e1a655;
    }

    .custom-tabs {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        gap: 5px;
    }

    .tab-box {
        padding: 10px 30px;
        font-weight: bold;
        cursor: pointer;
        font-size: 16px;
        border: 2px solid transparent;
        background-color: #1e1e1e;
        color: #ffb347;
        transition: all 0.3s ease;
        min-width: 170px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        text-align-last: center;
        /* center selected text */
        background-image:
            linear-gradient(45deg, transparent 50%, #ffb347 50%),
            linear-gradient(135deg, #ffb347 50%, transparent 50%),
            linear-gradient(to right, #1e1e1e, #1e1e1e);
        background-position:
            calc(100% - 20px) calc(1em + 2px),
            calc(100% - 15px) calc(1em + 2px),
            calc(100% - 25px) 0.5em;
        background-size: 5px 5px, 5px 5px, 1px 1.5em;
        background-repeat: no-repeat;
    }

    .tab-box:hover {
        background-color: #2a1505;
        color: #ffb347;
        border-color: #ffb347;
    }

    .tab-box:focus {
        outline: none;
        border-color: #ffb347;
        background-color: #2a1505;
        color: #ffb347;
    }

    .tab-box.active-tab {
        outline: none;
        border-color: #ffb347;
        background-color: #2a1505;
        color: #ffb347;
    }


    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 10px;
        margin-top: 40px;
    }

    .menu-item {
        border: 1px solid #CF983E;
        padding: 20px;
        background-color: #121212;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 120px;
    }

    .menu-item h3 {
        margin: 0 0 5px 0;
        font-size: 1.2em;
        color: white;
    }

    .menu-item p {
        font-size: 12px;
        color: #ccc;
    }

    .price {
        margin-top: 15px;
        background-color: #CF983E;
        color: white;
        padding: 6px 16px;
        font-weight: bold;
        display: inline-block;
        border-radius: 4px;
        width: fit-content;
    }
}

@media screen and (min-width: 700px) {

    .topper {
        width: 100%;
        height: 100px;
        background-color: #161616;
    }

    .menu-container {
        position: relative;
        width: 100%;
        height: 300px;
        /* adjust as needed */
        background:
            linear-gradient(to bottom, rgba(25, 11, 3, 0.6) 0%, #190B03 90%),
            url('../image/menu-head.png') center/cover no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 10px 20px;
    }

    .logo {
        height: auto;
        z-index: 2;
    }

    .menu-details {
        width: 100%;
        height: fit-content;
        padding: 20px 30px 20px 30px;
        background-color: #161616;

    }

    .details-cont {
        width: 100%;
        height: fit-content;
        background-color: #000000;
        padding: 40px 25px 25px;
    }

    .menu-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
        padding: 0px 20px;
    }

    .menu-title h1 {
        font-size: 2.5em;
        margin: 0;
        color: white;
        white-space: nowrap;
        font-weight: 800;
    }

    .menu-title .line {
        flex: 1;
        height: 2px;
        background-color: orange;
    }

    .notice {
        text-align: center;
        margin-top: 10px;
        font-weight: bold;
        color: #e1a655;
    }

    .custom-tabs {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        gap: 5px;
    }

    .tab-box {
        padding: 10px 30px;
        font-weight: bold;
        cursor: pointer;
        font-size: 16px;
        border: 2px solid transparent;
        background-color: #1e1e1e;
        color: #ffb347;
        transition: all 0.3s ease;
        min-width: 170px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        text-align-last: center;
        /* center selected text */
        background-image:
            linear-gradient(45deg, transparent 50%, #ffb347 50%),
            linear-gradient(135deg, #ffb347 50%, transparent 50%),
            linear-gradient(to right, #1e1e1e, #1e1e1e);
        background-position:
            calc(100% - 20px) calc(1em + 2px),
            calc(100% - 15px) calc(1em + 2px),
            calc(100% - 25px) 0.5em;
        background-size: 5px 5px, 5px 5px, 1px 1.5em;
        background-repeat: no-repeat;
    }

    .tab-box:hover {
        background-color: #2a1505;
        color: #ffb347;
        border-color: #ffb347;
    }

    .tab-box:focus {
        outline: none;
        border-color: #ffb347;
        background-color: #2a1505;
        color: #ffb347;
    }

    .tab-box.active-tab {
        outline: none;
        border-color: #ffb347;
        background-color: #2a1505;
        color: #ffb347;
    }


    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 10px;
        margin-top: 40px;
    }

    .menu-item {
        border: 1px solid #CF983E;
        padding: 20px;
        background-color: #121212;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 120px;
    }

    .menu-item h3 {
        margin: 0 0 5px 0;
        font-size: 1.2em;
        color: white;
    }

    .menu-item p {
        font-size: 12px;
        color: #ccc;
    }

    .price {
        margin-top: 15px;
        background-color: #CF983E;
        color: white;
        padding: 6px 16px;
        font-weight: bold;
        display: inline-block;
        border-radius: 4px;
        width: fit-content;
    }
}

@media screen and (min-width: 1100px) {

    .topper {
        width: 100%;
        height: 110px;
        background-color: #161616;
    }

    .menu-container {
        position: relative;
        width: 100%;
        height: 400px;
        /* adjust as needed */
        background:
            linear-gradient(to bottom, rgba(25, 11, 3, 0.6) 0%, #190B03 90%),
            url('../image/menu-head.png') center/cover no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 10px 20px;
    }

    .logo {
        height: auto;
        z-index: 2;
    }

    .menu-details {
        width: 100%;
        height: fit-content;
        padding: 30px 80px 20px 80px;
        background-color: #161616;

    }

    .details-cont {
        width: 100%;
        height: fit-content;
        background-color: #000000;
        padding: 40px 50px 50px;
    }

    .menu-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
        padding: 0px 20px;
    }

    .menu-title h1 {
        font-size: 2.5em;
        margin: 0;
        color: white;
        white-space: nowrap;
        font-weight: 800;
    }

    .menu-title .line {
        flex: 1;
        height: 2px;
        background-color: orange;
    }

    .notice {
        text-align: center;
        margin-top: 10px;
        font-weight: bold;
        color: #e1a655;
    }

    .custom-tabs {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        gap: 5px;
    }

    .tab-box {
        padding: 10px 40px;
        font-weight: bold;
        cursor: pointer;
        font-size: 16px;
        border: 2px solid transparent;
        background-color: #1e1e1e;
        color: #ffb347;
        transition: all 0.3s ease;
        min-width: 180px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        text-align-last: center;
        /* center selected text */
        background-image:
            linear-gradient(45deg, transparent 50%, #ffb347 50%),
            linear-gradient(135deg, #ffb347 50%, transparent 50%),
            linear-gradient(to right, #1e1e1e, #1e1e1e);
        background-position:
            calc(100% - 20px) calc(1em + 2px),
            calc(100% - 15px) calc(1em + 2px),
            calc(100% - 25px) 0.5em;
        background-size: 5px 5px, 5px 5px, 1px 1.5em;
        background-repeat: no-repeat;
    }

    .tab-box:hover {
        background-color: #2a1505;
        color: #ffb347;
        border-color: #ffb347;
    }

    .tab-box:focus {
        outline: none;
        border-color: #ffb347;
        background-color: #2a1505;
        color: #ffb347;
    }

    .tab-box.active-tab {
        outline: none;
        border-color: #ffb347;
        background-color: #2a1505;
        color: #ffb347;
    }


    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 10px;
        margin-top: 40px;
    }

    .menu-item {
        border: 1px solid #CF983E;
        padding: 20px;
        background-color: #121212;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 120px;
    }

    .menu-item h3 {
        margin: 0 0 5px 0;
        font-size: 1.2em;
        color: white;
    }

    .menu-item p {
        font-size: 12px;
        color: #ccc;
    }

    .price {
        margin-top: 15px;
        background-color: #CF983E;
        color: white;
        padding: 6px 16px;
        font-weight: bold;
        display: inline-block;
        border-radius: 4px;
        width: fit-content;
    }
}

@media screen and (min-width: 1200px) {

    .topper {
        width: 100%;
        height: 110px;
        background-color: #161616;
    }

    .menu-container {
        position: relative;
        width: 100%;
        height: 450px;
        /* adjust as needed */
        background:
            linear-gradient(to bottom, rgba(25, 11, 3, 0.6) 0%, #190B03 90%),
            url('../image/menu-head.png') center/cover no-repeat;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 10px 20px;
    }

    .logo {
        height: auto;
        z-index: 2;
    }

    .menu-details {
        width: 100%;
        height: fit-content;
        padding: 30px 80px 40px 80px;
        background-color: #161616;

    }

    .details-cont {
        width: 100%;
        height: fit-content;
        background-color: #000000;
        padding: 40px 60px 60px;
    }

    .menu-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
        padding: 0px 20px;
    }

    .menu-title h1 {
        font-size: 2.5em;
        margin: 0;
        color: white;
        white-space: nowrap;
        font-weight: 800;
    }

    .menu-title .line {
        flex: 1;
        height: 2px;
        background-color: orange;
    }

    .notice {
        text-align: center;
        margin-top: 10px;
        font-weight: bold;
        color: #e1a655;
    }

    .custom-tabs {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        gap: 5px;
    }

    .tab-box {
        padding: 10px 40px;
        font-weight: bold;
        cursor: pointer;
        font-size: 16px;
        border: 2px solid transparent;
        background-color: #1e1e1e;
        color: #ffb347;
        transition: all 0.3s ease;
        min-width: 180px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        text-align-last: center;
        /* center selected text */
        background-image:
            linear-gradient(45deg, transparent 50%, #ffb347 50%),
            linear-gradient(135deg, #ffb347 50%, transparent 50%),
            linear-gradient(to right, #1e1e1e, #1e1e1e);
        background-position:
            calc(100% - 20px) calc(1em + 2px),
            calc(100% - 15px) calc(1em + 2px),
            calc(100% - 25px) 0.5em;
        background-size: 5px 5px, 5px 5px, 1px 1.5em;
        background-repeat: no-repeat;
    }

    .tab-box:hover {
        background-color: #2a1505;
        color: #ffb347;
        border-color: #ffb347;
    }

    .tab-box:focus {
        outline: none;
        border-color: #ffb347;
        background-color: #2a1505;
        color: #ffb347;
    }

    .tab-box.active-tab {
        outline: none;
        border-color: #ffb347;
        background-color: #2a1505;
        color: #ffb347;
    }


    .menu-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 40px;
    }

    .menu-item {
        border: 1px solid #CF983E;
        padding: 20px;
        background-color: #121212;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 170px;
    }

    .menu-item h3 {
        margin: 0 0 10px 0;
        font-size: 1.2em;
        color: white;
    }

    .menu-item p {
        font-size: 0.95em;
        color: #ccc;
    }

    .price {
        margin-top: 15px;
        background-color: #CF983E;
        color: white;
        padding: 6px 16px;
        font-weight: bold;
        display: inline-block;
        border-radius: 4px;
        width: fit-content;
    }
}