/* ==========================================================================
   WHISPERS CAFÉ presented by SR BREW & BITE (wispercafe.co.nz)
   Theme: "Kiwi Bistro Heritage"
   Supplementary Custom Stylesheet & Accessibility Layer
   ========================================================================== */

/* Tactile Elevation & Textures */
.shadow-tactile {
  box-shadow: 0 4px 20px -2px rgba(30, 23, 19, 0.07), 0 2px 6px -1px rgba(195, 91, 52, 0.05);
}

.shadow-tactile-lg {
  box-shadow: 0 16px 36px -6px rgba(12, 44, 82, 0.12), 0 6px 16px -3px rgba(195, 91, 52, 0.08);
}

.shadow-chalk {
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), 0 8px 30px rgba(12, 44, 82, 0.25);
}

/* Micro Card Hover Animation */
.card-artisanal {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.card-artisanal:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -6px rgba(19, 78, 141, 0.12), 0 6px 12px -3px rgba(195, 91, 52, 0.08);
}

/* Menu Filter Transitions */
.menu-dish-item {
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-dish-item.is-hidden {
  display: none !important;
}

/* Gentle Steam Float Keyframe */
@keyframes gentle-steam {
  0% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-8px) scale(1.05); opacity: 0.45; }
  100% { transform: translateY(0) scale(1); opacity: 0.2; }
}

.animate-steam {
  animation: gentle-steam 6s ease-in-out infinite;
}

/* Chalk Underline */
.chalk-underline {
  border-bottom: 2px dashed rgba(253, 224, 71, 0.45);
}

/* Accessibility Focus States */
:focus-visible {
  outline: 3px solid #C35B34 !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
}

/* Accessibility: Prefers-Reduced-Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print Stylesheet */
@media print {
  aside,
  header,
  #scroll-progress,
  footer {
    display: none !important;
  }

  body {
    background-color: #FFFFFF !important;
    color: #000000 !important;
  }

  main {
    padding-top: 0 !important;
  }

  .menu-dish-item {
    page-break-inside: avoid;
  }
}
