* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url('bg1.jpeg') no-repeat center right fixed;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.main-overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
}

.view-overlay {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Landing Page Styling */
.welcome-text-section {
    text-align: center;
    color: white;
    padding: 0 20px;
}

.brand-main-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.welcome-intro { color: #ff9800; font-style: italic; }

.action-btn-gradient {
    background: linear-gradient(to right, #ff5722, #ff9800);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

/* Menu Page Styling */
#menu-page {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    padding: 40px 15px;
}

.menu-content-wrapper {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-page-title {
    color: #ff9800;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* THE "BIG BOX" CARD FIX */
.menu-item-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    padding: 15px;
    border-radius: 18px;
    margin-bottom: 20px;
    width: 100%;
    height: auto; /* Box expands to fit text */
    min-height: 120px;
}

.item-image {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #ff9800;
}

.item-card-info {
    margin-left: 15px;
    text-align: left;
    flex: 1; /* Pushes text to take all space */
}

.item-name { color: #ff9800; font-size: 1.1rem; font-weight: 600; }
.item-desc { 
    color: #fff; 
    font-size: 0.85rem; 
    line-height: 1.4; 
    margin: 4px 0; 
    white-space: normal; /* Forces text to wrap */
}
.item-price { color: #ff9800; font-weight: 800; font-size: 1.1rem; }

.hidden { display: none !important; }

/* Desktop Adjustment */
@media screen and (min-width: 768px) {
    #landing-page .welcome-text-section { text-align: left; padding-left: 8%; }
    .view-overlay { align-items: flex-start; }
}