  /* Custom styles for Jimmy's Cafe */

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

  /* Custom animations */
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
  }

  @keyframes float-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
  }

  @keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
  }

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

  .animate-float-delayed {
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: 1s;
  }

  .animate-scroll-line {
    animation: scroll-line 2s ease-in-out infinite;
  }

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

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

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html {
      scroll-behavior: auto;
    }
  }

  /* Mobile menu transitions */
  #mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  #mobile-menu.open {
    max-height: 400px;
    padding-top: 0;
  }

  /* Navbar scroll state */
  #navbar.scrolled {
    background: rgba(254, 250, 246, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(139, 26, 74, 0.08);
  }

  /* Selection color */
  ::selection {
    background: rgba(139, 26, 74, 0.15);
    color: #8B1A4A;
  }

  /* Focus styles */
  :focus-visible {
    outline: 2px solid #8B1A4A;
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #fefaf6;
  }
  ::-webkit-scrollbar-thumb {
    background: #f9a8d4;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #f472b6;
  }
