body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000; /* Sets the entire page background to black */
    color: #fff; /* Default text color is white for high contrast */
}

.header {
    display: flex;
    justify-content: space-between; /* Aligns logos with space between them */
    align-items: center; /* Centers logos vertically */
    padding: 10px 20px; /* Adds padding around the edges */
}

.left-logo, .center-logo{
    width: 15%; /* Adjusts the size of logos */
    height: auto; /* Keeps aspect ratio intact */
}

.right-logo {
    width: 13%; /* Adjusts the size of logos */
    height: auto; /* Keeps aspect ratio intact */
}

.menu-item {
    margin: 10px;
    background-color: #222; /* Dark grey for the menu items, softer than black */
    border-radius: 8px;
    overflow: hidden; /* Ensures child elements are hidden during animation */
}

.parent {
    padding: 10px;
    font-size: 20px;
    color: #008; /* White text for contrast */
    background-color: #ff8c00; /* Vibrant orange background for parent items */
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s; /* Smooth background color transition */
    text-align: center; /* Centers the text of parent items */
    font-weight: bolder;
}

.parent:hover {
    background-color: #ffa500; /* Lighter orange when hovered for interactive feedback */
}

.child {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background-color: #333; /* Dark grey, contrasting with the orange parent */
}

.child div {
    padding: 10px;
    margin: 5px 0;
    color: #ccc; /* Soft white for submenu items */
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.child div:hover {
    color: #fff; /* Bright white on hover to emphasize selection */
}

.price {
    margin-left: auto;
    font-weight: bold;
    color: #ff8c00; /* Orange color for prices, matching the parent items */
}
