/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/

.wrapper{
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Основные стили меню */
.menu {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1 1 auto;
}
  
.menu__header {
  text-align: center;
  margin-bottom: 40px;
}
  
.menu__title {
  font-family: 'Playfair Display', serif;
  color: #09501C;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
  
.menu__divider {
  width: 200px;
  margin: 0 auto;
}
  
/* Фильтры */
.menu__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
  
.filter-btn {
  background: none;
  border: 2px solid #FFD700;
  color: #09501C;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
  
.filter-btn.active {
  background: #FFD700;
  font-weight: bold;
}
  
/* Сетка блюд */
.menu__block {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}
  
.menu-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
  
.menu-item:hover {
  transform: translateY(-5px);
}
  
.menu-item__image {
  position: relative;
  height: 200px;
}
  
.menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #B22222;
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
}
  
.menu-item__content {
  padding: 20px;
  background: white;
}
  
.menu-item__title {
  color: #09501C;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
  
.menu-item__desc {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
  
.menu-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  
.menu-item__price {
  font-weight: bold;
  color: #09501C;
  font-size: 1.1rem;
}
 
.menu-item__btn {
  background: #FFD700;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
}
  
/* Баннер бара */
.alcohol-banner {
  background: linear-gradient(rgba(9, 80, 28, 0.8), rgba(9, 80, 28, 0.8)), 
                url('img/bar-bg.jpg') center/cover;
  padding: 60px 40px;
  border-radius: 8px;
  color: white;
  text-align: center;
}
  
.alcohol-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #FFD700;
}
  
.button--gold {
  background: #FFD700;
  color: #09501C;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
}
  
/* Адаптация */
@media (max-width: 768px) {
  .menu__block {
    flex-direction: column;
  }
}
