/* Navbar (shared) */
.navbar {
  background-color: var(--dark);
  color: var(--on-dark);

}

.navbar-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;

}

.brand .title 
{
  margin: 0;
  font-size: 1.2rem;
  /* text-decoration: none; */
}

.brand .subtitle 
{
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
  /* text-decoration: none; */
}

.brand .title a, .brand .subtitle a 
{
  color: inherit;
  text-decoration: none;
}

.brand .title a:hover,
.brand .subtitle a:hover 
{
   color: inherit;
  text-decoration: none;
}

.nav-links 
{
  list-style: none;
  display: flex;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  
}

.nav-links a 
{
  color: var(--on-dark);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
  transition: background-color 150ms ease, border-color 150ms ease;
  border: 1px solid transparent;
}

/* Hover: subtle light-blue tint */
.nav-links a:hover {
  background-color: rgba(179, 209, 248, 0.18); /* --border, transparent */
}

/* Active: slightly stronger tint + border */
.nav-links li.active a {
  background-color: rgba(179, 209, 248, 0.28);
  border-color: rgba(179, 209, 248, 0.45);
}

/* Footer (shared) */
.footer {
  background-color: var(--dark);
  color: var(--on-dark);
  padding: 2rem 1rem;
  margin-top: 3rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: var(--on-dark);
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-links a:hover {
  color: var(--surface-2); /* pink tint hover */
}

.footer-right h2 {
  margin: 0;
  font-size: 1.2rem;
}

.about-blurb a {
  text-decoration: none;
  color: var(--on-dark);
}

/* Image helper */
.is-rounded {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .nav-links a {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-left {
    align-items: flex-start;
  }
  .footer-right {
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
  }
}