    .hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 2px;
    left: 0;
    transition: 0.3s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);

    top: 9px;
}

/* Center content */

.content {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align:
        center;
    z-index: 5;
}

.content h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.content p {
    font-size: 20px;

}

/* --- Sliding Menu --- */



.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
background: linear-gradient(to right, #ff0080, #7928ca) !important ;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.6s ease;
  z-index: 9;
}

.menu.active {
  right: 0;

}

/* Menu Items */
.menu ul {
  list-style: none;
  padding: 0;
    position: absolute;
top:80px;
}

.menu ul li {
  margin: 20px 0;
  opacity: 0;
  transform: translateX(30px);

}

/* Animate each item in sequence */
.menu.active ul li {
  animation: slideIn 0.6s forwards;
}

.menu.active ul li:nth-child(1) {
  animation-delay: 0.2s;
}

.menu.active ul li:nth-child(2) {
  animation-delay: 0.4s;
}

.menu.active ul li:nth-child(3) {
  animation-delay: 0.6s;
}

.menu.active ul li:nth-child(4) {
  animation-delay: 0.8s;
}

/* Menu Links */
.menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

.menu ul li a:hover {
  color: #ff6347;
}

/* Keyframes */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Container for the hamburger */
.hamburger {
         display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
       
            border-radius: 5px;
         
}

/* Each line (span) */
.hamburger span {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, #ffb347); /* gradient colors */
  animation: waveMiddle 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 75, 43, 0.6); /* glowing effect */
}

/* Top line animation */
.hamburger span:nth-child(1) {
  animation: waveTop 1.5s ease-in-out infinite;
}

/* Bottom line animation */
.hamburger span:nth-child(3) {
  animation: waveBottom 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes waveTop {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(-5px); }
}

@keyframes waveMiddle {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.3); }
}

@keyframes waveBottom {
  0%, 100% { transform: translateY(2px); }
  50% { transform: translateY(5px); }
}

        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-top: -100px;
            padding-top: 100px;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        @media (max-width: 992px) {
            .navbar-nav {
                text-align: center;
                padding: 20px 0;
            }
            
            .nav-link {
                margin: 5px 0;
            }
            
            .reservation-btn {
                margin-top: 10px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        
        .category-section {
            margin-bottom: 3rem;
            padding: 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .category-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
        }
        
        .category-header {
            background: var(--primary-gradient);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: 0 6px 15px rgba(121, 40, 202, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .category-header::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255,255,255,0.2));
        }
        
        .menu-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            border-radius: 16px;
            overflow: hidden;
            background: var(--card-gradient);
            backdrop-filter: blur(10px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.07);
            height: 100%;
        }
        
        .menu-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(121, 40, 202, 0.15);
        }
        
        .menu-image {
            height: 200px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.5s ease;
        }
        
        .menu-card:hover .menu-image {
            transform: scale(1.05);
        }
        
        .price-tag {
            background: var(--primary-gradient);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            position: absolute;
            top: 15px;
            right: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            z-index: 2;
        }
        
        .category-badge {
            background: var(--primary-gradient-reverse);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .card-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .card-title {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .btn-add-to-cart {
            background: var(--primary-gradient);
            border: none;
            border-radius: 10px;
            padding: 10px 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: auto;
        }
        
        .btn-add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(121, 40, 202, 0.3);
        }
        
        .floating-cart-btn {
            background: var(--primary-gradient);
            border: none;
            border-radius: 50px;
            padding: 15px 25px;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(121, 40, 202, 0.3);
            transition: all 0.3s ease;
        }
        
        .floating-cart-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(121, 40, 202, 0.4);
        }
        
        .nav-quick-link {
            background: white;
            border: 2px solid transparent;
            border-radius: 10px;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            margin: 5px;
        }
        
        .nav-quick-link:hover {
            background: var(--primary-gradient);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
        }
        
        .page-title {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        
        .section-counter {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            margin-right: 10px;
        }
        
        .hero-section {
            background: var(--primary-gradient);
            color: white;
            padding: 3rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .category-section {
                padding: 1.5rem;
            }
            
            .menu-card {
                margin-bottom: 1.5rem;
            }
        }