:root {
  --bs-font-sans-serif: "Inter", "Krub", sans-serif;
  --bs-body-bg: #f8f9fa; /* Very light gray for less eye strain than pure white */
}

body {
  /* Smooth font rendering for premium feel */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism Navbar */
.navbar-glass {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Custom Typography Tweak */
.hero-title {
  font-weight: 800;
  letter-spacing: -0.03em; /* Tighter tracking for modern look */
  background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Responsive Font Sizing beyond Bootstrap default */
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.2;
  padding-bottom: 0.1em;
}
