/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #fafafa;
    color: #333;
    line-height: 1.5;
    padding-bottom: 60px;
}

/* Header */
.menu-header {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.menu-header .logo {
    width: 120px;
    border-radius: 50%;
}

.menu-header h1 {
    margin: 10px 0;
    font-size: 1.8rem;
    color: #1940f1;
}

.table-info {
    font-size: 0.9rem;
    color: #555;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.header-buttons button {
    background: #1940f1;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-buttons button.active {
    background: #4162f3;
}

.header-buttons button:hover {
    background: #4162f3;
}

.header-buttons i {
    font-size: 1rem;
}

/* Categories */
.categories {
    display: flex;
    overflow-x: auto;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.categories button {
    flex: 1;
    padding: 12px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, color 0.3s;
}

.categories button.active {
    background: #1940f1;
    color: #fff;
}

.categories button:hover:not(.active) {
    background: #f4f4f4;
}

/* Menu */
.menu {
    padding: 20px;
}

.menu-category {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-category.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-category h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #1940f1;
    display: inline-block;
    padding-bottom: 4px;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.menu-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
}

.menu-item .details {
    flex: 1;
}

.menu-item h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.menu-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.price {
    font-weight: bold;
    color: #1940f1;
}

/* Feedback & About */
.section {
    padding: 20px;
}

.hidden {
    display: none;
}

.feedback-form {
    display: flex;
    flex-direction: column;
}

.feedback-form label {
    margin: 8px 0 4px;
}

.feedback-form input,
.feedback-form textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
}

.feedback-form button {
    background: #1940f1;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.feedback-form button:hover {
    background: #4162f3;
}

.thank-you {
    margin-top: 15px;
    color: green;
    font-weight: bold;
}

/* Footer */
.menu-footer {
    text-align: center;
    background: #fff;
    padding: 15px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
}

.booking-form label {
    margin: 8px 0 4px;
}

.booking-form input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
}

.booking-form button {
    background: #1940f1;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.booking-form button:hover {
    background: #4162f3;
}