/* Main Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 3rem 0;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: 0 auto;
}

#searchInput {
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 0.75rem 1.5rem;
}

#searchButton {
    border-radius: 0 25px 25px 0;
    padding: 0.75rem 1.5rem;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 20px;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #007bff;
    color: white !important;
}

/* Menu Items */
.menu-item {
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

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

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

.menu-item .card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.menu-item .card-body {
    padding: 1.5rem;
}

.menu-item .card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.menu-item .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #007bff;
}

/* Category List */
.list-group-item {
    border: none;
    margin-bottom: 5px;
    border-radius: 5px !important;
    transition: all 0.2s;
}

.list-group-item:hover,
.list-group-item.active {
    background-color: #007bff;
    color: white;
}

/* Cart */
.cart-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

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

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

/* Order Status */
.order-status {
    padding: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .menu-item img {
        height: 150px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .nav-link {
        text-align: center;
        margin: 0.2rem 0;
    }
}
