  /* Custom styles for Latin Hibachi Chattanooga */

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

  /* Selection color */
  ::selection {
    background-color: rgba(200, 85, 61, 0.2);
    color: #5a261e;
  }

  /* Scroll reveal animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  /* Stagger children */
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* Navbar styles */
  #navbar {
    background: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  }

  #navbar.scrolled {
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  #navbar.scrolled .nav-link {
    color: #57534e;
  }

  /* Mobile menu */
  #mobile-menu {
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

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

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

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

  /* Image hover effects */
  .group img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .group:hover img {
    transform: scale(1.05);
  }

  /* Button focus styles */
  a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid #c8553d;
    outline-offset: 2px;
    border-radius: inherit;
  }

  /* Reduce motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
    html {
      scroll-behavior: auto;
    }
    img, .group img {
      transition: none;
    }
    .group:hover img {
      transform: none;
    }
  }

  /* Print styles */
  @media print {
    nav, #mobile-menu-btn, button, iframe {
      display: none !important;
    }
    body {
      background: white !important;
      color: black !important;
    }
  }
