/* Basic custom styles + small utilities for the demo */
:root {
  --primary: #0055a5;
  --accent: #ffb800;
}

/* small glass look utility used in demo */
.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

/* dark glass */
.dark .glass {
  background: rgba(2, 6, 23, 0.5);
}

/* Header solid class (applied on scroll) */
#mainHeader.header-solid {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
}
.dark #mainHeader.header-solid {
  background: rgba(2, 6, 23, 0.85);
}

/* hero slides stacking */
.hero-slide {
  will-change: opacity;
}

/* Generalized styles for all horizontal scrolling tracks */
.horizontal-track::-webkit-scrollbar {
  height: 8px;
}
.horizontal-track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}

/* snap behavior helper */
.horizontal-track > * {
  scroll-snap-align: start;
}

/* Hide scrollbar on Firefox */
.horizontal-track {
  scrollbar-width: none;
}

/* small ripple: on active scale */
button:active {
  transform: translateY(1px);
}

/* masonry figure avoid breaking */
.break-inside-avoid {
  break-inside: avoid;
}

/* small responsive helpers */
@media (max-width: 640px) {
  h1 {
    font-size: 1.8rem;
  }
}

/* A bit of polish for dark mode */
:root,
body {
  transition: background-color 0.25s ease, color 0.25s ease;
}

/*
 * Employee Birthday Section Background
 */
/* #birthdays {
  background-color: #FBF8EF;
} */
