/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4757;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff4757;
}

/* Menu Header */
.menu-header {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem 3rem;
}

.menu-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: #ff4757;
    color: white;
}

/* Menu Container */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Menu Section */
.menu-section {
    margin-bottom: 3rem;
}

.menu-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff4757;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Menu Item */
.menu-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-info {
    padding: 1.5rem;
}

.item-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ff4757;
}

.order-btn {
    padding: 0.5rem 1rem;
    background-color: #ff4757;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-btn:hover {
    background-color: #ff6b81;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        gap: 1rem;
    }

    .menu-header {
        padding: 5rem 1rem 2rem;
    }

    .category-tabs {
        flex-wrap: wrap;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS */
.footer {

    margin: 0 auto;
    padding: 48px 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #414141;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay for visual interest */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: #FF6B6B;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 48px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4ECDC4;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.social-icons a {
    color: #cccccc;
    font-size: 22px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-button img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.app-button:hover img {
    transform: scale(1.05);
}

.location-language {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-bottom: 24px;
}

.selector-buttons {
    display: flex;
    gap: 20px;
}

.selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.selector-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.selector-btn img {
    width: 24px;
    height: 24px;
}

.copyright {
    font-size: 13px;
    color: #999999;
    text-align: left;
    line-height: 1.6;
}

/* Custom scrollbar for webkit browsers */
.footer::-webkit-scrollbar {
    width: 8px;
}

.footer::-webkit-scrollbar-track {
    background: #414141;
}

.footer::-webkit-scrollbar-thumb {
    background: #555555;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .selector-buttons {
        flex-direction: column;
    }

    .selector-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-section h3 {
        font-size: 15px;
        margin-bottom: 16px;
    }
}

/* Animation for loading */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeIn 0.5s ease forwards;
}
.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.footer-section:nth-child(2) { animation-delay: 0.1s; }
.footer-section:nth-child(3) { animation-delay: 0.2s; }
.footer-section:nth-child(4) { animation-delay: 0.3s; }
.footer-section:nth-child(5) { animation-delay: 0.4s; }
/* Add this at the bottom of menu.css */
@media (max-width: 576px) {
    /* Navigation */
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 0.8rem;
    }
    
    /* Menu header */
    .menu-header {
        padding: 4rem 1rem 2rem;
    }
    
    .menu-header h1 {
        font-size: 1.8rem;
    }
    
    /* Category tabs */
    .category-tabs {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.3rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Menu items */
    .menu-container {
        padding: 1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item img {
        height: 180px;
    }
    
    .item-info {
        padding: 1rem;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .selector-buttons {
        flex-direction: column;
    }
    
    .selector-btn {
        width: 100%;
        justify-content: center;
    }
}
