  /* Custom styles for Sanchez Family Day Care */

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

  /* Selection color */
  ::selection {
    background-color: rgba(27, 67, 50, 0.15);
    color: #1B4332;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 6px;
  }
  ::-webkit-scrollbar-track {
    background: #f5f3ed;
  }
  ::-webkit-scrollbar-thumb {
    background: #b9d0be;
    border-radius: 3px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #8fb896;
  }

  /* Hero animation - only below the fold content uses JS reveals */
  .hero-label {
    animation: slideUp 0.8s ease-out forwards;
  }

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

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

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

  /* Program card hover effect */
  .program-card {
    position: relative;
    overflow: hidden;
  }

  .program-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #D4A843;
    transition: width 0.4s ease;
  }

  .program-card:hover::after {
    width: 100%;
  }

  /* Approach item hover */
  .approach-item:hover .font-serif {
    transition: color 0.3s ease;
  }

  /* Nav scroll state */
  #nav.scrolled {
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08);
  }

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

  /* Print styles */
  @media print {
    nav, #contact, .program-card::after {
      display: none;
    }
    body {
      background: white;
      color: black;
    }
  }

  /* Mobile menu active states */
  .mobile-link {
    transition: color 0.2s ease;
  }
  .mobile-link:hover {
    color: #1B4332;
  }

  /* Mobile menu line animation */
  #menuBtn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
  }
  #menuBtn.active .menu-line:nth-child(2) {
    opacity: 0;
  }
  #menuBtn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
    width: 1.5rem;
  }

  /* Select dropdown styling */
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231B4332' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 2rem;
  }
