
/* ОБЩЕЕ */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: white;
  padding-top: 70px;
}

/* ХЕДЕР */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ЛОГО */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 35px;
  margin-right: 10px;
}

.logo span {
  color: #f5c542;
  font-weight: bold;
  font-size: 30px;
}

/* МЕНЮ */
.nav {
  display: flex; /* Показываем на компьютере */
  align-items: center;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  transition: 0.3s;
}

.nav a:hover {
  color: #f5c542;
}

/* КНОПКА */
.call-btn {
  color: #f5c542;  
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0; 
  transition: 0.3s;
}

.call-btn:hover {
  color: #ff4c1f;  
  text-decoration: underline;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("images/hero.jpg") no-repeat;
  background-size: cover;
  background-position: center 120%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

/* затемнение */
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  top: 0;
  left: 0;
}

/* контент */
/* HERO КОНТЕНТ */
.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 1;
  text-align: center; /* Центрируем всё */
  margin: 0 auto; /* Выравниваем по центру */
}

.hero h1 {
  font-size: 56px;
  color: #f5c542;
  margin: 0 0 15px 0;
  text-transform: uppercase; /* Заглавные буквы */
  font-weight: 900; /* Максимально жирный */
  letter-spacing: 2px; /* Небольшой разряд между буквами */
  text-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Легкая тень для объема */
}

.subtitle {
  font-size: 28px;
  margin: 0 0 10px 0;
  font-weight: 300; /* Тонкий шрифт для контраста */
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
}

.small {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 30px 0;
  font-style: italic; /* Курсив для легкости */
  position: relative;
  display: inline-block; /* Чтобы фон был по ширине текста */
  padding: 0 20px;
}

/* Декоративные элементы для .small */
.small::before,
.small::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #f5c542;
  position: absolute;
  top: 50%;
}

.small::before {
  left: -20px;
}

.small::after {
  right: -20px;
}

/* КНОПКИ */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px; /* Скругленные кнопки */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  border: 2px solid #f5c542;
  background: transparent;
  color: #f5c542;
}

.btn:hover {
  background: #f5c542;
  color: #0f0f0f;
}

.btn.red {
  background: #ff1f1f;
  border-color: #ff1f1f;
  color: white;
}

.btn.red:hover {
  background: transparent;
  color: #ff1f1f;
}
/* Адаптация фона для мобильных */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    background: url("images/hero-mobile.png") no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.simple-banner {
  width: 100%;
  background: #0a0a0a;
}

.simple-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px;
}

/* ГАЛЕРЕЯ БЛЮД */
.gallery {
  padding: 60px 0 80px 0;
  background: #0f0f0f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 колонок */
  gap: 15px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4; /* Вертикальные карточки как на референсе */
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  filter: brightness(0.9);
}

.gallery-card:hover img {
  scale: 1.1;
  filter: brightness(0.7);
}

/* Оверлей с текстом */
.card-overlay {
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  padding: 25px 15px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
  color: white;
  transition: 0.4s ease;
}

.gallery-card:hover .card-overlay {
  bottom: 0;
}

.card-overlay h3 {
  color: #f5c542;
  font-size: 18px;
  margin: 0 0 8px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-overlay p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.9;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 20px;
  }
}

/* Адаптация для телефонов */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-overlay {
    padding: 20px 10px 15px;
  }
  
  .card-overlay h3 {
    font-size: 14px;
  }
  
  .card-overlay p {
    font-size: 11px;
  }
}

/* РАЗДЕЛИТЕЛЬ С ПАРАЛЛАКСОМ */
.divider {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background-color: #0f0f0f; /* Запасной фон */
  border-top: 1px solid rgba(245, 197, 66, 0.2);
  border-bottom: 1px solid rgba(245, 197, 66, 0.2);
}

/* Фон с параллакс-эффектом */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/divider.png'); /* Замени на свою картинку */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* ВАЖНО: фиксированный фон */
  opacity: 0.15; /* Прозрачность, чтобы не перебивал текст */
  z-index: 1;
}

