/* Global Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

/* Header Styles */
header {
  background-color: #c62828;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section Styles */
.hero {
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
}

.hero button {
  background-color: #c62828;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Menu Section Styles */
.menu {
  padding: 40px 20px;
  text-align: center;
}

.menu h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.menu-item {
  text-align: left;
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.menu-item h3 {
  font-size: 24px;
  margin-top: 20px;
}

.menu-item p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.menu-item span {
  font-size: 20px;
  font-weight: bold;
  color: #c62828;
}

/* About Section Styles */
.about {
  background-color: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Section Styles */
.contact {
  padding: 40px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.contact button {
  background-color: #c62828;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Footer Styles */
footer {
  background-color: #c62828;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}