/* Menu Tabs Custom Styles */
.nav-tabs {
  border-bottom: 0;
  justify-content: flex-start !important;
  padding-left: 15px;
  margin-left: -15px;
  width: calc(100% + 30px);
}

.nav-tabs .nav__link {
  font-family: "Shadows Into Light", cursive;
  font-size: 1.2rem;
  display: block;
  padding: 8px 20px 6px;
  margin-right: 10px;
  line-height: 1.3;
  color: #333333;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-tabs .nav__link:hover {
  color: #c7a254;
  transform: translateY(-2px);
}

.nav-tabs .nav__link.active {
  color: #c7a254;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-tabs .nav__link {
    font-size: 1rem;
    padding: 6px 15px 4px;
  }
}
