  /* Custom styles for Nazar Mediterranean Deli */

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }

  /* Floating animation */
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  .animate-float {
    animation: float 3s ease-in-out infinite;
  }

  /* Reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero content animation */
  .hero-content {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
  }

  .hero-image {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease 0.2s forwards;
  }

  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Navbar scroll effect */
  #navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(30, 58, 95, 0.08);
  }

  /* Mobile menu */
  #mobile-menu.open {
    transform: translateX(0);
  }

  /* Menu card hover */
  .menu-card {
    transform: translateY(0);
  }

  /* Special card hover */
  .special-card {
    transform: translateY(0);
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #f5f5f4;
  }

  ::-webkit-scrollbar-thumb {
    background: #d4a017;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #b8860b;
  }

  /* Focus styles */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: 2px solid #d4a017;
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Selection */
  ::selection {
    background: #d4a017;
    color: white;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-content {
      animation: slideInBottom 0.8s ease forwards;
    }

    .hero-image {
      animation: fadeIn 0.8s ease 0.2s forwards;
    }

    @keyframes slideInBottom {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
  }
