@import url("//fonts.googleapis.com/css?family=Noto+Serif&display=swap");
body {
  background-color: black;
  margin: 0;
  font-family: "Noto Serif", serif;
}

.page-content, .mobile-spacing {
  display: none;
}

section.bottom, section.top {
  width: 100%;
  height: 49.8vh;
  display: block;
}
section.left, section.right {
  width: 49.9%;
  height: 100%;
  display: inline-block;
  float: left;
}
section.left {
  border-right: 1px solid white;
}
section.right {
  border-left: 1px solid white;
}
section.top {
  border-bottom: 1px solid white;
}
section.bottom {
  border-top: 1px solid white;
}

.logo-holder-centered {
  width: 310px;
  height: 200px;
  top: 50%;
  left: 49.5%;
  margin-top: calc(-200px / 2);
  margin-left: calc(-310px / 2 - 11px);
  position: absolute;
  transition: 0.2s;
  z-index: 1000;
  /* background-color: black; */
}
.logo-holder-centered:hover {
  height: 35vh;
  left: 49.5%;
  top: 49.5%;
}
.logo-holder-centered .hover-text {
  display: none;
  position: absolute;
  transform: translate3d(0, 38%, 0);
  font-size: 2.5vw;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-shadow: black 0 0 5px;
  color: white;
  text-decoration: none;
  text-align: center;
}
.logo-holder-centered .open-hours {
  display: none;
  text-align: center;
  text-shadow: black 0 0 5px;
  color: white;
  width: 100%;
  font-size: 1.8vh;
  transition: 0.2s;
}

.logo-holder-centered .open-hours p {
	margin: auto;
}
.logo-holder-centered:hover .open-hours {
  opacity: 0;
}
.logo-holder-centered:hover .hover-text {
  display: block;
}
.logo-holder-centered:hover img {
  filter: opacity(70%) brightness(70%);
  -webkit-filter: opacity(70%) brightness(70%);
  -moz-filter: opacity(70%) brightness(70%);
  -o-filter: opacity(70%) brightness(70%);
  -ms-filter: opacity(70%) brightness(70%);
}

.logo-holder-centered .logo-container {
	width: 310px;
    height: 200px;
	text-align: center;
}

.logo {
  height: 100%;
  -webkit-filter: drop-shadow(0px 0px 20px red);
  filter: drop-shadow(0px 0px 5px red);
}

section .about-us {
  background: url("../img/about-us.jpg") no-repeat center;
  background-size: cover;
}
section .news {
  background: url("../img/news.jpg") no-repeat center;
  background-size: cover;
}
section .menu {
  background: url("../img/menu.jpg") no-repeat center;
  background-size: cover;
}
section .location {
  background: url("../img/location.jpg") no-repeat center;
  background-size: cover;
}
section .section-name {
  position: relative;
  /* display: block; */
  top: 45%;
  /* left: 50%; */
  background-color: rgba(255, 255, 255, 0.5);
  text-align: center;
  float: left;
  width: 100%;
  font-size: 2.6vw;
  color: white;
  opacity: 0;
  transition: 0.3s;
}
section.left:hover .section-name, section.right:hover .section-name {
  opacity: 1;
  cursor: pointer;
}

.vcenter {
  text-shadow: 0 0 5px red;
  transition: 0.2s;
}
.vcenter:after {
  display: inline-block;
  margin: 0 0 8px 20px;
  height: 3px;
  content: " ";
  text-shadow: none;
  background-color: #000;
  width: 140px;
}
.vcenter:before {
  display: inline-block;
  margin: 0 20px 8px 0;
  height: 3px;
  content: " ";
  text-shadow: none;
  background-color: #000;
  width: 140px;
}
.vcenter:hover {
  font-size: 2.8vw;
}

section.footer {
  height: 7vh;
  width: 100%;
  position: fixed;
  bottom: 0;
  text-align: center;
  color: white;
  font-size: 2vw;
}

