  /* Custom styles for Honey Bee Cafe */

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

  /* Selection color */
  ::selection {
    background-color: rgba(232, 115, 74, 0.3);
    color: #fff;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #141414;
  }
  ::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #e8734a;
  }

  /* Menu tabs */
  .menu-tab {
    background: transparent;
    color: #9ca3af;
    border: none;
    cursor: pointer;
  }
  .menu-tab.active {
    background: #e8734a;
    color: #fff;
    box-shadow: 0 4px 12px rgba(232, 115, 74, 0.3);
  }
  .menu-tab:not(.active):hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
  }

  /* Reveal animations */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hero text animation */
  @media (prefers-reduced-motion: no-preference) {
    #hero h1 {
      animation: fadeInUp 0.8s ease forwards;
    }
    #hero p {
      animation: fadeInUp 0.8s ease 0.2s forwards;
      opacity: 0;
    }
    #hero .flex-col {
      animation: fadeInUp 0.8s ease 0.4s forwards;
      opacity: 0;
    }
  }

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

  /* Navbar glass effect */
  #navbar.scrolled {
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* Gallery hover */
  .grid img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .grid:hover img {
    transform: scale(1);
  }
  .grid > * > img:hover {
    transform: scale(1.05);
  }

  /* Mobile menu transitions */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  #mobile-menu.closed {
    opacity: 0;
    pointer-events: none;
  }