/* Контент поверх фона */
.divider-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center; /* Центрирование по горизонтали */
  align-items: center;
  gap: 80px; /* Расстояние между элементами */
  flex-wrap: wrap;
}

/* Отдельный пункт */
.divider-item {
  display: flex;
  flex-direction: column; /* Иконка сверху, текст снизу */
  align-items: center;
  text-align: center;
  gap: 10px;
  min-width: 120px;
}

/* Иконка */
.divider-icon {
  font-size: 48px;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
  cursor: default;
}

/* Анимация при наведении */
.divider-item:hover .divider-icon {
  transform: scale(1.2) rotate(5deg); /* Увеличение + легкий поворот */
  animation: bounce 0.5s ease; /* Или можно просто scale, а bounce для игривости */
}

/* Альтернативная анимация — прыжок */
@keyframes bounce {
  0%, 100% { transform: scale(1.2) rotate(5deg); }
  50% { transform: scale(1.3) rotate(0deg) translateY(-5px); }
}

/* Текст */
.divider-text {
  font-size: 20px;
  font-weight: 600;
  color: #f5c542;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* Чтобы читался на фоне */
}

/* Адаптация для телефонов */
@media (max-width: 768px) {
   .divider {
    padding: 30px 0; /* Было 60px, стало 30px */
  }
  
  /* Оставляем как на компьютере, но меньше */
  .divider-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Уменьшаем расстояние */
  }
  
  /* Пункт - как на компьютере (колонка) */
  .divider-item {
    display: flex;
    flex-direction: column; /* Эмодзи сверху, текст снизу */
    align-items: center;
    text-align: center;
    gap: 8px;
    min-width: 100px; /* Фиксированная ширина для выравнивания */
  }
  
  /* Уменьшаем иконки */
  .divider-icon {
    font-size: 36px;
  }
  
  /* Уменьшаем текст */
  .divider-text {
    font-size: 14px;
    white-space: normal; /* Разрешаем перенос */
  }

}

@media (max-width: 480px) {
  .divider-content {
    flex-direction: column;
    gap: 25px;
  }
}

/* ===== БЛОК ШАУРМА (уникальные классы) ===== */
.shaurma-section {
  padding: 30px 0;
  background: #0f0f0f;
}

.shaurma-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.shaurma-main-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 10px;
  color: white;
}

.shaurma-main-title span {
  color: #f5c542;
}

.shaurma-sub-title {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 50px;
  font-size: 18px;
}

/* Сетка карточек */
.shaurma-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Карточка */
.shaurma-food-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(245, 197, 66, 0.1);
}

.shaurma-food-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 197, 66, 0.2);
  border-color: rgba(245, 197, 66, 0.3);
}

/* Фото */
.shaurma-food-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.shaurma-food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.shaurma-food-card:hover .shaurma-food-img img {
  transform: scale(1.1);
}

/* Информация */
.shaurma-food-info {
  padding: 20px;
}

.shaurma-food-name {
  color: #f5c542;
  font-size: 24px;
  margin: 0 0 10px 0;
}

.shaurma-food-composition {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 60px;
}

/* Цены */
.shaurma-food-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shaurma-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.shaurma-price-row:last-child {
  border-bottom: none;
}

.shaurma-size {
  color: white;
  font-size: 16px;
}

.shaurma-price-value {
  color: #f5c542;
  font-weight: bold;
  font-size: 18px;
}

/* ДОБАВКИ */
.shaurma-addons-block {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(245, 197, 66, 0.2);
}

.shaurma-addons-title {
  color: #f5c542;
  font-size: 28px;
  margin: 0 0 20px 0;
  text-align: center;
}

.shaurma-addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.shaurma-addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: #0f0f0f;
  border-radius: 10px;
  border: 1px solid rgba(245, 197, 66, 0.1);
  transition: 0.3s;
}

.shaurma-addon-item:hover {
  border-color: #f5c542;
  transform: scale(1.02);
}

.shaurma-addon-name {
  color: white;
  font-size: 14px;
}

