@charset "UTF-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}

/* Navigation Section */
.navbar-container {
  position: absolute;
  top: 0;
  padding: 15px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
  z-index: 12 !important;
  border-bottom: 1px solid #000;
}

.navbar {
  display: flex;
}
.nav-item {
  display: inline-block;
  float: left;
}

.nav-link {
  font-weight: bold;
  text-decoration: none;
  transition: background-size 0.2s ease-in-out;
  color: #fff;
  border-bottom: 2px solid transparent;
}
.nav-link:hover {
  background-size: 100% 3px;
  color: #fff;
  border-bottom: 2px solid #fff;
}

/* Header Section */
header {
  height: 700px;
  padding-top: 60px;
  background-color: #000000;
}

.header-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  float: left;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.header-brand {
  display: inline-block;
  width: 50%;
}
.header-brand img {
  width: 100%;
}
.header-text {
  opacity: 1 !important;
  z-index: 10;
  width: 60%;
  margin: auto;
  color: white;
  text-shadow: 0px 0px 10px #000000;
}
.header-text p {
  margin-bottom: 40px;
}
.header-bg {
  background-image: url("../images/slider-bothhands-01.jpg");
  background-size: cover;
  height: 100%;
  opacity: 0.3;
  z-index: -10;
}

/* Welcome Section */
.welcome-detail-title {
  display: inline-block;
  width: 100px;
}
.welcome-detail-info {
  color: #fff;
  font-size: 1.2em;
  line-height: 35px;
}
.hours-container {
  max-width: 360px;
  padding: 30px 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  margin: auto;
}

.hours-row {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 60px 1fr;
}

.hours-day {
  display: inline-block;
  width: 60px;
}

.hours-time {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2em;
}

.hours-time .end-time {
  white-space: nowrap;
}

/* Menu Section */
.fav-item {
  display: block;
  margin: 0 auto 40px auto;
}
.toppings-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.toppings-item {
  display: inline-block;
  padding: 10px 0;
  list-style-type: circle !important;
  /*padding: 0;*/
  min-height: 50px;
}
.dot {
  height: 20px;
  width: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: 4px;
  margin-right: 10px;
}
.toppings-item p {
  line-height: 1em !important;
  margin: 0;
}
.toppings-item h4 {
  display: grid;
  grid-template-columns: 30px 1fr;
}
.menu-container {
  display: flex;
}
.menu-item {
  display: block;
  padding: 20px 30px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  margin: 0 auto 40px auto;
  min-height: 200px;
}
.menu-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.menu-name-container {
  padding: 10px 0;
}
.menu-price-container {
  display: flex;
  justify-content: flex-end;
}
.menu-price {
  font-size: 2.8em;
  font-weight: 200;
}

/* Map Section */
.map-container {
  min-height: 200px;
  width: 100%;
  background-image: url("../images/img-map-allhands-centered-hq.png");
  background-size: cover;
  background-position: center center;
}

/* Footer Section */
.footer-brand img {
  display: inline-block;
  width: 100%;
  margin: auto;
}
.footer-text {
  border-left: 2px solid #404040;
  padding: 20px 0 0 40px;
}
.footer-contact-letter {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 0.8em;
  text-transform: uppercase;
  padding-right: 20px;
  color: #f06374;
  opacity: 1 !important;
}
footer a {
  color: #ffffff;
  opacity: 1 !important;
}
footer a:hover {
  color: #f06374;
  opacity: 1 !important;
}
small {
  display: block;
  margin-top: 40px;
}
small,
small a {
  color: #404040 !important;
}

