@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Regular.woff2") format("woff2"),
    url("../fonts/ppneuemontreal-book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-synthesis: none;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Medium.woff2") format("woff2"),
    url("../fonts/ppneuemontreal-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  font-synthesis: none;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Bold.woff2") format("woff2"),
    url("../fonts/ppneuemontreal-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #222222;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PP Neue Montreal", sans-serif;
  font-synthesis: none;
}

.font-neue {
  font-family: "PP Neue Montreal", sans-serif;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.font-mono {
  font-family: "DM Mono", monospace;
}

.bg-darkGray {
  background-color: #fafaFA;
}

.hero-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 200px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x;
}

@media (min-width: 768px) {
  .hero-carousel-container {
    height: 600px;
  }
}

.hero-carousel-track {
  display: flex;
  transition: transform 1s ease-in-out;
  will-change: transform;
  gap: 0.5rem;
  height: 100%;
  cursor: grab;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.hero-carousel-track.dragging {
  transition: none;
  cursor: grabbing;
}

.hero-carousel-track.resetting,
.hero-carousel-track.resetting .hero-carousel-slide {
  transition: none !important;
}

.hero-carousel-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  opacity: 1;
}

.hero-slide-content {
  width: 100%;
  max-width: 1280px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
  min-height: 100%;
  max-height: 100%;
}

@media (min-width: 1024px) {
  .hero-carousel-track {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-carousel-track {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-carousel-track {
    gap: 0.5rem;
  }
}

