@font-face {
  font-family: "Rosign";
  src: url("../fonts/Rosign-BoldItalic.woff") format("woff2"), url("../fonts/Rosign-BoldItalic.woff2") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "XCharter";
  src: url("../fonts/XCharter-Roman.woff2") format("woff2"), url("../fonts/XCharter-Roman.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "XCharter";
  src: url("../fonts/XCharter-Bold.woff2") format("woff2"), url("../fonts/XCharter-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  font-family: "XCharter", serif;
}

img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rosign", sans-serif;
  margin: 0;
  padding: 0;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.content {
  width: 80%;
  max-width: 1000px;
  position: relative;
  z-index: 21;
}

.content-cols {
  columns: 2 auto;
  column-gap: 1rem;
}
.content-cols > * {
  width: 100%;
  display: inline-block;
}
@media (max-width: 1000px) {
  .content-cols {
    columns: 1 auto;
  }
}

.intro {
  font-family: Rosign, sans-serif;
  height: 100vh;
  background: url("../imgs/BCKG.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border: 1rem solid #A6D0E4;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 99999;
}
.intro::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}
.intro header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 0 1rem;
  position: relative;
  z-index: 11;
  margin-top: 1rem;
}
@media (max-width: 1000px) {
  .intro header {
    position: fixed;
    background: #7897AB;
    width: calc(100vw - 3rem);
    height: 3rem;
  }
}
.intro h1 {
  z-index: -1;
}
.intro nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.intro nav ul li {
  margin: 0 1rem;
}
.intro nav ul a {
  color: white;
  text-decoration: none;
  font-family: Rosign, sans-serif;
}
.intro nav > button {
  display: none;
}
.intro nav .menu-overlay {
  position: fixed;
  left: -100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 20%;
  height: 100vh;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
@media (max-width: 1000px) {
  .intro nav {
    position: fixed;
    width: 80%;
    height: 100vh;
    background: transparent;
    top: 0rem;
    right: -76%;
    transition: right 0.5s ease, background-color 0.5s ease;
  }
  .intro nav > button {
    position: absolute;
    left: -4rem;
    top: 1rem;
    background: transparent;
    border: none;
    color: white;
    width: 4rem;
    height: 4rem;
    display: block;
    cursor: pointer;
    top: 1.5rem;
  }
  .intro nav > button svg {
    fill: white;
    width: 100%;
    height: 100%;
  }
  .intro nav ul {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 2rem;
  }
  .intro nav ul li {
    margin-top: 2rem;
    font-size: 1.5rem;
    text-align: right;
  }
  .intro nav .close-icon {
    display: none;
  }
  .intro nav .open-icon {
    display: block;
  }
  .intro nav.open {
    right: 0;
    left: auto;
    background: #7897AB;
  }
  .intro nav.open .close-icon {
    display: block;
  }
  .intro nav.open .open-icon {
    display: none;
  }
  .intro nav.open .menu-overlay {
    opacity: 100%;
    left: 0;
  }
}
.intro-title {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
}
.intro-title img {
  width: 14rem;
}
@media (max-width: 1000px) {
  .intro-title img {
    width: 7rem;
  }
}
.intro-title h2 {
  font-size: 7rem;
}
@media (max-width: 1000px) {
  .intro-title h2 {
    font-size: 3rem;
  }
}
.intro-title h3 {
  font-size: 2.7rem;
}
@media (max-width: 1000px) {
  .intro-title h3 {
    font-size: 1.2rem;
  }
}
.intro-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}
.intro-links a {
  display: flex;
  padding: 1rem 2rem;
  border-radius: 6rem;
  background: #7897AB;
  color: white;
  width: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  font-family: Rosign, sans-serif;
}

.restaurant {
  background: url("../imgs/PATTERN.jpg");
  background-repeat: repeat;
  padding: 2rem 0;
  color: #7897AB;
}
.restaurant-pics {
  display: grid;
  grid-template-columns: 1fr, 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1rem;
}
.restaurant-pics div:first-child {
  grid-column-start: 1;
  grid-column-end: 3;
}
.restaurant-pics img {
  max-width: 100%;
}
.restaurant-text {
  line-height: 1.6rem;
  font-size: 1.1rem;
  margin-top: 2rem;
}
@media (max-width: 1000px) {
  .restaurant-text {
    order: -1;
  }
}
.restaurant h4 {
  margin-bottom: 0.5rem;
}
.restaurant p + h4 {
  margin-top: 4rem;
}

.intro-menu {
  background: #A6D0E4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.intro-menu h4 {
  color: white;
  margin-bottom: 2rem;
}
.intro-menu img {
  max-width: 100%;
}
.intro-menu .nav {
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
}
.intro-menu h5 {
  color: #7897AB;
}
.intro-menu-image {
  border: 0.5rem solid #FDCEB9;
  overflow: hidden;
  margin-top: 1rem;
}
@media (max-width: 1000px) {
  .intro-menu-image {
    display: none;
  }
}
.intro-menu a {
  display: flex;
  padding: 1rem 2rem;
  border-radius: 6rem;
  background: #7897AB;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  font-family: Rosign, sans-serif;
  margin-top: 2rem;
}

.food-list {
  width: 100%;
  padding: 1rem;
}
.food-list .food-item {
  color: #7897AB;
  border-bottom: 0.1rem dashed #7897AB;
  margin: 1rem 0;
}
.food-list .food-item--main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.3rem;
  padding-bottom: 0.5rem;
}
.food-list .food-item--title {
  font-family: "XCharter", serif;
  font-weight: bold;
}
.food-list .food-item--price {
  font-family: "XCharter", serif;
  font-weight: bold;
}
.food-list .food-item--price-multiple {
  font-size: 1rem;
  width: 100%;
  text-align: right;
}
.food-list .food-item--secondary {
  padding-bottom: 0.5rem;
  width: 75%;
  line-height: 1.3rem;
}

