@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

html {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #f9fafb; /* bg-gray-50 */
  padding-top: 4rem; /* pt-16 to offset the fixed header */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Base styles for hiding elements visually (utility for our vanilla JS) */

/* Transition for the mobile menu */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}

/* Photo Carousel thumbnails */
.thumbnail-active {
  border-color: #2563eb !important; /* border-blue-600 */
  transform: scale(1.05); /* border-blue-600 scale-105 */
}
.thumbnail-inactive {
  border-color: #d1d5db !important; /* border-gray-300 */
}
.thumbnail-inactive:hover {
  border-color: #60a5fa !important; /* hover:border-blue-400 */
}

/* Base styling overrides for the video background on Home */
#home-video {
  pointer-events: none;
}
