  /* Custom styles for Chop Shop Barber Shop */

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

  /* Selection color */
  ::selection {
    background-color: #D4A017;
    color: #1A0718;
  }

  /* Scroll reveal base - content is visible by default */
  .scroll-reveal {
    /* No opacity: 0 here — content is always visible */
  }

  /* Scroll reveal with JS enhancement */
  @media (prefers-reduced-motion: no-preference) {
    .scroll-reveal.animated {
      animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
  }

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

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

  /* Mobile menu close state */
  #mobile-menu {
    opacity: 0;
    pointer-events: none;
  }

  /* Navbar scrolled state */
  #navbar.scrolled {
    background-color: rgba(74, 25, 66, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  }

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

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

  /* Image hover containers */
  .aspect-square {
    position: relative;
    overflow: hidden;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #1A0718;
  }
  ::-webkit-scrollbar-thumb {
    background: #4A1942;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #6B2152;
  }

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

  /* 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;
    }
  }
</style>
