body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.hero {
  background: url("images/restaurant-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.menu {
  padding: 50px 20px;
  text-align: center;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.menu-item {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
}

.reservation {
  background: #f0f0f0;
  padding: 50px 20px;
  text-align: center;
}

.reservation form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
  gap: 10px;
}

.reservation input, .reservation button {
  padding: 10px;
  font-size: 1rem;
}

.contact {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}
.hero.ecommerce {
  background: url("images/ecommerce-bg.jpg") center/cover no-repeat;
}

.hero.corporate {
  background: url("images/corporate-bg.jpg") center/cover no-repeat;
}

/* Navbar base */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0a3d62; /* Brand blue */
  color: white;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

/* Hidden state for scroll */
.navbar.hidden {
  transform: translateY(-100%);
}

/* Content wrapper */
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.logo-img {
  height: 35px;
  margin-right: 8px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffd32a; /* Accent color */
}

/* Contact button */
.btn-primary {
  padding: 0.5rem 1rem;
  background: #ffd32a;
  color: #0a3d62;
  border-radius: 8px;
  font-weight: bold;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0a3d62;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  .nav-links.open {
    max-height: 300px;
  }

  .nav-toggle {
    display: flex;
  }
}
