/* Common Styles for All Pages */

/* Body Styles */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* App Container */
#app {
  width: 100%;
  height: 100%;
}

/* Navigation Styles */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  z-index: 100;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-family: "Museosans 300", sans-serif;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(78, 205, 196, 0.3);
}

.nav-link:hover {
  color: #4ecdc4;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #4ecdc4;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}
