/* Message Styles */
.message {
    background-color: #dff0d8; /* Light green background */
    color: #3c763d; /* Dark green text */
    border: 1px solid #d6e9c6; /* Border color */
    padding: 10px;
    margin: 20px auto;
    width: 80%;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    display: block; /* Ensure the message is displayed */
}

/* General Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #333;
}

header h1 {
    font-size: 2.5em;
    color: #d9534f;
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}



/* Menu Styles */
.menu-category {
    margin-bottom: 30px;
}

.menu-category h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #d9534f;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    padding: 15px 0;
    border-bottom: 1px dotted #ddd;
}

.menu-item-content {
    display: flex; /* Use flexbox to align media and details */
    align-items: flex-start; /* Align items at the top */
    gap: 15px; /* Space between media and details */
}

.item-media {
    flex: 0 0 100px; /* Fix the width of media */
    margin-right: 15px; /* Space between media and details */
}

.item-media img,
.item-media video {
    width: 100px; /* Uniform width */
    height: 100px; /* Uniform height */
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 2px solid #ddd;
}

.item-details {
    flex: 1; /* Take up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.item-price {
    font-size: 1em;
    color: #ff8c00;
    margin-bottom: 5px;
}

.item-description {
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    .menu-item-content {
        flex-direction: column; /* Stack media and details vertically on small screens */
        align-items: center; /* Center align on mobile */
    }

    .item-media {
        margin-right: 0;
        margin-bottom: 10px; /* Add space below media on mobile */
    }

    .item-details {
        text-align: center; /* Center text on mobile */
    }

    .item-name {
        font-size: 1.1em;
    }

    .item-description {
        font-size: 0.8em;
    }
}
