/* Navigation Container */
#navcontainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  margin: 0;
  background-color: #1c1c1c;
  box-sizing: border-box;
  pointer-events: auto;
  z-index: 9999;
}

#titlebox {
  display: flex;
  align-items: center;
  position: relative;
  height: 64px;
  width: auto;
  padding-left: 50px;
  background-color: transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

#navbox {
  display: flex;
  align-items: center;
  height: 64px;
  width: auto;
  padding-right: 50px;
  background-color: transparent;
  overflow: visible;
  pointer-events: auto;
  flex-shrink: 0;
}

/* Dropdown Containers */
.dropdown, 
.dropdown_index {
  position: relative;
  display: inline-block;
}

/* Trigger Buttons */
.dropbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px; /* Matched to nav container */
  padding: 0 15px; /* Added padding so text isn't squished */
  margin-left: 0;
  background-color: #fafafa;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

/* Hidden Content Menu */
.dropdown-content {
  position: absolute;
  top: 100%; /* Ensures it sits perfectly below the nav bar */
  right: 0;
  min-width: 246px;
  padding: 0;
  background-color: lightpink;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Dropdown Links */
.dropdown-content a {
  display: block;
  padding: 16px 16px;
  color: #1c1c1c;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 300;
  text-decoration: none;
  background-color: lightpink;
  border-bottom: 1px solid #1c1c1c;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover States */
.dropdown:hover .dropdown-content,
.dropdown_index:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.dropdown-content a:hover {
  background-color: #1c1c1c;
  color: #b2b2b2;
}

.dropdown:hover .dropbtn,
.dropdown_index:hover .dropbtn {
  background-color: lightpink;
  color: #1c1c1c;
}

/* Responsive Media Queries */
@media only screen and (min-width: 469px) {
  .full {
    display: block;
  }
  .abbr {
    display: none;
  }
}