@font-face {
  font-family: "InstrumentSansCondensed";
  src: url(/fonts/InstrumentSans_Condensed-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.font-instrument {
  font-family: "InstrumentSansCondensed", sans-serif;
}

/* Safety zone overlay for print preview */
.safety-zone {
  position: absolute;
  top: 3%;
  left: 3%;
  right: 3%;
  bottom: 3%;
  border: 2px dashed #22c55e;
  z-index: 10;
  pointer-events: none;
}

/* Subtle zoom animation for hero background */
@keyframes subtle-zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.animate-subtle-zoom {
  animation: subtle-zoom 20s ease-in-out infinite;
}

/* Respect user's reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-subtle-zoom {
    animation: none;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Press animation for buttons */
button,
[type="button"],
[type="submit"],
a[class*="bg-"] {
  transition: transform 100ms cubic-bezier(0.2, 0, 0.2, 1);
}

button:active,
[type="button"]:active,
[type="submit"]:active,
a[class*="bg-"]:active {
  transform: scale(0.98);
}

/* Tabular numbers for price displays */
.tabular-nums {
  font-variant-numeric: tabular-nums;
}
/* Hide native cursor only within the cursor zone */
@media (hover: hover) {
  [data-cursor-zone], [data-cursor-zone] * {
    cursor: none !important;
  }
}

/* Cursor wrapper — positioned by JS via translate(x, y) */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  user-select: none;
}

/* Visible shape — hidden by default, shown only inside zone */
#cursor-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  background: #18181b;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition:
    width         0.5s cubic-bezier(0.16, 1, 0.3, 1),
    height        0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform     0.12s ease-out,
    opacity       0.15s ease;
}

/* Show dot when inside cursor zone */
#cursor.is-zone #cursor-inner {
  opacity: 1;
}

/* Hover state — expand to pill */
#cursor.is-hover #cursor-inner {
  width: 120px;
  height: 40px;
  border-radius: 100px;
}

/* Click feedback */
#cursor.is-down #cursor-inner {
  transform: translate(-50%, -50%) scale(0.85);
}

/* Label text inside pill */
[data-cursor-label] {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* Fade label in after pill expands */
#cursor.is-hover [data-cursor-label] {
  opacity: 1;
  transition: opacity 0.15s ease 0.18s;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
