
/*
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    flex: 1;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    max-height: 90vh;
}

section {
    padding: 40px 20px;
    text-align: center;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.menu-category {
    border: 1px solid #ccc;
    padding: 15px;
    width: 30%;
    min-width: 200px;
    background: #f9f9f9;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

form input,
form button {
    padding: 10px;
    font-size: 1em;
}

form button {
    background: #ffcc00;
    border: none;
    cursor: pointer;
}
 */


html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #fffbe6 0%, #ffe082 100%);
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    flex: 1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 24px;
    background: #fffbe6;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1.5px 6px rgba(0,0,0,0.03);
}

/* Sections */
section {
    padding: 48px 20px 32px 20px;
    text-align: center;
    border-radius: 16px;
    background: #fffde7;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(255,204,0,0.08);
}

/* Menu */
.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.menu-category {
    border: none;
    border-radius: 14px;
    padding: 22px 18px;
    width: 280px;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(255,204,0,0.13);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1.08em;
}

.menu-category:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(255,204,0,0.22);
    background: #fffde7;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(255,204,0,0.10);
}

form input,
form button {
    padding: 12px;
    font-size: 1.08em;
    border-radius: 8px;
    border: 1.5px solid #ffe082;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

form input:focus {
    border-color: #ffcc00;
    box-shadow: 0 0 0 2px #ffecb3;
}

form button {
    background: linear-gradient(90deg, #ffcc00 60%, #ffe082 100%);
    border: none;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(255,204,0,0.13);
}

form button:hover {
    background: linear-gradient(90deg, #ffe082 60%, #ffcc00 100%);
    color: #222;
    transform: translateY(-2px) scale(1.03);
}