/* Make nav item text black */
.navbar-light .navbar-nav .nav-link {
  color: #000 !important;
}

/* Optional: Make nav item text darker on hover */
.navbar-light .navbar-nav .nav-link:hover {
  color: #333 !important;
}

/* Make hero section full screen with background */
.hero-section {
  height: 100vh;
  background: url('../assets/images/sampetrix_bg.png') no-repeat center center/cover;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}