.footer .contact, .footer .address, .footer .socials {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.footer .address {
  position: absolute;
  left: 10px;
  bottom: 0;
  float: left;
  font-size: 1.6vw;
  text-shadow: 0 0 5px black;
  transition: 0.2s;
  padding: 5px 20px 5px 20px;
  overflow: hidden;
  width: 40px;
  white-space: nowrap;
  animation: jump_animation 2s linear alternate infinite;
}
.footer .address:before {
  background: url("../img/location.png") no-repeat center;
  background-size: contain;
  width: 29px;
  height: 36px;
  float: left;
  margin: 0 20px 0 20px;
  content: "";
  display: inline-block;
  -webkit-filter: drop-shadow(0px 0px 5px black);
  filter: drop-shadow(0px 0px 5px black);
}
.footer .address:hover {
  background-color: rgba(0, 0, 0, 0.8);
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  cursor: pointer;
  width: 35vw;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
  cursor: pointer;
}
.footer .contact {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background-color: red;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 1.3vw;
  padding: 5px 10px 5px 10px;
  box-shadow: 0 0 10px black;
  transition: 0.3s;
  text-decoration: none !important;
  width: 20vw;
  overflow: hidden;
  height: 6vh;
}
.footer .contact:hover {
  font-size: 1.5vw;
  cursor: pointer;
  height: 15vh;
}

.footer .socials .fb:hover, .footer .socials .insta:hover, .footer .socials .newsletter:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
  cursor: pointer;
}
.footer .contact .phone, .footer .contact .email {
  display: inline-block;
  margin: 5px 0 15px 0;
  text-decoration: none;
  color: inherit;
  height: 5vh;
}

.footer .contact img, .footer .socials img {
	width: auto;
    height: 100%;
    vertical-align: middle;
}

.footer .socials {
  position: absolute;
  right: 0;
  bottom: 10px;
  -webkit-filter: drop-shadow(0px 0px 5px black);
  filter: drop-shadow(0px 0px 5px black);
  transition: 0.3s;
}
.footer .socials .fb:hover, .footer .socials .insta:hover, .footer .socials .newsletter:hover {
  margin-top: -10px;
}
.footer .socials .fb, .footer .socials .insta, .footer .socials .newsletter {
  width: auto;
  height: 5vh;
  float: left;
  margin: 0 6px 0 20px;
  display: block;
  animation: jump_animation 2s linear alternate infinite;
}

.book-a-table, .mobile-spacing {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background-color: red;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 1.3vw;
  padding: 5px 10px 5px 10px;
  box-shadow: 0 0 10px black;
  transition: 0.2s;
  text-align: center;
}
.book-a-table:hover {
  font-size: 1.5vw;
  cursor: pointer;
}

.mobile-spacing {
	position: relative;
}
.loader-background {
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  z-index: 999;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  z-index: 2000;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  height: 80%;
  position: relative;
  transition: all 5s ease-in-out;
}
.popup .white-background {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  padding: 10px;
}
.popup.white-background .close {
  color: #333;
}
.popup .logo-holder {
  width: 30%;
  height: 30%;
  top: 33%;
  left: 40%;
  /* margin-top: calc(17%); */
  /* margin-left: calc(40%); */
  transition: 0.2s;
  position: absolute;
  /* background-color: black; */
}
.popup .close {
  position: absolute;
  top: 0px;
  right: 0px;
  transition: all 200ms;
  font-size: 6vh;
  font-weight: bold;
  text-decoration: none;
  color: #eee;
  text-shadow: black 0px 0px 5px;
}
.popup .close:hover {
  color: #d80606;
}
.popup .content {
  overflow-y: scroll;
  height: 100%;
}
.popup .content .control {
  display: block;
  color: rgba(0, 0, 0, 0.8);
  font-size: 4vh;
  position: absolute;
  top: 50%;
  text-shadow: rgba(255,255,255, 0.8) 0px 0px 4px;
}
.popup .content .control.right {
  right: 20px;
}
.popup .content .control:hover {
  color: white;
  cursor: pointer;
}
.popup .content > .text {
  display: none;
}
.popup .content > .title {
  display: none;
  text-align: center;
  color: white;
  background: red;
  position: fixed;
  left: 0;
  top: 0;
  margin-top: 3%;
  width: 2%;
  height: 90%;
  border-radius: 0 10px 10px 0;
}

.popup .content > .date {
  font-size: small;
  color: grey;
  text-align: right;
  margin-top: 10px;
}