.gallery {
  display: flex;
  flex-direction: row;
  position: relative;
  z-index: 22;
}
.gallery--item {
  aspect-ratio: 1/1;
}
.gallery--item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../imgs/PATTERN.jpg");
  background-repeat: repeat;
  color: #7897AB;
  padding: 2rem 0;
  font-size: 1.3rem;
}
.booking h4 {
  margin-bottom: 2rem;
}
.booking-info {
  display: inline-block;
  background: white;
  padding: 2rem;
}
.booking-address {
  text-align: center;
  font-family: "Rosign", sans-serif;
  margin-bottom: 2rem;
}
.booking-schedule li {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.booking-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
}
.booking-contact a {
  background: #7897AB;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  margin: 0.5rem 0;
  width: 100%;
  font-size: 2rem;
}
.booking-map {
  height: 20rem;
  margin-top: 1rem;
  border: 0.5rem solid #FDCEB9;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #A6D0E4;
  font-family: "XCharter", serif;
  padding-bottom: 2rem;
  color: #7897AB;
  line-height: 1.5rem;
  position: relative;
  z-index: 21;
}
.contact h4 {
  margin: 2rem 0;
  color: white;
}
.contact h5 {
  font-family: "Rosign", sans-serif;
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-info, .contact-hiring {
  background: white;
  padding: 2rem;
}
.contact ul {
  text-align: center;
}
.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #7897AB;
  color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer-logo img {
  width: 6rem;
}
.footer-logo h2 {
  font-size: 3.3rem;
}
.footer-logo h3 {
  font-size: 1.3rem;
}
@media (max-width: 1000px) {
  .footer-logo {
    justify-content: center;
  }
}
.footer-logo div:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.footer-info {
  text-align: right;
}
.footer-info p {
  font-family: "Rosign", sans-serif;
  font-size: 1.3rem;
}
@media (max-width: 1000px) {
  .footer-info {
    text-align: center;
  }
}
.footer nav {
  border-top: 0.1rem solid white;
  margin-top: 1rem;
  padding-top: 1rem;
}
.footer nav ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .footer nav ul {
    justify-content: center;
  }
}
.footer nav li {
  margin: 0 0.3rem;
}
.footer nav a {
  color: white;
  font-family: "Rosign", sans-serif;
  text-decoration: none;
}
@media (max-width: 1000px) {
  .footer nav a {
    text-align: center;
  }
}

