  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
  
  :root {
        --primary: #008080;
        --primary-dark: #006666;
        --primary-light: #00a3a3;
        --accent: #ff7e00;
        --accent-light: #ffb366;
        --text-dark:  #041A28;
        --text-light: #ffffff;
        --bg-dark: #041A28;
        --bg-light: #f5f5f5;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        color: var(--text-dark);
        overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5 {
        font-family: 'Playfair Display', serif;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
        /* Navbar Animation */
        .nav-link {
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background: var(--primary);
            z-index: 1000;
            transition: right 0.3s ease;
            padding: 2rem;
        }
        
        .mobile-menu.active {
            right: 0;
        }
      
      .slider {
          position: relative;
      }
      .slide {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-size: cover;
          background-position: center;
          opacity: 0;
          transition: opacity 0.5s;
          z-index: 1;
      }
      .slide.active {
          opacity: 1;
          z-index: 2;
      }
  

    /* About Section Animation */
    .fade-in {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-in.active {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Menu Item Animation */
    .menu-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .menu-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Testimonial Animation */
    .testimonial-slider {
        position: relative;
        overflow: hidden;
    }
    
    .testimonial {
        transition: transform 0.5s ease;
    }
    
    /* Gallery Animation */
    .gallery-item {
        overflow: hidden;
        position: relative;
    }
    
    .gallery-item img {
        transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.1);
    }
    
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 128, 128, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }
    
    /* Contact Form Animation */
    .input-group {
        position: relative;
        margin-bottom: 1.5rem;
    }
    
    .input-group input,
    .input-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 0.25rem;
        transition: border-color 0.3s ease;
    }
    
    .input-group input:focus,
    .input-group textarea:focus {
        border-color: var(--primary);
        outline: none;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary);
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 2rem;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Scroll to top button */
    .scroll-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 100;
    }
    
    .scroll-top.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Special dish animation */
    .dish-highlight {
        position: relative;
        overflow: hidden;
    }
    
    .dish-highlight::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: rotate(45deg);
        animation: shine 3s infinite;
    }
    
    @keyframes shine {
        0% {
            top: -50%;
            left: -50%;
        }
        100% {
            top: 150%;
            left: 150%;
        }
    }
    
    /* Floating animation */
    .floating {
        animation: floating 3s ease-in-out infinite;
    }
    
    @keyframes floating {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0);
        }
    }

    /* Product section start */
      .product-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding-top:30px ;
    }

    .product-card {
      width: 360px;
      position: relative;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      margin: 10px;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .product-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: linear-gradient(45deg, #18181B, #27272A);
      color: white;
      padding: 6px 12px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-radius: 12px;
      z-index: 10;
    }

    .product-tilt-effect {
      overflow: hidden;
      transform-style: preserve-3d;
      perspective: 1000px;
    }

    .product-image {
      height: 240px;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .product-card:hover .product-image img {
      transform: scale(1.05);
    }

    .product-info {
      padding: 25px;
      background-color: oklch(90.4% 0.04 256.788);
    }

    .product-category {
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      color: #71717A;
      margin-bottom: 8px;
    }

    .product-title {
      font-size: 20px;
      font-weight: 700;
      color: #18181B;
      margin-bottom: 12px;
    }

    .product-description p {
      font-size: 14px;
      color: #52525B;
      line-height: 1.5;
      margin-bottom: 15px;
    }

    .product-features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .feature {
      font-size: 11px;
      background-color: #F4F4F5;
      color: #71717A;
      padding: 4px 10px;
      border-radius: 12px;
    }

    .product-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }

    .product-price {
      display: flex;
      flex-direction: column;
    }

    .price-was {
      font-size: 14px;
      text-decoration: line-through;
      color: #A1A1AA;
    }

    .price-now {
      font-size: 22px;
      font-weight: 700;
      color: #18181B;
    }

    .product-button {
      background: linear-gradient(45deg, #18181B, #27272A);
      color: white;
      border: none;
      border-radius: 5px;
      padding: 10px 18px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      position: relative;
      overflow: hidden;
    }

    .product-button:hover {
      background: linear-gradient(45deg, #27272A, #3F3F46);
      transform: translateY(-2px);
    }

    .product-meta {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #F4F4F5;
      padding-top: 15px;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .rating-count {
      margin-left: 8px;
      font-size: 12px;
      color: #71717A;
    }

    .product-stock {
      font-size: 12px;
      font-weight: 600;
      color: #22C55E;
    }

    @media (max-width: 768px) {
      .product-container {
        flex-direction: column;
        align-items: center;
      }
    }

    /* Product section end  */


    /* floating animation */

    .floating-food {
      position: absolute;
      z-index: -100; /* Changed from -9 to 0 to show icons above background but below content */
      animation: floatY 3s ease-in-out infinite alternate;
      pointer-events: none;
      user-select: none;
    }
    .food1 { animation-delay: 0s; }
    .food2 { animation-delay: 1s; }
    .food3 { animation-delay: 0.5s; }
    .food4 { animation-delay: 1.5s; }
    .food5 { animation-delay: 2s; }
    @keyframes floatY {
      0% { transform: translateY(0) scale(1) rotate(-5deg);}
      100% { transform: translateY(-30px) scale(1.1) rotate(5deg);}
    }


        /* menu style */
         .scrollbar-hide::-webkit-scrollbar {
      display: none;
    }
    .scrollbar-hide {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    /* Custom color for #041A28 */
    .bg-navy {
      background-color: #041A28;
    }
    .text-navy {
      color: #041A28;
    }
    .border-navy {
      border-color: #041A28;
    }