/* ============================================================
   Menu Template Variables
   ============================================================
   Adjust these variables to customize the menu appearance.
   These are designed to be reusable across different websites.
   ============================================================ */
:root {
	/* --- Layout --- */
	--food-columns-desktop: 3;
	--food-columns-tablet: 2;
	--food-columns-mobile: 1;

	/* --- Spacing --- */
	--food-card-padding:       15px 15px; /* desktop */
	--food-card-padding-small: 10px 10px; /* tablet + mobile */
	--food-row-gap:            0px;
	--menu-h2-padding-bottom:  40px;
	--menu-h3-padding-bottom:  20px;
	--menu-description-padding-bottom: .5rem;

	/* --- Font Families --- */
	--menu-font-family-price: 'Pacific Default';
	--menu-font-family-card-title: 'Lato';

	/* --- Font Sizes --- */
	--menu-section-title-size: 30px;
	--menu-food-card-title-size: 24px;
	--menu-drinks-card-title-size: 20px;
	--menu-price-size: 20px;
	--menu-description-size: 16px;

	/* --- Font Weights --- */
	--menu-font-weight-bold: 700;
	--menu-font-weight-semibold: 600;

	/* --- Colors --- */
	--menu-font-color: #040809;
	--menu-separator-color: #a9a9a9;
}

/* General */
.section-title-row {
	padding-bottom: 20px;

}

.section-title-row p {
	font-weight: var(--menu-font-weight-bold);
}

.price_list_separator {
	border-bottom-style: dotted;
	border-bottom-width: 2px;
	border-bottom-color: var(--menu-separator-color);
	margin-left: 5px;
	margin-right: 5px;
	flex: 1 1;
}

.vat-notice {
	text-align: center;
	font-size: 14px;
	margin: 10px 0 40px;
	color: var(--menu-font-color);
}

/* Food Menu */
.food-section {
	text-align: center;
}

.food-section h2 {
	font-size: var(--menu-section-title-size);
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 2px;
	padding-bottom: var(--menu-h2-padding-bottom);
	color:#040809;

}

.food-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: var(--food-row-gap);
	justify-content: center;
}

.food-card {
	padding: var(--food-card-padding);
	width: calc(100% / var(--food-columns-desktop));
	text-align: center;
	max-width: 375px;
}

.food-card__title {
	font-size: var(--menu-food-card-title-size);
	padding-bottom: var(--menu-h3-padding-bottom);
	margin-top: 20px;
}

.food-card__description {
	padding-bottom: var(--menu-description-padding-bottom);
	font-size: var(--menu-description-size);
	line-height: 1.3em;
	color: var(--menu-font-color);
}

.food-card__price {
	font-family: var(--menu-font-family-price);
	font-size: var(--menu-price-size);
	color: var(--menu-font-color);
}

@media only screen and (max-width: 1150px) {
	.food-card {
		padding: var(--food-card-padding-small);
		width: calc(100% / var(--food-columns-tablet));
	}
}

@media only screen and (max-width: 755px) {
	.food-card {
		padding: var(--food-card-padding-small);
		width: calc(100% / var(--food-columns-mobile));
	}
	
	.food-section h2 {
		font-size: 24px;
	}
}

/* Drinks Menu */
.drinks-section .section-title-row {
	text-align: center;
}

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

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

.drinks-section h2 {
	font-size: var(--menu-section-title-size);
	padding-bottom: var(--menu-h2-padding-bottom);
}

.drinks-card__title {
	padding-bottom: var(--menu-h3-padding-bottom);
	font-size: var(--menu-drinks-card-title-size);
	font-family: var(--menu-font-family-card-title);
}

.drinks-card__price {
	font-size: 18px;
	font-weight: 400;
	font-family: var(--menu-font-family-price);
	color: var(--menu-font-color);
}

.drinks-card__description {
	font-weight: var(--menu-font-weight-semibold);
	font-family: var(--menu-font-family-price);
	color: var(--menu-font-color);
}

.description_row {
	padding-bottom: 20px;
}

@media only screen and (max-width: 755px) {
	.drinks-card__title {
		max-width: 250px; /* prevent long price overflow on small screen */
		font-size: 18px;
	}
	
	.drinks-card__price {
	font-size: 14px;
  }
}


/* Food Image Round Frame */

/* 1. create border */
.plate-frame {
  position: relative;
  width: 300px; 
  height: 300px; 
  border-radius: 50%;
  border: 2px solid #a3c49e; 
  padding: 8px; 
  margin: 0 auto 15px auto; 
  
  /* center the image */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 2. Round Dots */
.plate-frame::before {
  content: "";
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border-radius: 50%;
  border: none;
  
  /* stroke-dasharray for adjusting the dots */
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50%25' cy='50%25' r='48%25' fill='none' stroke='%2393B37D' stroke-width='2.5' stroke-linecap='round' stroke-dasharray='0, 6.7' /%3E%3C/svg%3E");
  
  z-index: 1;
  pointer-events: none;
  transform: rotate(45deg); 
}

/* 3. food image */
img.food-image {
   width: 92% !important;
  height: 92% !important;
  object-fit: cover;
  border-radius: 50%; 
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
}