*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #e1e1e1;
  position: relative;
  margin: 0;
  padding: 0;
}

.main-content,
.menu-content,
.contact-wrapper {
  -webkit-animation: fadeeffect 1s;
  animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeeffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.main-content {
  margin-top: 100px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.home-section {
  height: 90vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/Exclusive-restaurant-1.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.home-header {
  color: #fff;
  font-size: 4rem;
  font-family: "Dancing Script", cursive;
}

.home-description {
  color: #fff;
  font-size: 2rem;
  font-family: "Dancing Script", cursive;
}

.menu-description {
  color: #fff;
  font-size: 1rem;
  font-family: "Dancing Script", cursive;
}

.home-button {
  padding: 10px 30px;
  background-color: rgb(163, 8, 57);
  color: #fff;
}

/* .navbar > ul { */
ul {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}

li {
  display: block;
  color: white;
  text-align: center;
  padding: 16px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li:hover {
  background-color: rgb(163, 8, 57);
}

.active {
  background-color: rgb(128, 114, 114) !important;
}

.menu-wrapper {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: auto auto;
  background-color: #e1e1e1;
  padding: 30px;
  text-align: center;
}

.left-btm-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../images/Exclusive-menu-3.jpeg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 3rem;
  height: 200px;
}

.right-btm-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/Exclusive-menu-4.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 3rem;
  height: 200px;
}

.menu-content {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: auto auto;
  background-color: #e1e1e1;
  position: relative;
  top: 120px;
  text-align: center;
}

.menu-section1 {
  margin: 0 auto;
  width: 30rem;
  height: 200px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../images/Exclusive-menu-1.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.menu-section2 {
  margin: 0 auto;
  width: 30rem;
  height: 200px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../images/Exclusive lunch-1.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.menu-section3 {
  margin: 0 auto;
  width: 30rem;
  height: 200px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../images/Exclusive-dinner-2.jpeg") center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.menu-section4 {
  margin: 0 auto;
  width: 30rem;
  height: 200px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("../images/Exclusive-menu-2.jpeg") center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-wrapper {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)),
    url("../images/Exclusive-restaurant-3.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 100px auto 50px auto;
}

.contact-header {
  /* position: absolute;
  top: 200px; */
}
