.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(20,20,20,.9);
    color: white;
    padding: .2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.nav-content {
  display: flex;
  justify-content: space-between; /* pushes nav-left and nav-right to edges */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
}
.nav-content a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem; /* spacing between items in each cluster */
}
.nav-left h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}
.nav-right a{
    color: white;
    text-decoration: underline #ffffff4d;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.nav-left a:hover {
    color: #F26522; /* Auburn Orange */
    text-decoration: none;
    transform:  scale(1.01);
    transition: color 0.3s ease, transform 0.3s ease;
}
.nav-right a:hover {
    transform: translateY(-2px) scale(1.05);
    text-decoration: none;
    color: #F26522; /* Auburn Orange */
}
nav{
    display: block;
    unicode-bidi: isolate;
}

@media (max-width: 900px) {
  .nav-content {
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem;
  }
  .nav-left,
  .nav-right {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }
  .nav-left h1 {
    font-size: 1.2rem;
  }
  .nav-content a {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .nav-content {
    flex-direction: row;
    align-items: flex-start;
    padding: auto;
    padding-bottom: 0;
  }
  .nav-left,
  .nav-right {
    gap: 1rem;
  }
  .nav-left h1 {
    font-size: 0px;
  }
  .nav-content a {
    font-size: 1rem;
  }
}