/* Reset and Theme Background */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #1e120c; /* Deep rustic wood tone to match image borders */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* Header Styles */
.main-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.header-title {
    width: 600px;
    height: auto;
    display: block;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

/* Horizontal 3x1 Menu Layout */
.menu-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px; /* Constrains the maximum row width for sharp presentation */
    padding: 0 10px;
}

.menu-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover feedback for the brass plaques */
.menu-item img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
}

/* Responsive Tweak for Smaller Screens (Stacks if display is too narrow) */
@media (max-width: 768px) {
    .menu-row {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .header-title {
        width: 100%;
    }
}
