@import "/SRC/CSS/Homepage.css";
@import "/SRC/CSS/Menu.css";
@import "/SRC/CSS/Order.css";
@import "/SRC/CSS/Quiz.css";

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 70px;
  background: rgba(251, 244, 234, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(92, 31, 78, 0.1);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(200, 120, 10, 0.35);
}
.nav-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -0.01em;
}
.nav-name sup {
  font-size: 0.7em;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--plum);
}

.nav-pill {
  background: var(--plum) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  transition: background 0.2s !important;
}
.nav-pill:hover {
  background: var(--plum2) !important;
}

/* FOOTER */
footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.65);
  padding: 1.8rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.f-brand {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}
footer address {
  font-style: normal;
  font-size: 0.78rem;
}
.f-hours {
  font-size: 0.78rem;
}
.f-soc {
  display: flex;
  gap: 0.9rem;
}
.f-soc a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}
.f-soc a:hover {
  color: var(--gold2);
  border-color: var(--gold2);
}
