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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Header Styles */
.restaurant-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: #000;
    color: #fff;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.restaurant-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
    animation: slideGradient 3s ease-in-out infinite;
}

@keyframes slideGradient {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.restaurant-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    animation: slideInFromTop 0.8s ease-out;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: #ff6b35;
    font-weight: 300;
    animation: slideInFromBottom 0.8s ease-out 0.2s both;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Content */
.menu-content {
    flex: 1;
}

.menu-section {
    margin-bottom: 50px;
}

.menu-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

/* Menu Grid - 3 columns */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    animation: slideInFromLeft 0.8s ease-out 0.4s both;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Menu Item Card */
.menu-item {
    background: #fff;
    border: 2px solid #000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: slideUp 0.6s ease-out;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }
.menu-item:nth-child(7) { animation-delay: 0.7s; }
.menu-item:nth-child(8) { animation-delay: 0.8s; }
.menu-item:nth-child(9) { animation-delay: 0.9s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #ff6b35;
}

.menu-item-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.menu-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-image::after {
    opacity: 1;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1) rotate(2deg);
}

.menu-item-details {
    padding: 25px;
    background: #fff;
    position: relative;
}

.menu-item-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.menu-item:hover .menu-item-name {
    color: #ff6b35;
}

.menu-item-description {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.6;
    font-weight: 400;
}

.menu-item-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: #000;
    background: #ff6b35;
    color: #fff;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.menu-item:hover .menu-item-price {
    background: #000;
    transform: scale(1.05);
}

/* Footer */
.restaurant-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #000;
    color: #fff;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.restaurant-footer p {
    margin-bottom: 8px;
    font-weight: 300;
}

.restaurant-footer p:last-child {
    font-style: italic;
    color: #ff6b35;
    font-weight: 400;
}

/* Search Functionality */
.search-container {
    margin-bottom: 40px;
}

.search-bar {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 18px 60px 18px 25px;
    border: 2px solid #000;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #fff;
}

.search-input:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    pointer-events: none;
}

/* Loading and Error States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-container p,
.error-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.error-container button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.error-container button:hover {
    background: #e55a2b;
}

/* Unavailable Items */
.menu-item.unavailable {
    opacity: 0.6;
    position: relative;
}

.menu-item.unavailable .menu-item-image {
    position: relative;
}

.unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.unavailable-overlay span {
    background: #dc3545;
    color: #fff;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-top: 30px;
}

.no-results p {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .menu-container {
        padding: 15px;
    }
    
    .restaurant-header h1 {
        font-size: 2.5rem;
    }
    
    .menu-section h2 {
        font-size: 2.2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .search-input {
        padding: 15px 50px 15px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .restaurant-header h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .menu-section h2 {
        font-size: 1.8rem;
    }
    
    .menu-item-details {
        padding: 20px;
    }
    
    .menu-item-name {
        font-size: 1.3rem;
    }
    
    .menu-item-description {
        font-size: 0.9rem;
    }
    
    .menu-item-price {
        font-size: 1.2rem;
    }
    
    .search-input {
        padding: 12px 45px 12px 15px;
        font-size: 0.9rem;
    }
    
    .search-icon {
        right: 15px;
        font-size: 0.8rem;
    }
}
