html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  font-family: sans-serif;
  font-weight: 400;
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  letter-spacing: .5px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0.75em 0;
}

a {
  text-decoration: none !important;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.heading {
  font-size: 1.75em;
  font-weight: 500;
  margin: 0;
}

.subheading {
  font-size: 16px;
  padding-bottom: 60px;
}

p {
  color: #848484;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.4px;
  line-height: 28px;
}

.container {
  padding: 0 5%;
}

hr {
  border-top: 3px solid #828282;
  width: 120px;
  margin: auto;
}

#menu,
#gallery,
#team {
  padding-top: 100px;
  padding-bottom: 100px;
}

#menu,
#contact {
  background: #f0f0f0;
}

.text-center {
  text-align: center !important;
}

.flexContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  transition: opacity 0.25s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sk-spinner-pulse {
  width: 40px;
  height: 40px;
  background-color: #F6D76B;
  border-radius: 100%;
  animation: sk-pulseScaleOut 1s infinite ease-in-out;
}

@keyframes sk-pulseScaleOut {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}


.navbar-default {
  background: #ffffff;
  box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.04);
  border: none;
  margin-bottom: 0;
  padding: 1em 0;
}

.navbar-brand,
.navbar-nav li a {
  line-height: 28px;
}

.navbar-default .navbar-brand {
  color: #5C5C5C;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
}

.navbar-default .navbar-nav li a {
  font-size: 12px;
  letter-spacing: 1px;
}

/* home section */
#home {
  background: url('./images/home-bg.jpg') 50% 0 repeat-y fixed;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  height: 100vh;
  justify-content: center;
  text-align: center;
}

#home .btn-default {
  display: inline-block;
  margin-top: .75em !important;
}

#home h1 {
  font-size: 20px;
  letter-spacing: 8px;
  font-style: normal;
  padding-top: 10px;
}

#home .btn {
  background: transparent;
  border-radius: 0;
  border: 3px solid #ffffff;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 16px 42px;
  margin-top: 40px;
  transition: all 0.4s ease-in-out;
}

#home .btn:hover {
  background: #ffffff;
  color: #202020;
}

/* team section */
#team {
  text-align: center;
}

#team h3 {
  font-size: 18px;
  line-height: 4px;
}

#team h4 {
  color: #5C5C5C;
  padding-top: 24px;
}

#team .col-md-4 {
  padding-top: 42px;
}

/* menu section */
#menu h4 {
  line-height: 1.5;
}

#menu .col-md-8 {
  padding-bottom: 42px;
}

#menu .col-md-6 {
  padding-bottom: 18px;
}

#menu span {
  color: #5C5C5C;
}

/* gallery section */
#gallery {
  padding-top: 80px;
  padding-bottom: 80px;
}

#gallery .galCard {
  padding-top: 52px;
  width: 33%;
}

#gallery img {
  width: 100%;
}

#gallery .galCard div {
  position: relative;
  padding: 0 12px 12px;
}

#gallery h3 {
  font-size: 18px;
}


.menuItem {
  width: 50%;
}

@media(max-width:576px) {
  .menuItem {
    width: 100%;
  }
}


.chefCard {
  width: 33.3%;
}

@media(max-width:768px) {
  #team h4 {
    padding-top: 0;
  }

  #gallery .galCard,
  .chefCard {
    width: 100%;
    margin-bottom: 2rem;
  }

  .img-responsive {
    width: 80%;
  }
}

/* contact section */
#contact {
  padding-top: 80px;
  padding-bottom: 100px;
}

#contact input,
#contact textarea {
  padding: .75em 1em;
  display: block;
  margin: .5em;
  width: calc(48% - 2em);
  margin-bottom: 32px;
}

#contact textarea {
  width: 100%;
  margin: 1em;
}

.w-100 {
  width: 100% !important;
}

@media(max-width:768px) {

  #contact input,
  #contact textarea {
    width: 100%;
    margin: .5em 0;
  }
}

#contact .form-control {
  background: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

#contact .form-control:focus {
  border-color: #f9f9f9;
}

#contact input {
  height: 48px;
}

#contact input[type="submit"] {
  background: transparent;
  border: 2px solid #999;
  border-radius: 10px;
  letter-spacing: 2px;
  margin: 16px auto 0;
  height: 50px;
  cursor: pointer;
}

#contact input[type="submit"]:hover {
  background: #999;
  color: #ffffff;
}

/* footer section */
footer {
  background: url('./images/footer-bg.jpg') 50% 0 repeat-y fixed;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

footer h3 {
  padding-top: 8px;
}

footer p {
  color: #ffffff;

}

footer h6 {
  line-height: 1.7;
  font-size: 1.25em;
  font-weight: bold;
  margin: 0;
}

footer span {
  font-weight: bold;
  padding-left: 24px;
}

footer .ph,
footer .address {
  padding-top: 12px;
  padding-bottom: 12px;
}

footer .fa {
  font-size: 20px;
  padding-right: 10px;
}

.footerSection {
  width: 33%;
}

@media(max-width:768px) {
  .footerSection {
    width: 100%;
  }
}

/* social icon */
.social-icon {
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  padding: 0;
}

.social-icon li a {
  background: #f0f0f0;
  border-radius: 50%;
  color: #5C5C5C;
  font-size: 16px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  margin-top: 12px;
  margin-right: 16px;
  top: 0;
  position: relative;
  padding: 0;
}

.social-icon li a:hover {
  background: #F6D76B;
  top: 5px;
}

/* copyright section */
#copyright {
  background: #343434;
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
}

#copyright p {
  color: #ffffff;
}

#copyright a {
  color: #ffffff;
}

#copyright a:hover {
  color: #FF0;
}