* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
.header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem 1.5rem;
    border-bottom: 2px solid #dee2e6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.restaurant-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #2c3e50;
}

.restaurant-info h1 i {
    color: #f39c12;
    font-size: 2.5rem;
}

.restaurant-tagline {
    font-size: 1.5rem;
    color: #6c757d;
    font-weight: 300;
    margin-top: 0.5rem;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem 1.5rem;
}

.menu-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 2px solid #c8e6c9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section-title i {
    color: #4caf50;
    font-size: 2rem;
}

.menu-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.menu-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.menu-table thead {
    background: #f8fafc;
}

.menu-table th {
    text-align: left;
    padding: 15px 18px;
    font-weight: 600;
    font-size: 1.2rem;
    color: #334155;
    border-bottom: 2px solid #e5e7eb;
}

.menu-table th:nth-child(2) {
    text-align: center;
    background: #fff7ed;
}

.menu-table th:nth-child(3) {
    text-align: center;
    background: #eef2ff;
}

.menu-table th:nth-child(4) {
    text-align: center;
    background: #ecfeff;
}

.menu-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #eef2f7;
}

.menu-table tbody tr:hover {
    background: #f0f7ff;
}

.menu-table td:nth-child(2),
.menu-table td:nth-child(3),
.menu-table td:nth-child(4) {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #d32f2f;
}

.menu-table td:nth-child(2) {
    background: #fff7ed;
}

.menu-table td:nth-child(3) {
    background: #eef2ff;
}

.menu-table td:nth-child(4) {
    background: #ecfeff;
}

.price-empty {
    color: #adb5bd;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info {
    text-align: center;
    font-size: 1.3rem;
    color: #495057;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.catering-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-top: 2px solid #dee2e6;
    margin-top: auto;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-info h1 {
        font-size: 2rem;
        flex-direction: column;
    }

    .restaurant-info h1 i {
        font-size: 2rem;
    }

    .restaurant-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 1rem 1.5rem;
    }

    .menu-table th,
    .menu-table td {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .contact-info {
        font-size: 1.1rem;
    }

    .form-title,
    .contact-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }

    .menu-table {
        font-size: 0.85rem;
    }

    .menu-table th,
    .menu-table td {
        padding: 8px 10px;
    }
}

