/* Navbar container */
.site-nav {
  background: lightblue;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  width: 100%;
}

/* Flex wrapper */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

/* Logo */
.site-nav .logo img {
    max-height: 10%;
}
/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
}

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

.order-online-button
{
    color: black
}
/* CTA button */
.order-online-button {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
}

.nav-btn:hover {
  opacity: 0.85;
}

.logo img{
    width: auto;
    height: 15%;
}

/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}


.fixed-buttons {
    display: none;
}