:root {
  --bg-dark: rgba(0, 0, 0, 0.65);
  --button-width: 300px;
  --button-height: 50px;
  --main-color: #8d251faf;
  --hover-color: #8D251F;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0000004b;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.background-image {
  background-attachment: fixed;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('background - booking.jpg') center center / cover no-repeat;
  z-index: 0;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark); /* rgba(0, 0, 0, 0.6) */
  z-index: 1;
  inset: 0;
}

.container {
  position: relative;
  text-align: center;
  z-index: 2;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 70% !important;
}

.button {
  position: relative; /* Для абсолютного позиционирования иконки */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  width: var(--button-width);
  height: var(--button-height);
  border-radius: 8px;
  transition: background 0.3s ease;
  padding: 0 10px;
}

.button {
  background: var(--main-color);
}

.button:hover {
  background: var(--hover-color);
  scale: 1.1;
}

.back-button {
  background: #222222bd;
  color: var(--main-color);
  font-size: 1.2em;
  border: 2px solid var(--main-color);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.back-button:hover {
  background: var(--main-color);
  color: #fff;
}

.menu-title {
  font-family: 'Boldonse', sans-serif;
  font-size: 3em;
  margin: 20px 0 40px;
  text-shadow: var(--accent-glow);
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}


@keyframes scaleUp {
  to { transform: scale(1); }
}

.modal-content {
  background: #222;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  transform: scale(0.9);
  animation: scaleUp 0.3s ease forwards;
}




div#pjWrapperRestaurant_theme8
{
  border-radius: 22px;
  background: #333333;
  margin: 0;
  padding: 0;
}
div.panel-body.pjRbBody
{
  border-radius: 22px;
  background: transparent;
}
header.panel-heading.clearfix.pjRbHeader
{
  border-radius: 22px 22px 0 0;
}
div.pjRbTablesMap
{
  border-radius: 22px;
}






/* Адаптивность */
@media (max-width: 1200px) {
  body {
    align-items: flex-start;
    padding-top: 30px;
  }
  .button {
    width: 60%;
  }
  .container{
  max-width: 90% !important;
  }
}

@media (max-width: 768px) {
  .menu-title {
    font-size: 2.4em;
  }
  .dish-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .dish-info {
    text-align: center;
  }
  .container{
  max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .menu-title {
    font-size: 2em;
  }
}