.shaurma-addon-price {
  color: #f5c542;
  font-weight: bold;
  font-size: 16px;
}

/* Адаптация */
@media (max-width: 992px) {
  .shaurma-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shaurma-addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .shaurma-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .shaurma-addons-grid {
    grid-template-columns: 1fr;
  }
  
  .shaurma-main-title {
    font-size: 36px;
  }
}

/* ===== БЛОК ПИЦЦА (уникальные классы) ===== */
.pizza-section {
  padding: 10px 0;
  background: #0f0f0f;
}

.pizza-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pizza-main-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 10px;
  color: white;
}

.pizza-main-title span {
  color: #f5c542;
}

.pizza-sub-title {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 50px;
  font-size: 18px;
}

.pizza-category-title {
  color: #f5c542;
  font-size: 32px;
  margin: 40px 0 30px 0;
  text-align: center;
  position: relative;
}

.pizza-category-title::before,
.pizza-category-title::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background: rgba(245, 197, 66, 0.3);
  margin: 0 20px;
  vertical-align: middle;
}

/* Сетка карточек */
.pizza-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Карточка */
.pizza-food-card {
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(245, 197, 66, 0.1);
}

.pizza-food-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 197, 66, 0.2);
  border-color: rgba(245, 197, 66, 0.3);
}

/* Фото */
.pizza-food-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pizza-food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pizza-food-card:hover .pizza-food-img img {
  transform: scale(1.1);
}

/* Информация */
.pizza-food-info {
  padding: 20px;
}

.pizza-food-name {
  color: #f5c542;
  font-size: 24px;
  margin: 0 0 10px 0;
}

.pizza-food-composition {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 60px;
}

/* Цены */
.pizza-food-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pizza-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.pizza-price-row:last-child {
  border-bottom: none;
}

.pizza-size {
  color: white;
  font-size: 16px;
}

.pizza-price-value {
  color: #f5c542;
  font-weight: bold;
  font-size: 18px;
}

/* Адаптация */
@media (max-width: 992px) {
  .pizza-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pizza-category-title::before,
  .pizza-category-title::after {
    width: 30px;
    margin: 0 10px;
  }
}

@media (max-width: 576px) {
  .pizza-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .pizza-main-title {
    font-size: 36px;
  }
  
  .pizza-category-title {
    font-size: 28px;
  }
  
  .pizza-category-title::before,
  .pizza-category-title::after {
    display: none;
  }
}

/* ===== БЛОК КОФЕ И НАПИТКИ ===== */
.drinks-section {
  padding: 80px 0;
  background: #0f0f0f;
}

.drinks-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.drinks-main-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 10px;
  color: white;
}

.drinks-main-title span {
  color: #f5c542;
}

.drinks-sub-title {
  text-align: center;
  color: rgba(255,255,255,0.6);
  margin-bottom: 50px;
  font-size: 18px;
}

/* Категория (Кофе / Холодные напитки) */
.drinks-category {
  margin-bottom: 60px;
}

.drinks-category:last-child {
  margin-bottom: 0;
}

.drinks-category-title {
  color: #f5c542;
  font-size: 32px;
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
}

.drinks-category-title::before,
.drinks-category-title::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background: rgba(245, 197, 66, 0.3);
  margin: 0 20px;
  vertical-align: middle;
}

/* Колонки */
.drinks-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.drinks-column {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(245, 197, 66, 0.1);
}

.drinks-subcategory-title {
  color: #f5c542;
  font-size: 22px;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245, 197, 66, 0.2);
}

.drinks-subcategory-margin {
  margin-top: 30px;
}

/* Список напитков */
.drinks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drinks-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  border-radius: 8px;
  will-change: transform, background-color, padding;
}

.drinks-item:hover {
  transform: translateX(8px) scale(1.02);
  background-color: rgba(245, 197, 66, 0.08);
  padding-left: 15px;
  padding-right: 15px;
  border-bottom-color: rgba(245, 197, 66, 0.4);
}

.drinks-item:last-child {
  border-bottom: none;
}

