body {
  margin: 0;
  background: #690000;
  color: #fff;
  font-family: 'Segoe UI', 'Arial', sans-serif;
}

header {
  background: #850101;
  box-shadow: 0 2px 6px rgba(20,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-placeholder {
  font-size: 2rem;
  background: #fff;
  color: #850101;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(20,0,0,0.09);
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
header nav a {
  color: #fffbe7;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 7px 11px;
  border-radius: 16px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover, header nav a:focus {
  background: #fffbe7;
  color: #850101;
}

.hero {
  padding: 46px 0 22px;
  text-align: center;
}
.hero h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #fffbe7;
}
.hero p {
  font-size: 1.2rem;
  color: #ffe1a3;
  margin: 0 0 14px 0;
}

.menu-section {
  background: #fffbe7;
  color: #850101;
  padding: 48px 0 36px;
  border-radius: 0 0 35px 35px;
}
.menu-section h2 {
  color: #850101;
  margin-bottom: 30px;
}
.menu-gallery {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.menu-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(95,0,0,0.07);
  max-width: 265px;
  padding: 14px 18px 16px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.menu-card:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 36px rgba(125,0,0,0.13);
}
.menu-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 11px;
  margin-bottom: 13px;
}
.menu-card h3 {
  margin: 0 0 7px 0;
  font-size: 1.08rem;
}
.menu-card p {
  margin: 0;
  font-size: 0.97rem;
  color: #653a14;
}

.about-section {
  padding: 38px 0 22px;
  text-align: center;
}
.about-section h2 {
  color: #fffbe7;
}
.about-section p {
  color: #ffe1a3;
  font-size: 1rem;
  max-width: 650px;
  margin: 11px auto 0 auto;
}

.contact-section {
  padding: 38px 0 36px;
  text-align: center;
}
.contact-section h2 {
  color: #fffbe7;
}
.contact-list {
  list-style: none;
  padding: 0;
  color: #fff;
  font-size: 1.05rem;
}
.contact-list li {
  margin-bottom: 7px;
}

footer {
  background: #2B0902;
  color: #fffbe7;
  padding: 16px 0 11px 0;
  font-size: 0.98rem;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.socials a {
  font-size: 1.22rem;
  margin-left: 13px;
  color: #ffe1a3;
  text-decoration: none;
  transition: color 0.18s;
}
.socials a:hover {
  color: gold;
}

/* Responsive Design */
@media (max-width: 800px) {
  .menu-gallery {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .header-flex {
    flex-direction: column;
    gap: 11px;
    height: auto;
    padding: 16px 0;
  }
}
@media (max-width: 500px) {
  .logo-title h1 {
    font-size: 1.3rem;
  }
  .menu-card {
    max-width: 97vw;
    padding: 9px 5px 13px;
  }
  .container {
    width: 99%;
    padding: 0 4px;
  }
}