/* Global Styles & Utilities */

/* Material Symbols configuration */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-display: block;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Utilities */
.hero-title {
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.display-font,
.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Background Patterns */
.mesh-bg {
  background-color: #ffffff;
  background-image: radial-gradient(#e5e7eb 0.8px, transparent 0.8px);
  background-size: 40px 40px;
}

/* Animations & Transitions */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.active {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Marquee Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-360px * 12 - 2rem * 12));
  }
}

.animate-scroll {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  animation: scroll 40s linear infinite;
}

.animate-scroll:hover {
  animation-play-state: paused;
}

.scroll-item {
  flex: 0 0 360px !important;
  width: 360px !important;
  height: 240px;
  margin-right: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.scroll-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #e31e24;
  box-shadow: 0 20px 25px -5px rgba(227, 30, 36, 0.1);
}

.scroll-item img {
  width: 100% !important;
  height: 100% !important;
  padding: 1.5rem;
  object-fit: contain;
  transition: transform 0.8s ease;
}

.scroll-item:hover img {
  transform: scale(1.1);
}