.drinks-name {
  color: white;
  font-size: 15px;
}

.drinks-price {
  color: #f5c542;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  margin-left: 15px;
}

/* Адаптация */
@media (max-width: 992px) {
  .drinks-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .drinks-category-title::before,
  .drinks-category-title::after {
    width: 30px;
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .drinks-columns {
    grid-template-columns: 1fr;
  }
  
  .drinks-main-title {
    font-size: 36px;
  }
  
  .drinks-category-title {
    font-size: 28px;
  }
  
  .drinks-category-title::before,
  .drinks-category-title::after {
    display: none;
  }
}

/* ===== БЛОК ДОСТАВКИ С ПАРАЛЛАКСОМ ===== */
.delivery-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background-color: #0f0f0f;
  border-top: 1px solid rgba(245, 197, 66, 0.2);
  border-bottom: 1px solid rgba(245, 197, 66, 0.2);
}

/* Параллакс-фон */
.delivery-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/delivery-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: 1;
}

.delivery-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.delivery-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.delivery-title {
  font-size: 48px;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  position: relative;
  display: inline-block;
}

.delivery-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #f5c542;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Три преимущества */
.delivery-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.delivery-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}

.delivery-feature-icon {
  font-size: 48px;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
  cursor: default;
}

.delivery-feature-item:hover .delivery-feature-icon {
  transform: scale(1.2) rotate(5deg);
  animation: delivery-bounce 0.5s ease;
}

@keyframes delivery-bounce {
  0%, 100% { transform: scale(1.2) rotate(5deg); }
  50% { transform: scale(1.3) rotate(0deg) translateY(-5px); }
}

.delivery-feature-text {
  font-size: 18px;
  font-weight: 600;
  color: #f5c542;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Кнопка */
.delivery-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f5c542;
  color: #0f0f0f;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease;
  border: 2px solid #f5c542;
  box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
  margin-top: 10px;
}

.delivery-button:hover {
  background: transparent;
  color: #f5c542;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245, 197, 66, 0.5);
}

.delivery-button-logo {
  height: 26px;
  width: auto;
}

