/* Header container styling */
header {
  position: relative;
  z-index: 50;
  width: 100vw;
  overflow-x: hidden;
}

/* Navbar styling */
.nav-container {
  color: rgb(47, 47, 47);
  padding: 20px;
  position: absolute;
  left: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  width: 100vw;
  display: flex;
  flex-direction: column; /* Align items vertically */
  align-items: center; /* Center items within the container */
  justify-content: center;
}

/* Navbar title styling */
.nav-container h1 {
  margin-bottom: 10px;
  font-size: 1.8rem; /* Slightly reduced font size */
}

/* Navigation menu styling */
.nav-container .row {
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Navigation link list item styling */
.nav-container li {
  margin-right: 15px;
}

/* Link styling */
.nav-container a {
  color: rgb(91, 91, 91);
  text-decoration: none;
  font-size: 1.3rem; /* Reduced font size */
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}

/* Hover underline effect for links */
.nav-container a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #4A3728;
  transition: width 0.3s ease;
}

.nav-container a:hover::after {
  width: 100%;
}