.popup .content .title .rotated {
  position: relative;
  top: 50%;
  left: 50%;
  -moz-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
  -webkit-transform: rotate(-90deg) translateX(-50%) translateY(-50%);
  transform: rotate(-90deg) translateX(-50%) translateY(-50%);
  white-space: nowrap;
  font-size: 1.5vw;
}
.popup .content form .styled-submit {
  text-align: center;
  margin-top: 13px;
  margin-bottom: 15px;
  background-color: #c80000;
  vertical-align: middle;
  color: white;
  border: solid thin white;
  width: 20%;
  margin-left: 15px;
  box-shadow: red 0px 0px 10px;
}
.popup .content p {
  display: block;
  margin-bottom: 10px;
}
.popup .content p.italics {
  font-style: italic;
  font-size: calc(120%);
}
.popup .content p.quoted:before, .popup .content p.quoted:after {
  content: '"';
  font-size: 2vh;
}
.popup .content p:first-of-type::first-letter {
    font-size: calc(120%);
}
.popup .content .heading-image {
  height: 40vh;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  background-position: center center;
  box-shadow: inset 0px 0px 9px 11px rgba(255, 255, 255, 0.9);
}
.popup .content .dynamic-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  display: inline-block;
  max-width: 70%;
  padding: 15px;
  font-size: 2.2vh;
}
.popup .content .dynamic-content .text {
  white-space: pre-line;
  overflow-wrap: break-word;
}

.popup .content .dynamic-content .date {
  font-size: small;
  color: grey;
  text-align: right;
  margin-top: 10px;
}

.popup .content .dynamic-content.bigger {
  max-width: 90%;
}
.popup .content .dynamic-content img {
  border-radius: 5px;
  box-shadow: black 0 0 2px;
  max-width: 100%;
  margin-top: 15px;
}
.popup .content .dynamic-content .img:empty {
  display: none;
}

.content .box {
  text-align: center;
  width: 100%;
}
.content .box .title {
  text-align: center;
  color: aliceblue;
  text-transform: uppercase;
  font-size: 3vh;
  transform: translateX(-50%);
  margin-left: 50%;
  background: red;
  padding: 15px;
}

.content .box .title.small {
  background: darkred;
  padding: 5px;
}
.content .box .title.no-bg {
  background: none;
}
.content .box:first-child:not(.menu-choose) .title {
  border-radius: 10px 10px 0 0;
}

.content .box form input {
	font-size: 3vh;
}

.box.menu-choose .title {
  border-radius: 10px;
}
.box.menu-choose:hover {
  cursor: pointer;
  background: lightred;
}
.dishes-menu .items {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  margin: 0;
}
.dishes-menu .items li {
  display: block;
  padding: 10px 10px 3vh 10px;
}
.dishes-menu .items .title {
  display: flex;
  font-size: 3.5vh;
  transition: 0.2s;
}
.dishes-menu .items .title .quantity {
  font-size: 2vh;
}
.dishes-menu .items .title .dots {
  flex: 0;
  border-bottom: 2px dotted grey;
  margin: 0 10px 5px 10px;
  transition: 0.2s;
}
.dishes-menu .items .title .price {
  font-size: 3.5vh;
  visibility: hidden;
  transition: 0.2s;
  color: red;
  text-shadow: gold 2px 0;
}
.dishes-menu .items .title .price:before {
  content: "$";
  margin-right: 2px;
}
.dishes-menu .items li:hover .title .dots {
  flex: 1;
}
.dishes-menu .items li:hover .title .price {
  visibility: visible;
}

.dishes-menu .items .desc {
  font-size: 2.5vh;
}

.menu-goback{
  position: absolute;
  top: 0px;
  left: 0px;
  transition: all 200ms;
  font-size: 6vh;
  font-weight: bold;
  text-decoration: none;
  color: #eee;
  text-shadow: black 0px 0px 5px;
  cursor: pointer;
  display: none;
}
.box.menu-choose {
  margin-bottom: 20px;
}

input[type=submit]:hover {
  cursor: pointer;
}

.galleries {
	position: fixed;
    right: 0;
    top: calc(50% - 20px);
    float: left;
    font-size: 1.6vw;
    text-shadow: 0 0 5px black;
    transition: 0.2s;
    padding: 10px 20px 10px 0px;
    overflow: hidden;
    width: 40px;
    white-space: nowrap;
    background-color: red;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    color: white;
}
.galleries img {
    width: auto;
	height: 6vh;
    float: left;
    margin: 0px 20px 0 10px;
    content: "";
    display: inline-block;
    -webkit-filter: drop-shadow(0px 0px 5px black);
    filter: drop-shadow(0px 0px 5px black);
	vertical-align: middle;
}
.galleries:hover {
  width: 22vw;
  cursor: pointer;
}

