/* --- Navbar base --- */
.navbar {
  background: #fff6e8;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.3);
  font-family: arvo, Arial, Helvetica, sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  margin-left: 8px;
  vertical-align: middle;
}

/* --- Links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 0.95rem;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* --- Social links --- */
.nav-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding-left: 18px;
  border-left: 1px solid rgba(0, 0, 0, 0.45);
}

.nav-social-icon {
  width: 20px;
  height: 20px;

  display: block;

  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-social-icon:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* --- Hamburger toggle --- */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* --- Mobile styles --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);

    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;

    padding: 1rem;

    display: none;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-links.open {
    display: flex;
  }
}