.flowers {
  position: absolute;
  z-index: 20;
  width: 100%;
  height: 100%;
}
.flowers .flower:nth-child(1) {
  position: absolute;
  top: 100vh;
  right: 0;
  transform: scale(0.8);
}
.flowers .flower:nth-child(2) {
  position: absolute;
  top: 150vh;
  left: 0;
  transform: scale(0.8);
}
.flowers .flower:nth-child(3) {
  position: absolute;
  top: 250vh;
  right: 0;
  transform: scale(0.8);
}
.flowers .flower:nth-child(4) {
  position: absolute;
  top: 190vh;
  left: 0;
  transform: scale(0.8);
}
.flowers .flower:nth-child(5) {
  position: absolute;
  top: 400vh;
  left: 0;
  transform: scale(0.8);
}
.flowers .flower:nth-child(6) {
  position: absolute;
  top: 600vh;
  right: 5rem;
  transform: scale(1);
}
@media (max-width: 1000px) {
  .flowers {
    display: none;
  }
}

.page-intro {
  height: 15rem;
}
.page-intro h2 {
  font-size: 5rem;
}

.menu {
  background: white;
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  margin-top: 1rem;
}
.menu h5 {
  color: #7897AB;
}

.page-menu .specialties {
  background: url("../imgs/PATTERN.jpg");
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.page-menu .specialties h4 {
  color: #7897AB;
  margin-bottom: 2rem;
}
.page-menu .specialties img {
  max-width: 100%;
  display: block;
}
.page-menu .specialties-image {
  border: 0.5rem solid #FDCEB9;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .page-menu .specialties-image {
    display: none;
  }
}
.page-menu .menu-week {
  background: #A6D0E4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.page-menu .menu-week h4 {
  color: white;
}
.page-menu .menu-week--title {
  text-align: center;
  margin-bottom: 2rem;
}
.page-menu .menu-week--title span {
  color: white;
  font-family: "Rosign", sans-serif;
  font-size: 1.6rem;
}
.page-menu .menu-week--today {
  background: white;
  margin-bottom: 2.5rem;
  padding: 1rem 2rem;
  font-family: "Rosign", sans-serif;
  font-size: 1.6rem;
  color: #7897AB;
}
.page-menu .menu-week--list {
  background: white;
  position: relative;
  padding: 1rem;
  color: #7897AB;
}
.page-menu .menu-week--list h5 {
  background: white;
  display: inline-block;
  position: relative;
  top: -2rem;
  padding: 0.3rem;
  left: 25%;
  width: 50%;
  font-size: 1.3rem;
  text-align: center;
  transform: rotate(-2deg);
}
.page-menu .menu-week--dishes {
  text-align: center;
  padding: 0 1rem;
}
.page-menu .menu-week--dishes p + h6 {
  margin-top: 2rem;
}
.page-menu .menu-week--dishes h6 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.page-menu .menu-basic {
  background: url("../imgs/PATTERN.jpg");
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.page-menu .menu-basic h4 {
  color: #7897AB;
  margin-bottom: 2rem;
}
.page-menu .menu-basic--list {
  background: white;
  position: relative;
  padding: 1rem;
  color: #7897AB;
}
.page-menu .menu-basic--list h5 {
  background: white;
  display: inline-block;
  position: relative;
  top: -2rem;
  padding: 0.3rem;
  left: 25%;
  width: 50%;
  font-size: 1.3rem;
  text-align: center;
  transform: rotate(-2deg);
}
.page-menu .menu-basic--dishes {
  text-align: center;
  padding: 0 1rem;
}
.page-menu .menu-basic--dishes p + h6 {
  margin-top: 2rem;
}
.page-menu .menu-basic--dishes h6 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.dishes {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.dishes h4 {
  margin-bottom: 2rem;
}
.dishes.dishes--blue {
  background: #A6D0E4;
}
.dishes.dishes--blue h4 {
  color: white;
}
.dishes.dishes--white {
  background: url("../imgs/PATTERN.jpg");
  background-repeat: repeat;
}
.dishes.dishes--white h4 {
  color: #7897AB;
}