* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #8B0000;
  color: #fff;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

#menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
}

/* Hero */
.hero {
  background: url('https://images.unsplash.com/photo-1555992336-03a23c7b20ee') no-repeat center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  background: rgba(139, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background: #ff4d4d;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 3rem 2rem;
  text-align: center;
}

.menu-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.item {
  background: #ffe5e5;
  padding: 1rem;
  border-radius: 10px;
  width: 250px;
}

/* Contact */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
}

button {
  background: #8B0000;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background: #8B0000;
  color: white;
  padding: 1rem;
}

/* Responsive */
@media(max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #8B0000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }

  .nav-links.active {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }
}