* {
    margin: 0;
    font-family: Arial;
    border: border-box;
}

.navbar {
     height: 250px;
     background-color: #36a6a6d9;
     color: white;
     display: flex;
     align-items:center;
     justify-content:space-evenly ;
}

.nav-logo{
    height: 250px;
    width: 250px;
}


.logo1{
     background-image: url("logo.jpeg");
    background-size:cover;
    height: 250px;
    width: 250px;
}

.first{
    color: #cccccc;
    font-size: 3rem;
    margin-left: 0px;
}

.second{
    font-size: 2.5rem;
    margin-left: 100px;
    color: orange;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Order Form */
.order-form {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: none;
    animation: slideIn 0.5s ease;
}

.order-form.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

input, select, textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
    background: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.menu-item {
    padding: 25px 15px;
    border: 3px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
}

.menu-item:hover, .menu-item.selected {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #fff5f5, #ffeaea);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255,107,107,0.2);
}

.menu-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.menu-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff6b6b;
}

.total-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    text-align: right;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    border: 2px solid #dee2e6;
}

.btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 10px 25px rgba(255,107,107,0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,107,107,0.4);
}

/* Orders List */
.orders-list {
    display: none;
}

.orders-list.active {
    display: block;
}

.orders-list h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.order-card {
    background: white;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    border-left: 6px solid #667eea;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-id {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
    background: rgba(102,126,234,0.1);
    padding: 10px 20px;
    border-radius: 10px;
}

.order-status {
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-preparing { background: #d1ecf1; color: #0c5460; }
.status-ready { background: #d4edda; color: #155724; }
.status-delivered { background: #f8d7da; color: #721c24; }

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.detail-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.detail-label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.detail-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.status-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.status-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-preparing { background: #17a2b8; color: white; }
.btn-ready { background: #28a745; color: white; }
.btn-delivered { background: #dc3545; color: white; }

.status-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.status-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.print-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.print-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 15px; }
    
    .form-row, .order-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tabs { flex-direction: column; }
    .tab-btn { font-size: 1.1rem; }
    
    .header h1 { font-size: 2.2rem; }
}
footer{
    margin-top: 15px;
}

.foot-panel1{
    background-color: #37475a;
    color: white;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}

.foot-panel2{
    background-color: #222f3d;
    color: white;
    height: 100px;
    display: flex;
    justify-content: space-evenly;
     align-items: center;
}

.foot-panel3 {
    background-color: #222f3d;
    color: white;
    border-top: 0.5px solid white;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    background-image: url("logo.jpeg");
    background-size: cover;
    height: 150px;
    width: 150px;
}
.foot-panel4{
    background-color: #0f1111;
    color: white;
    height: 80px;
    font-size: 0.7rem;
    text-align: center;
}

.pages{
    padding-top: 25px;
}

.copyright{
    padding-top: 5px;
}