/* ---------- HEADER ---------- */
.site-header {
  background: #222; /* keep elegant dark background */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ---------- LOGO ---------- */
.logo a {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFD700; /* Gold text */
  background-color: #FFF8DC; /* Light gold background */
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo a:hover {
  color: #fff; /* White text */
  background-color: #DAA520; /* Goldenrod hover */
}

/* ---------- NAVIGATION ---------- */
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #FFD700; /* gold hover */
}

/* ---------- TOGGLE BUTTON ---------- */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  display: none; /* hidden on desktop */
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  /* Show toggle button */
  .menu-toggle {
    display: block;
  }

  /* Hide nav by default */
  .nav {
    display: none;
    width: 100%;
    background: #222;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    padding: 1rem 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  /* Show nav when active */
  .nav.active {
    display: block;
  }
}