/* Food + Drinks Menu (same layout style) */
@import url('https://fonts.googleapis.com/css2?family=Port+Lligat+Sans&family=Lato:wght@400;500;700&display=swap');

/* ===== Shared ===== */
.vat-notice{
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  color: #00000060;
  text-align: center;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 0px;
}

.card_wrapper{
  width: 100%;
}

/* dotted separator used by both */
.price_list_separator{
  border-bottom-style: dotted;
  border-bottom-width: 2px;
  border-bottom-color: #A34F31;
  margin-left: 8px;
  margin-right: 8px;
  flex: 1 1 auto;
}

/* ===== FOOD ===== */
.food-row{
  width: 95%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.food-section h2{
  font-family: 'Port Lligat Sans', system-ui, -apple-system, sans-serif;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
  font-weight: 400;
  font-size: 45px;
  color: #8A967D;
}

/* food image inside card_wrapper (from wp_get_attachment_image) */
.food-row .card_wrapper > img{
  margin-bottom: 10px;
  border-radius: 25px;
  display: block;
  max-width: 100%;
  height: auto;
}

/* row like drinks: title | separator | price */
.food-card{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

h3.food-card__title{
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #A34F31;
  padding-bottom: 0;
  margin-bottom: 0;
}

p.food-card__price{
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
  color: #A34F31;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

.food-card__price span + span::before {
  content: " / ";
  margin: 0 2px;
}

.description_row{
  margin-top: 6px;
}

p.food-card__description{
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  margin: 0;
}

/* ===== DRINKS ===== */
.drinks-section{
  width: 95%;
  margin: auto;
}

.drinks-row{
  margin-bottom: 40px;
}

.drinks-card{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.drinks-section h2{
  font-family: 'Port Lligat Sans', system-ui, -apple-system, sans-serif;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-weight: 400;
  color: #8A967D;
  font-size: 45px;
}

h3.drinks-card__title{
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #A34F31;
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 24px;
}

p.drinks-card__price{
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  color: #A34F31;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0;
}

p.drinks-card__description{
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  margin: 0;
}

/* ===== Responsive ===== */
@media only screen and (max-width: 980px){
  .food-section h2,
  .drinks-section h2{
    font-size: 40px;
  }

  h3.food-card__title,
  h3.drinks-card__title{
    font-size: 18px;
  }

  p.drinks-card__price,
  p.food-card__price{
	font-size: 16px;
  }

  p.drinks-card__description,
  p.food-card__description{
	font-size: 12px;
  }

  
}

@media only screen and (max-width: 480px){
  .food-row,
  .drinks-section{
    width: 100%;
  }

  /* allow wrapping so long titles don't overflow */
  .food-card,
  .drinks-card{
    flex-wrap: wrap;
    row-gap: 6px;
  }

  /* make separator go to next line nicely on very small screens */
  .price_list_separator{
	display: none;
    flex: 1 1 100%;
    margin-left: 0;
    margin-right: 0;
  }

  p.food-card__price,
  p.drinks-card__price{
    font-size: 16px;
/*	flex-direction: column;*/
    align-items: flex-end; /* or flex-start if you prefer */
  }

/*
  .food-card__price span + span::before,
  .drinks-card__price span + span::before{
    content: "";
    margin: 0;
  
  }
*/
  h3.food-card__title,
  h3.drinks-card__title{
    margin-top: 0px;
	margin-bottom: 0px;
  }
	
	.food-card > .price-row:nth-child(2){
		display: none;
	}

}