/**
 * Colorado Diamonds 16U Briceño
 * Shared Stylesheet
 */

/* Smooth Scrolling */
* {
  scroll-behavior: smooth;
}

/* Typography Utility Classes */
body {
  font-family: 'DM Sans', sans-serif;
}

.f-display {
  font-family: 'Barlow Condensed', sans-serif;
}

.f-mono {
  font-family: 'Space Mono', monospace;
}

/* Signature Background Grid Pattern */
.cd-grid {
  background-image:
    linear-gradient(rgba(10, 34, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 34, 64, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Hidden elements & State utilities */
[data-status].hidden,
[data-category].hidden {
  display: none;
}

.hp-field {
  display: none;
}

#form-success {
  display: none;
}

/* Video Modal Backdrop Blur & Page Transition */
body.modal-open > *:not(#drill-modal) {
  filter: blur(8px);
  transition: filter 0.3s ease;
  pointer-events: none;
}
