:root {
  --primary-color: #f2994a;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 50%; /* 1rem = 8px */
}

body {
  min-width: 370px;
  min-height: 667px;
  margin: auto;
  background-color: #000;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  padding-top: 20px;
}

.logo {
  width: 300px;
  margin: 0 auto;
}

.logo > img {
  width: 100%;
  padding: 10px 20px;
}

.hero {
  position: absolute;
  bottom: 0;
  z-index: -10;
  width: 100%;
  height: 35vh;
  background-image: url("./img/hero25-750px.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

@media only screen and (min-width: 640px) {
  .hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("./img/hero.jpg");
    background-position: center bottom;
  }
}

.info {
  width: 370px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  opacity: 0.85;
}

.info > div {
  margin-bottom: 20px;
}

@media only screen and (min-width: 640px) {
  .info {
    border-radius: 20px;

    padding-top: 40px;
    padding-bottom: 20px;

    position: absolute;
    top: 40px;
    right: 40px;
  }
}

.contact {
  font-weight: lighter;
}

.address,
.phone,
.email {
  display: flex;
  align-items: center;
}

.info-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.cta {
  padding-left: 20px;
}

.hours {
  text-align: right;
}

.hours-heading {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.others {
  text-align: center;
  font-weight: lighter;
}

.btn {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 1em 1.5em;
  border-radius: 1em;
  display: block;
}

.btn-online-ordering,
.btn-online-booking {
  display: flex;
  padding-left: 1em;
}

.btn-online-ordering {
  margin-bottom: 1rem;
}

.icon {
  fill: #ccc;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.8em;
}

.icon-white {
  fill: #fff;
}

.icon-1d5em {
  width: 1.5em;
  height: 1.5em;
}

a[href^="tel"] {
  text-decoration: inherit;
  color: inherit;
}
