* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #1e1e1e; /* Чёрно-серый строгий фон */
  color: #ffffff;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}

header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  height: 90px;
  width: auto;
}

.navbar .logo {
  color: #ca9c73;
  font-family: cursive;
  font-style: italic;
  font-weight: 600;
  font-size: 2.1rem;
  text-decoration: none;
}

.navbar .logo span {
  color: #fff;
}

.navbar .menu-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.navbar .menu-links a {
  font-size: 25px;
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}

.navbar .menu-links a:hover {
  color: #ca8c56;
}

/* Banner */
.banner-section {
  height: 100vh;
  background-image: linear-gradient(to right, rgba(61, 21, 2, 0.5), rgba(61, 21, 2, 0.4)), url(background.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.banner-section .content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

.banner-section .content h2 {
  font-size: 3.5rem;
  max-width: 600px;
  line-height: 70px;
}

.banner-section .content p {
  font-size: 1rem;
  max-width: 600px;
  margin-top: 15px;
}

.banner-section .content button {
  padding: 10px 26px;
  border: 2px solid transparent;
  font-size: 1.1rem;
  border-radius: 6px;
  margin-top: 38px;
  cursor: pointer;
  font-weight: 400;
  transition: 0.2s ease;
  background: #85460f;
  color: #fff;
}

.banner-section .content button:hover {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

/* Mobile Header */
#close-menu-btn {
  position: absolute;
  font-size: 24px;
  color: white;
  line-height: 1;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: none;
}

#menu-btn {
  font-size: 35px;
  line-height: 1;
  color: white;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  header {
    padding: 10px;
  }

  .navbar .logo {
    font-size: 1.7rem;
  }

  .navbar .menu-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: #301a1b;
    flex-direction: column;
    padding: 70px 40px 0;
    transition: left 0.2s ease;
  }

  .navbar a {
    color: #fff;
  }

  #close-menu-btn,
  #menu-btn {
    display: block;
  }

  header.show-menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }

  header.show-menu .navbar .menu-links {
    left: 0;
  }

  .banner-section .content {
    text-align: center;
  }

  .banner-section .content :is(h2, p) {
    max-width: 100%;
  }

  .banner-section .content h2 {
    font-size: 1.8rem;
    line-height: 60px;
  }

  .banner-section .content p {
    padding: 9px 18px;
  }
}

/* Меню */
.menu-section {
  padding: 120px 20px;
  text-align: center;
  /* фон удалён, чтобы не перебивал основной */
  color: #fff;
}

.section-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #ca9c73;
}

.menu-box {
  background-color: #2c2c2c;
  padding: 20px;
  margin: 20px auto;
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.menu-box h3 {
  margin: 0;
  font-size: 1.3rem; /* Было 1.8rem — уменьшили */
  color: #ca9c73;
}


/* Блюда */
.menu-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 100%;
  overflow-x: auto;
  padding: 20px;
}

.dish-card {
  flex: 0 0 250px;
  background: #2c2c2c;
  padding: 20px;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-5px);
}

.dish-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.dish-card h3 {
  color: #ca9c73;
  margin-bottom: 8px;
}

.dish-card p {
  font-size: 0.95rem;
  color: #ddd;
}
.menu-link {
  text-decoration: none;
  display: block;
}
@media (max-width: 768px) {
  .menu-section {
    padding: 100px 20px;
  }

  .menu-box {
    width: 100%;
    max-width: 90%;
    margin: 15px auto;
  }

  .section-title {
    font-size: 2rem;
  }

  .navbar .menu-links {
    flex-direction: column;
    gap: 20px;
  }
}
.menu-box {
  background: linear-gradient(135deg, #3b2d27, #1e1e1e);
  padding: 30px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.menu-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #4a382f, #292929);
}
.greeting {
  margin-top: 150px;
  margin-bottom: 90px;
  color: #fff;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.greeting h2 {
  font-size: 30px;
  color: #f2c94c;
  margin-bottom: 10px;
}

.greeting p {
  font-size: 20px;
  color: #ccc;
}

/* Плавная анимация */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  .mission-title {
    font-size: 10px; 
    color: #f2c94c;
    margin-bottom: 20px;/* удобно читается на маленьких экранах */
  }

  .mission-text {
    font-size: 10px;
    color: #fff; /* стандарт для параграфов на телефоне */
  }
}
.mission-section {
  text-align: center;
  max-width: 800px;
  margin: 100px auto;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  transition: all 1s ease;
  transform: translateY(50px);
  opacity: 0;
}

.mission-section.show {
  transform: translateY(0);
  opacity: 1;
}



.gallery {
  padding: 80px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.gallery-title {
  font-size: 50px;
  margin-bottom: 40px;
  color: #f2c94c;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-row img {
  width: 330px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-row img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.bottom-row {
  margin-bottom: 80px;
}


@media (max-width: 768px) {
  .gallery-row img {
    width: 90%;
    height: auto;
  }
}

.promo-container {
  max-width: 900px;
  margin: 100px auto;
  padding: 15px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.promo-container h3 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 20px;
  color: #f2c94c;
}

.promo-container input[type="date"] {
  padding: 10px;
  font-size: 15px;
  margin: 10px 0 25px;
  border: none;
  border-radius: 8px;
  background-color: #2c2c2c;
  color: #e9eff0;
}

.promo-container form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promo-option {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px 30px;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.promo-option:hover {
  background: rgba(255, 255, 255, 0.15);
}

.promo-option input[type="checkbox"] {
  width: 30px;
  height: 25px;
  accent-color: #f2c94c;
  margin-right: 30px;
  cursor: pointer;
}

.promo-option span {
  font-size: 15px;
}

.promo-container button {
  margin-top: 9px;
  padding: 10px 15px;
  background-color: #c46206;
  color: #1e1e1e;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}


.promo-container button:hover {
  background-color: #be800c;
}

#promoMessage {
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
  color: #f2c94c;
}
