/* Общие сбросы и базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  overflow: hidden;
}

/* Контейнер меню занимает весь экран */
.menu-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Центральный контент меню */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Контейнер логотипа с относительным позиционированием */
.logo-wrapper {
  margin-bottom: 30px;
}
.logo-container {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}

/* Центральный огурец – убраны круглые стили */
.logo {
  width: 200px;
  height: 200px;
  /* Убраны border-radius, border и box-shadow */
  position: relative;
  z-index: 2;
}

/* Помидоры – расположены по бокам, увеличены и приближены */
.tomato {
  position: absolute;
  width: 100px;
  height: 100px;
  opacity: 0.9;
  z-index: 1;
}
.tomato-left {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.tomato-right {
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Заголовок меню */
h1 {
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Стилизация кнопок */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.menu-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.menu-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.3);
}

/* Футер */
.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 768px) {
  .logo-container {
    width: 150px;
    height: 150px;
  }
  .logo {
    width: 150px;
    height: 150px;
  }
  h1 {
    font-size: 2rem;
  }
  .menu-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .tomato {
    width: 80px;
    height: 80px;
  }
  .tomato-left {
    left: -15px;
  }
  .tomato-right {
    right: -15px;
  }
}