/* Адаптация */
@media (max-width: 768px) {
  .delivery-section {
    padding: 70px 0;
  }
  
  .delivery-title {
    font-size: 42px;
  }
  
  .delivery-features {
    gap: 30px;
  }
  
  .delivery-feature-icon {
    font-size: 42px;
  }
  
  .delivery-feature-text {
    font-size: 16px;
  }
  
  .delivery-button {
    padding: 16px 30px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .delivery-section {
    padding: 60px 0;
  }
  
  .delivery-title {
    font-size: 36px;
  }
  
  .delivery-features {
    flex-direction: column;
    gap: 25px;
  }
  
  .delivery-button {
    padding: 14px 25px;
    font-size: 16px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    width: 100%;
    max-width: 300px;
  }
  
  .delivery-title::after {
    width: 60px;
  }
}

/* ===== БЛОК КАРТЫ ===== */
.map-section {
  padding: 80px 0;
  background: #0f0f0f;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 20px;
  color: white;
}

.map-title span {
  color: #f5c542;
}

.map-address {
  text-align: center;
  margin-bottom: 40px;
}

.map-address p {
  color: white;
  font-size: 20px;
  margin: 0 0 10px 0;
}

.map-landmark {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.map-landmark::before,
.map-landmark::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #f5c542;
  vertical-align: middle;
  margin: 0 10px;
  opacity: 0.5;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(245, 197, 66, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(245, 197, 66, 0.15);
  border-color: rgba(245, 197, 66, 0.3);
}

/* Адаптация */
@media (max-width: 768px) {
  .map-title {
    font-size: 42px;
  }
  
  .map-address p {
    font-size: 18px;
  }
  
  .map-landmark {
    font-size: 14px;
  }
  
  .map-landmark::before,
  .map-landmark::after {
    width: 20px;
    margin: 0 5px;
  }
  
  .map-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .map-title {
    font-size: 36px;
  }
  
  .map-address p {
    font-size: 16px;
  }
  
  .map-landmark::before,
  .map-landmark::after {
    display: none;
  }
  
  .map-wrapper iframe {
    height: 300px;
  }
}

/* ===== ФУТЕР / КОНТАКТЫ ===== */
.footer {
  background: #0a0a0a;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(245, 197, 66, 0.2);
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Левая колонка с брендом */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-brand .footer-logo img {
  width: 40px;
  margin-right: 10px;
}

.footer-brand .footer-logo span {
  color: #f5c542;
  font-weight: bold;
  font-size: 24px;
}

.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-style: italic;
  margin: 0;
}

/* Заголовки колонок */
.footer-title {
  color: #f5c542;
  font-size: 18px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #f5c542;
  opacity: 0.5;
}

/* Списки ссылок */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #f5c542;
  transform: translateX(5px);
}

/* Контактная информация */
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-phone,
.footer-email {
  color: #f5c542;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
  color: #ff4c1f;
  text-decoration: underline;
}

.footer-address,
.footer-work {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin: 5px 0;
}

/* Нижняя плашка */
.footer-bottom {
  border-top: 1px solid rgba(245, 197, 66, 0.2);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-copyright strong {
  color: #f5c542;
  font-weight: bold;
}

.footer-payment {
  text-align: right;
  max-width: 500px;
}

/* Адаптация */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-payment {
    text-align: center;
  }
  
  .footer-title::after {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  .footer-links a:hover {
    transform: translateX(0) translateY(-2px);
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 16px;
  }
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ ===== */

/* Бургер-меню */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger-menu span {
  width: 100%;
  height: 3px;
  background: #f5c542;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Анимация бургера при открытии */
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Мобильное меню (скрыто по умолчанию) */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(245, 197, 66, 0.2);
  z-index: 999;
   opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: #f5c542;
  background: rgba(245, 197, 66, 0.1);
}

/* Мобильный телефон (под лого) */
.mobile-call {
  display: none;
  text-align: center;
  padding: 5px 0 10px;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(245, 197, 66, 0.1);
}

.mobile-call a {
  color: #f5c542;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

/* ===== АДАПТАЦИЯ ДЛЯ ТЕЛЕФОНОВ ===== */
@media (max-width: 768px) {
  
  /* Показываем бургер */
  .burger-menu {
    display: flex;
  }
  
  /* Скрываем обычную навигацию */
   .nav {
    display: none !important;
  }
  
  /* Скрываем кнопку телефона в хедере */
  .desktop-call {
    display: none !important;
  }
  
  /* Показываем телефон под лого */
  .mobile-call {
    display: block;
  }
  
  /* Центрируем лого */
  .header .container {
    justify-content: center;
    position: relative;
  }
  
  /* Позиционируем бургер слева */
  .burger-menu {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Лого по центру */
  .logo {
    margin: 0 auto;
  }
  
  /* Активное мобильное меню */
  .mobile-nav.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
  
  /* Hero секция для мобильных */
  .hero h1 {
    font-size: 42px;
  }
  
  .subtitle {
    font-size: 22px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }
  
  .subtitle {
    font-size: 18px;
  }
  
  .small {
    font-size: 14px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ===== ПЛАВНОСТЬ ===== */

/* Плавное открытие мобильного меню */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(245, 197, 66, 0.2);
  z-index: 999;
  
  /* Плавность */
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.mobile-nav.active {
  display: flex;
  pointer-events: all;
}

/* Плавная прокрутка для всей страницы */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* Чтобы не перекрывало хедером */
}

/* Плавное появление карточек */
.shaurma-card,
.pizza-food-card,
.gallery-card,
.addon-item,
.drinks-item {
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}

/* Плавные кнопки */
.btn,
.delivery-button,
.call-btn,
.footer-links a {
  transition: all 0.3s ease !important;
}

/* Плавный ховер для карточек */
.shaurma-card:hover,
.pizza-food-card:hover,
.gallery-card:hover {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 110px; /* Больше отступ, чтобы учесть телефон под лого */
  }
}

