@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

nav {
  background: #eae6db;
  padding: 0.25rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ecebe6;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
nav .logo { flex: 1; }
nav .logo a { display: inline-block; }
nav .logo img { height: 85px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-right { flex: 1; display: flex; justify-content: flex-end; }
.nav-links a {
  text-decoration: none;
  color: #2d2d2d;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover {
  background: #3488e1;
  color: white;
}
.nav-find-us {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
  background: #FF6B4A;
  color: white;
  transition: background 0.15s;
}
.nav-find-us:hover { background: #e05538; }

/* desktop — larger fish without growing the nav */
@media (min-width: 769px) {
  nav {
    height: 90px;
    overflow: visible;
  }
  nav .logo img { height: 95px; margin-top: 0.4rem; }
  .nav-links a { font-size: 1.5rem; }
  .nav-find-us { font-size: 1.5rem; }
}

/* hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: #FF6B4A;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* mobile */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 0.25rem 1.25rem;
  }
  nav .logo { flex: 1; }
  nav .logo img { height: 70px; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
    padding: 0.75rem 0;
  }
  .nav-right {
    display: none;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 0.75rem;
  }
  .hamburger { display: flex; }
  nav.nav-open .nav-links,
  nav.nav-open .nav-right { display: flex; }
}
