
.main-navbar {
  background: #ff935d;
  border: 4px solid #f76820;
  border-radius: 0px 0px 12px 12px;
  box-sizing: border-box;
  padding: 0px 0px 0px 0px;
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center !important; 
  height: 70px;
}
.navbar-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  margin-left: 32px;
  height: 100%;
}
.navbar-logo-link {
  display: flex;
  align-items: center !important;
  height: 100%;
  margin-left: 10px;
  margin-right: 6px;
}
.navbar-logo {
  height: 50px;
  width: auto;
  display: block;
}

.navbar-link {
  color: #b04a1890;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 0.9rem !important;
  font-weight: 500;
  text-decoration: none;
  margin: 0 35px 0 0;
  border-bottom: none;
  position: relative;
  transition: color 0.18s;
}

/* navbar dropdown for new program and new studio */
.navbar-dropdown {
  position: relative;
  display: inline-block;
}

.navbar-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 0.9rem !important;
  font-weight: 500;
  color: #b04a1890;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0 35px 0 0;
  transition: color 0.18s;
}

.navbar-dropdown-trigger:focus,
.navbar-dropdown-trigger:hover {
  color: #b04a18;
}

.navbar-dropdown-arrow {
  font-size: 1.4em;
  margin-bottom: 1px;
  color: inherit;
}

.navbar-dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  transform: none;
  min-width: 135px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 14px #ffae8540;
  z-index: 1001;
  padding: 8px 0px 6px 0px;
  text-align: left;
  border: none;
}

.navbar-dropdown-menu.active {
  display: block;
  animation: fadeInDropdown 0.16s;
}

@keyframes fadeInDropdown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.navbar-dropdown-item {
  display: block;
  color: #ffae18;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  padding: 7px 0 7px 10px;
  background: none;
  border: none;
  border-radius: 6px;
  margin: 0 0 2px 0;
  transition: background 0.15s, color 0.15s;
}

.navbar-dropdown-item:last-child {
  margin-bottom: 0;
}

.navbar-dropdown-item:hover,
.navbar-dropdown-item:focus {
  background: #fff6ee;
  color: #b04a18;
  outline: none;
}

.auth-link {
  color: #b04a1890;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s;
  border-bottom: none;
  position: relative;
}

.navbar-link.active,
.navbar-link:hover {
  color: #b04a18;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;}

.auth-link.active,
.auth-link:hover {
  color: #b04a18;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.normal-text {
  color: #b04a1890;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  margin: 5px 5px;

}

.navbar-link.active::after,
.auth-link.active::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: #b04a18;
  bottom: -26.3px;
  border-radius: 2px;
}


.navbar-auth {
  display: flex;
  gap: 10px;
  align-items: center;
}

