  /* Custom styles for BeauVie Nail Bar */

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

  /* Selection color */
  ::selection {
    background-color: rgba(242, 112, 90, 0.3);
    color: #fff;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #1a1a1a;
  }
  ::-webkit-scrollbar-thumb {
    background: #4f4f4f;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #F2705A;
  }

  /* Hero entrance animations */
  .hero-eyebrow {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
  }

  .hero-headline {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.5s;
  }

  .hero-sub {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.7s;
  }

  .hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.9s;
  }

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

  /* Scroll reveal animations — progressive enhancement */
  .reveal {
    /* Default: visible (works without JS) */
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      /* Hidden state applied via JS for progressive enhancement */
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Navbar scroll state */
  #navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  }

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

  /* Service card hover glow */
  .group:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 40px rgba(242, 112, 90, 0.1);
    pointer-events: none;
  }

  /* Decorative line animation */
  .bottom-8 .w-px {
    animation: growLine 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
  }

  @keyframes growLine {
    from {
      opacity: 0;
      height: 0;
    }
    to {
      opacity: 1;
      height: 48px;
    }
  }

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

  /* Print styles */
  @media print {
    nav, #contactForm, .reveal { display: none; }
    body { background: white; color: black; }
  }
