/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: #fff;
  border-bottom: 1px solid #e9e2cf;
  z-index: 100000;
}

body {
  margin: 0;
  padding-top: 72px;
  font-family: "Urbanist", sans-serif;
}

/* ================= LAYOUT ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: #C8A04F;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= NAV ================= */
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.nav-link.active,
.nav-link:hover {
  color: #C8A04F;
}

/* ================= HAMBURGER ================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 5px 0;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 25px;
    display: none;
    z-index: 100001;
  }

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

/* ================= OVERLAY ================= */
.mobile-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.25);
  display: none;
  z-index: 99999;
  pointer-events: auto;
}

.mobile-overlay.active {
  display: block;
}

/* ================= BODY LOCK ================= */
body.menu-open {
  overflow: hidden;
}
