/* Custom styles for Jenny & Company Walker */

/* Ensure smooth scrolling and no jump from fixed header */
html {
  scroll-padding-top: 80px;
}

/* Selection color */
::selection {
  background: #E05325;
  color: #FDF8F0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FDF8F0;
}
::-webkit-scrollbar-thumb {
  background: #D4BE9A;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C4A882;
}

/* Subtle grain texture overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Hero asymmetric grid adjustments */
@media (max-width: 1023px) {
  .hero-img-grid {
    margin-top: 2rem;
  }
  .hero-img-grid .img-stack.tall {
    grid-row: auto;
  }
  .hero-img-grid .img-stack {
    height: 200px !important;
  }
}

/* Smooth image loading */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #E05325;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print styles */
@media print {
  header, footer, .blob, [aria-hidden] {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
  .hover-lift {
    transform: none;
    box-shadow: none;
  }
}