.galleries.top {
	display: grid;
	justify-items: center;
	right: calc(50% - 10vw);
    top: -4vw;
	padding: initial;
	height: auto;
	background-color: initial;
	width: auto;
	border-radius: initial;
}

.galleries.top:hover {
	width: auto;
	top: 0;
}
.galleries.top img {
	
    padding: 10px;
	margin: initial;
	height: 6vh;
}

.galleries.top div {
	background-color: red;
	grid-row: 2;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	
}
.galleries.top span {
	grid-row: 1;
    padding: 10px 10px 10px 10px;
    background-color: red;
	border-radius: 0 0 5px 5px;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes jump_animation {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-30%);
  }
  10% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-15%);
  }
  20% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5%);
  }
  30% {
    transform: translateY(0);
  }
}

@media (max-width: 987px){
	section.top, section.bottom, section.left, section.right {
		border: none;
	}
	
	section.left, section.right {
	  width: 100%;
	  min-height: 49.9%;
	  display: inline-block;
	  float: left;
	}
	
	section.left .section-name, section.right .section-name{
		opacity: 1;
		cursor: pointer;
		font-size: 7.6vw;
	}
	
	.book-a-table, .mobile-spacing{
		position: relative;
		border: 0;
		font-size: 5.3vw;
		pointer-events: focus;
	}
	
	.mobile-spacing {
		display: block;
	}
	
	.book-a-table:hover, .book-a-table:focus {
		font-size: 5.5vw;
		cursor: pointer;
	}
	
	.vcenter {
		pointer-events: focus;
	}
	
	.vcenter:hover, .vcenter:focus {
		font-size: 7.8vw;
	}
	
	.popup {
		width: 95%;
		height: 90%;
		margin: 5vh auto;
		padding: initial;
	}
	.popup .close {
		font-size: 6vw;
	}
	
	.popup .content .dynamic-content {
		max-width: 95%;
		font-size: 2.2vw;
	}

	.popup .content .control {
		font-size: 4vw;
	}
	
	.popup .content p.quoted:before, .popup .content p.quoted:after {
		font-size: 2vw;
	}
	
	.content .box .title {
		font-size: 3vw;
	}


	.content .box form input {
		font-size: 3vw;
	}


	.dishes-menu .items .title {
		font-size: 3.5vw;
	}
	

	.dishes-menu .items .title .quantity {
		font-size: 2vw;
	}
	

	.dishes-menu .items .title .price {
		font-size: 3.5vw;
	}


	.dishes-menu .items .desc {
		font-size: 2.5vw;
	}

	
	.logo-holder-centered {
		all: unset;
		position: relative;
		pointer-events: none;
		display: flex;
		flex-direction: column;
	}
	
	.logo-holder-centered .logo-container{
		width: auto;
		height: 26vh;
		padding-top: 10px;
		order: 2;
		background: url("../img/logo_bg.jpg") no-repeat center center;
		background-size: cover;
	}
	
	.logo-holder-centered .open-hours {
		font-size: 3.5vw;
		background-color: red;
	}

	.logo-holder-centered .open-hours p {
		margin: auto 5vw auto 5vw;
		display: inline-block;
	}
	
	section .footer {
		height: initial;
	}
	
	.footer .address {
		display: none;
	}
	
	.footer .socials {
		bottom: 8vh;
	}
	
	.footer .socials .newsletter, .footer .socials .insta, .footer .socials .fb {
		float: initial;
		margin: 0 6px 6px 0px;
	}
	
	.footer .contact {
		width: 95vw;
		font-size: 4.2vw;
		padding-bottom: 10px;
		pointer-events: none;
		position: relative;
		left: initial;
		transform: none;
		height: 7vh;
	}
	
	.footer .contact:hover, .footer .contact:focus{
		height: 12vh;
		font-size: 4.3vw;
		cursor: pointer;
	}
	
	.footer .contact .email, .footer .contact .phone {
		pointer-events: all;
	}
	
	.footer .contact .phone:before, .footer .contact .email:before {
		width: 6vw;
		height: 3vh;
	}
	
	.galleries img {
		width: auto;
		height: 6vh;
	}
	
	.galleries:hover, .galleries:focus{
		 width: 40px;
	}
}