/* Dark Theme & Clean Look */
:root {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-color: #e0e0e0;
    --accent-color: #d35400; /* Burnt Orange */
    --accent-hover: #e67e22;
    --input-bg: #2c2c2c;
    --border-color: #444;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px; /* Single column, mobile-friendly */
    padding: 40px 20px;
    box-sizing: border-box;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-family: 'Playfair Display', serif; /* Elegant font for title */
    font-size: 3rem;
    color: var(--accent-color);
    margin: 0;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1rem;
    color: #888;
    margin-top: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

section {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    border: 1px solid #333;
}

h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* Menu Styles */
#menu-date {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
    color: #bbb;
}

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

#menu-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    line-height: 1.5;
}

#menu-list li:last-child {
    border-bottom: none;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #aaa;
    font-size: 0.9rem;
}

input, textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

button {
    width: 100%;
    padding: 14px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

button:hover {
    background-color: var(--accent-hover);
}

button:active {
    transform: scale(0.98);
}

footer {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 50px;
}
