body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #7a0c0c;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  background: #111 url('/images/hero.jpg') center/cover no-repeat;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.section {
  padding: 70px 0;
}

.bg-light {
  background: #f6f6f6;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.grid-2 img {
  width: 100%;
  border-radius: 8px;
}

.center {
  text-align: center;
}

.btn {
  background: #7a0c0c;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  border-radius: 4px;
}

footer {
  background: #111;
  color: white;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* Responsive */
@media(max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.menu-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 10px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  margin-top: 15px;
  cursor: pointer;
}

.logo img {
  height: 60px;
  width: auto;
}

footer img {
  margin-bottom: 10px;
}
