@font-face {
    font-family: "main";
    src: url("../media/BoringSansBold.ttf");
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif; /* Using Inter as a fallback/primary if 'main' isn't loaded */
    overflow: hidden; /* Prevent scrolling */
}

* {
    font-family: "main", "Inter", Arial, Helvetica, sans-serif; /* Prioritize 'main' font */
    color: #7e7e7e;
    user-select: none;
}

li {
    list-style: none;
}

.background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.item-description {
    background-color: rgba(0, 0, 0, 0.7); /* slightly more transparent for a cleaner overlay */
    color: #ccc; /* light gray text for contrast */
    position: fixed;
    bottom: 0;
    height: 90px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    text-shadow: 1px 1px 2px black;
}



.menu-box {
    width: calc(100px - 100vw);
    display: flex;
    height: 100vh;
    flex-direction: column;
}


.menu-list {
    margin-top: 100px;
    margin-left: 100px;
}

.text-shadow-lg {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.menu-item {
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 23px;
    text-wrap: wrap;
    width: 300px;
    margin-bottom: 2px;
}

.menu-separator {
    margin-bottom: 30px;
}

.menu-item:hover {
    cursor: pointer;
    color: white;
}

.options-box {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ccc;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 70vh;
    min-height: 400px;
    max-height: 800px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 600;
    font-size: 1.1rem;
}

.options-option {
    width: 700px;
    min-width: 365px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 20px;
    border-color: #a40404;
    transform: scale(1.1);
}

.options-option:hover {
    padding: 0px;
    border-top: 1px solid #a40404;
    border-bottom: 1px solid #a40404;
}

.options-option:hover label {
    color: white;
}

.menu-titleheader {
    background-color: rgba(0, 0, 0, 0.7);
    color: #ccc;
    position: fixed;
    top: 0;
    height: 90px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size:32px;
    text-align: center;
    text-shadow: 1px 1px 2px black;
    margin-top: 20px;
}
