/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 130px;
  border-bottom: 1px solid #fff;
}
.header .logo img {
  max-height: 105px;
}

@media (max-width: 575px) {
  .header {
    height: 100px;
  }
  .header .logo img {
    max-height: 70px !important;
  }
}
.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: var(--color-secondary);
  background: rgba(218, 161, 92, 0.8);
}

section {
  scroll-margin-top: 90px;
}

.hero.coming-soon {
  height: 100vh;
  padding: 0;
}
.hero.coming-soon .container-fluid .row .text {
  justify-content: space-evenly;
  height: 100vh;
}
.hero.coming-soon .container-fluid .row .text .logo {
  width: 170px;
}
.hero.coming-soon .container-fluid .row .text .social-links p {
  margin-bottom: 20px;
}
.hero.coming-soon .container-fluid .row .text .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-default);
  font-size: 16px;
  color: var(--color-default);
  margin-right: 10px;
  transition: 0.3s;
}
.hero.coming-soon .container-fluid .row .text .social-links a:hover {
  background: var(--color-default);
  color: #eee;
}
.hero.coming-soon .container-fluid .row .bg {
  background-image: url(../img/burgers.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Fonts */
:root {
  --font-default: "Montserrat", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #DAA15C;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}/*# sourceMappingURL=style.css.map */