/* Kitchen Theme Styles */
body {
    background-color: #f4f1ea; /* Light cream/flour color */
    background-image: 
        radial-gradient(#d3cabd 1px, transparent 1px),
        radial-gradient(#d3cabd 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    font-family: 'Courier New', Courier, monospace; /* Recipe-style font */
    color: #4a3f35; /* Dark roast brown */
    margin: 0;
    padding: 20px;
}

h2, h3, h4 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #c0392b; /* Tomato red */
    border-bottom: 2px dashed #e67e22; /* Carrot orange */
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 2px solid #bdc3c7; /* Stainless steel gray */
}

th {
    background-color: #34495e; /* Cast iron black */
    color: #ecf0f1; /* Clean tile white */
    padding: 12px;
    text-align: left;
    border: 1px solid #2c3e50;
}

td {
    padding: 10px;
    border: 1px solid #ecf0f1;
    border-bottom: 1px solid #bdc3c7;
}

tr:nth-child(even) {
    background-color: #f9f9f9; /* Chalkboard dust */
}

tr:hover {
    background-color: #faecc9; /* Butter yellow */
}

.burger-menu, .burger-stack {
    background-color: #fffdf7; /* Parchment paper */
    border: 2px solid #d35400; /* Burnt orange / Oven rust */
    box-shadow: 5px 5px 0px #bdc3c7; /* Retro diner depth */
    border-radius: 8px;
    padding: 20px;
}

.burger-stack img {
    filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, 0.4)); /* Make ingredients "pop" */
}

/* Comments Section - Like order tickets */
.comments-section {
    background-color: #fffacd; /* Lemon chiffon / Post-it color */
    border: 1px solid #e1c699;
    border-left: 5px solid #27ae60; /* Fresh basil green */
    padding: 15px;
    border-radius: 4px;
    font-family: 'Comic Sans MS', cursive, sans-serif; /* Handwriting aesthetic */
}

.comment {
    background: transparent;
    border: none;
    border-bottom: 1px dashed #d1bfae;
    padding: 10px 0;
    margin: 0;
}

.comment-form input, .comment-form textarea {
    background-color: #fff;
    border: 2px inset #bdc3c7; /* Steel pan rim */
    font-family: inherit;
}

.comment-form button {
    background-color: #e67e22; /* Cheddar cheese */
    color: white;
    font-weight: bold;
    border: 2px solid #d35400;
    text-transform: uppercase;
    box-shadow: 2px 2px 0px #a04000;
}

.comment-form button:hover {
    background-color: #d35400;
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #a04000;
}

footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #34495e; /* Cast iron */
    color: #ecf0f1;
    text-align: center;
    border-top: 4px solid #c0392b; /* Tomato red */
}

