/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f5f2;
  color: #3b2f2f;
}

/* Header */
header {
  background: #4b2e2e;
  color: white;
  padding: 15px;
  text-align: center;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
  text-decoration: underline;
}

/* Banner */
.banner {
  position: relative;
  text-align: center;
}

.banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(206, 202, 202, 0.6);
  padding: 20px;
  border-radius: 8px;
}

/* Sections */
section {
  padding: 40px;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  color: #4b2e2e;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
  margin-top: 30px;
}

.menu-item {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}


.menu-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.menu-item h3 {
  margin: 10px 0 5px;
  color: #4b2e2e;
}

.menu-item p {
  font-weight: bold;
  color: #6f4e37;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin: auto;
}

form input, form textarea {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #6f4e37;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #4b2e2e;
}

/* Footer */
footer {
  background: #4b2e2e;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}
