  /* Custom styles for BJ's Krusty Krabs */

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

  /* Selection color */
  ::selection {
    background-color: rgba(226, 173, 66, 0.3);
    color: #fefdf8;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #060c09;
  }
  ::-webkit-scrollbar-thumb {
    background: rgba(226, 173, 66, 0.3);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(226, 173, 66, 0.5);
  }

  /* Navbar scroll state */
  #navbar.scrolled {
    background: rgba(3, 7, 5, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 173, 66, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  }

  /* Mobile menu active state */
  #mobile-menu.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Hamburger animation */
  #menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  #menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle.active .hamburger-line:nth-child(3) {
    width: 20px;
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* Mobile nav link hover */
  .mobile-nav-link {
    position: relative;
  }
  .mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: #e2ad42;
    transition: transform 0.3s ease;
  }
  .mobile-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  /* Reveal animations — progressive enhancement, only with JS */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Gold gradient text utility */
  .text-gold-gradient {
    background: linear-gradient(135deg, #e2ad42 0%, #f5e1a8 50%, #e2ad42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Subtle shimmer on hero */
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }

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

  /* Pulse animation for CTA */
  @keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(226, 173, 66, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(226, 173, 66, 0); }
  }

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