/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set a background color and default font family */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

/* Style the header and navigation */
header {
  background-color: #333;
  color: #fff;
  padding: 10px;
}

nav ul {
  list-style: none;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #e74c3c;
}

/* Style the hero section */
#hero {
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-content {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e74c3c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 18px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #c0392b;
}

/* Style the about section */
#about {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Style the menu section */
#menu {
  padding: 80px 0;
  text-align: center;
  background-color: #f8f8f8;
}

.menu-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.menu-item {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.menu-item img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}

.menu-item h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.menu-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.menu-item .price {
  display: block;
  font-size: 1.3rem;
  color: #e74c3c;
}

.menu-item:hover {
  transform: translateY(-5px);
}

/* Style the contact section */
#contact {
  padding: 80px 0;
  text-align: center;
  background-color: #fff;
}

.contact-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.contact-content form {
  max-width: 500px;
  margin: 0 auto;
}

.contact-content input,
.contact-content textarea,
.contact-content button {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-content textarea {
  resize: vertical;
}

.contact-content button {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}

.contact-content button:hover {
  background-color: #c0392b;
}

/* Style the footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #333;
  color: #fff;
}

footer p {
  font-size: 14px;
}
