/* Modern Dark Theme */
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
}

.restaurant-header h1,
.category-title,
.menu-item h5 {
    font-family: 'Poppins', sans-serif;
}

.restaurant-header {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    margin-bottom: 30px;
}

.restaurant-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.restaurant-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #45a049);
    z-index: 2;
}

.restaurant-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.6s ease;
}

.restaurant-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 20px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.menu-item {
    background: #1e1e1e;
    border: 1px solid #333;
    color: #e0e0e0;
    border-radius: 14px;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.item-image {
    cursor: pointer;
    transition: all 0.3s ease;
}

.item-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.category-title {
    color: #ffffff;
    border-bottom: 2px solid #333;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1e1e1e;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-pills .nav-link {
    color: #e0e0e0 !important;
}

.nav-pills .nav-link.active {
    background-color: #4caf50 !important;
}

.text-muted {
    color: #aaa !important;
}

.price-tag {
    color: #4caf50 !important;
}

/* Overrides from bottom of file */
.item-footer {
    border-top: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #4caf50, #45a049) !important;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4) !important;
}

.add-to-cart-btn:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5) !important;
}
