/* Общие стили */
body {
  margin: 0;
  padding-top: 120px; /* отступ под фиксированную шапку */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #8b7878;
  color: #1d1b1b;
}

/* Шапка */
header {
  background: #8b7878;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 15px 0 5px;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header h1 {
  font-size: 42px;
  font-weight: bold;
  margin: 10px 0 15px;
  color: #fcfbfb;
}

/* Навигация */
header nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

header nav a {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #2a2a2a;
  transition: color 0.3s;
}

header nav a:hover {
  color: #c0392b;
}

/* Hero секция */
.hero {
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  text-align: center;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-order {
  background: #c0392b;
  color: #fff;
}

.btn-order:hover {
  background: #a93226;
}

/* Секции */
section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #2a2a2a;
}

.center-text {
  text-align: center;
  font-size: 18px;
}

/* Меню */
.menu {
  display: flex;
  justify-content: center;  /* центрируем */
  gap: 25px;
  flex-wrap: wrap;          /* перенос на маленьких экранах */
}

.dish {
  flex: 0 1 22%;  /* 4 блюда в ряд */
  max-width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.dish:hover {
  transform: translateY(-5px);
}

.dish img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dish h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  color: #333;
}

.dish p {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  padding: 0 10px 15px;
  color: #666;
}

/* Контакты */
#contacts p {
  font-size: 18px;
  line-height: 1.8;
}

/* Footer */
footer {
  background: #2c2c2c;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 30px;
}

/* WhatsApp кнопка */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}
.price {
    font-weight: bold;
    margin-top: 8px;
    font-size: 18px;
    color: #b22222; /* мясной тёмно-красный */
}