@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: Inter;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

body {
    margin: 0;
}

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

.menu-container {
    position: relative;
    width: 100%;
    height: 600px;
    /* 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;
}

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

.menu-details {
    width: 100%;
    height: fit-content;
    padding: 40px 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; /* spacing between the two selects */
}

.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: 30px;
    margin-top: 40px;
}

.menu-item {
    border: 1px solid #ff9c3c;
    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: #ff6a00;
    color: white;
    padding: 6px 16px;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    width: fit-content;
}