/* Typography */
h1 {
  font-family: fieldwork-hum, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3em;
  padding-bottom: 1rem;
}
h2 {
  font-family: fieldwork-hum, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.2em;
  padding-bottom: 1rem;
}
h3 {
  font-family: fieldwork-hum, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.7em;
}
h4 {
  font-family: fieldwork-hum, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.4em;
}
h5 {
  font-family: fieldwork-hum, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 3px;
  font-size: 0.8em;
  text-transform: uppercase;
  margin-bottom: 0;
}
p {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  opacity: 0.8;
}
.small-caps {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8em;
}
.divider-text {
  width: 100%;
  text-align: center;
  margin: 20px 0 40px 0;
}
.divider-text h4 {
  display: inline-block;
  padding: 10px 30px;
  margin: 0;
  position: relative;
  z-index: 2 !important;
  color: rgba(0, 0, 0, 0.3);
}
.divider-text-grey h4 {
  background: #ededed;
}
.divider-text-white h4 {
  background: #ffffff;
}
.divider-text hr {
  margin: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.3);
  position: relative;
  top: -20px;
  z-index: 0 !important;
}

/* Assets */
.btn-bar {
  display: block;
  padding-top: 30px;
  margin-bottom: 40px;
}
.btn-bar .btn-flat:first-child {
  margin-right: 20px;
}
.btn-flat {
  display: inline-block;
  width: 200px;
  margin: auto;
  line-height: 60px;
  color: #ffffff;
  text-shadow: none;
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 1.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  background-size: 0% 60px;
  background-position-y: 100%;
  background-position-x: 0%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease-in-out;
  border: 2px solid #ffffff;
}
.btn-flat:hover {
  color: #ffffff;
  text-decoration: none;
  background-size: 100% 60px;
}

.btn-flat-white {
  background-image: linear-gradient(#fff, #fff);
}
.btn-flat-white:hover {
  background-image: linear-gradient(#fff, #fff);
  border: 2px solid #fff;
  color: #000;
}

/* Structure */
.header-padding {
  margin-bottom: 1.5rem;
}
.full-width-padded-section {
  padding: 4rem 0;
}
.padded-title-bar {
  padding: 4rem 0 3rem 0;
}
.no-bottom-padding {
  padding-bottom: 0 !important;
}
.no-margins {
  margin: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.spacer-20 {
  display: block;
  height: 20px;
}
.spacer-40 {
  display: block;
  height: 40px;
}
.spacer-60 {
  display: block;
  height: 60px;
}
.spacer-80 {
  display: block;
  height: 80px;
}
.spacer-100 {
  display: block;
  height: 100px;
}

/* Colouring */
.text-black {
  color: #000 !important;
}
.text-white {
  color: #ffffff !important;
}
.bg-black {
  background-color: #000000;
}
.bg-grey {
  background-color: #ededed;
}

@media screen and (max-width: 500px) {
  .menu-bar {
    flex-direction: column-reverse;
  }
}

/* Large - Desktop only */
@media only screen and (min-width: 992px) {
  .hide-on-desktop {
    display: none;
  }
  .show-on-desktop {
    display: block;
  }
  .navbar-nav {
    margin-top: 60px;
  }
  .navbar {
    width: 40%;
  }
}

/* Large - Not on desktop */
@media only screen and (max-width: 991px) {
  .hide-on-desktop {
    display: inline-block;
  }
  .show-on-desktop {
    display: none;
  }
  .navbar {
    width: 100%;
  }
  .social-media {
    top: 10px;
    right: 10px;
  }
  .navbar-nav {
    padding: 0 20px 10px 20px;
    position: relative;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.94);
  }
  header {
    height: 600px;
    padding-top: 60px;
  }
  .header-brand {
    width: 70%;
  }
  .header-text {
    width: 80%;
  }
  .mobile-text-center {
    text-align: center;
  }
  .btn-bar {
    width: 100%;
    display: flex;
  }
  .toppings-item {
    /* width: 50%; */
  }
  .padded-title-bar {
    padding: 2rem 0 1rem 0;
  }
  .full-width-padded-section {
    padding: 3rem;
  }
  .footer-brand img {
    padding: 40px;
  }
  .footer-text {
    border-left: none;
    padding: 20px 0 0 0;
  }
  .mobile-text-center {
    text-align: center !important;
  }
  .mobile-text-left {
    text-align: left !important;
  }
  .mobile-text-right {
    text-align: right !important;
  }
}
