/* pub-style.css - СТИЛИ ДЛЯ ВСЕЙ СТРАНИЦЫ, КРОМЕ ГАЛЕРЕИ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: white;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ПАРАЛЛАКС */
.parallax-container {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.overlay-description {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  padding: 40px;
  max-width: 800px;
  text-align: center;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.5s;
  backdrop-filter: blur(5px);
  margin: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.overlay-description h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.overlay-description p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* МЕНЮ */
.menu-section {
  padding: 60px 20px;
  background-color: #000;
}

.menu-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.menu-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  color: #fff;
}

.menu-trio {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 25px;
  align-items: stretch;
}

.menu-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.menu-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item.center img {
  height: 500px;
}

.menu-item.left img,
.menu-item.right img {
  height: 400px;
}

.menu-btn {
  display: block;
  background: linear-gradient(135deg, #e6b450, #aa8855);
  color: white;
  text-align: center;
  padding: 15px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.menu-btn:hover {
  background: linear-gradient(135deg, #ffcc70, #bb9966);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ===========================================
   ОБЩАЯ АДАПТИВНОСТЬ (КРОМЕ ГАЛЕРЕИ)
   =========================================== */

@media (max-width: 1024px) {
  .menu-trio {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-item.center img,
  .menu-item.left img,
  .menu-item.right img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .menu-section {
    padding: 40px 15px;
  }
  
  .menu-title {
    font-size: 2.2rem;
  }
  
  .overlay-description {
    padding: 20px;
  }
  
  .overlay-description h2 {
    font-size: 2rem;
  }
  
  .overlay-description p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .menu-title {
    font-size: 1.8rem;
  }
  
  .menu-btn {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}