/* @import url("https://fonts.googleapis.com/css2?family=Squada+One&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&family=Squada+One&display=swap");

/* font-family: 'Squada One', cursive; 

font-family: 'Noto Sans', sans-serif;
font-family: 'Squada One', cursive;

*/

a {
  color: white !important;
}
p {
  margin: 0;
}
section {
  padding: 60px 0;
  overflow: hidden;
}
body {
  font-family: "Noto Sans", sans-serif;
}

header {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.582)),
    url("./images/hero.jpg") center no-repeat;
  background-size: cover;
  position: relative;
}

head > .container {
  position: relative;
  height: 100%;
  padding: 0;
}

.navbar-brand {
  position: absolute;
  width: 100%;
  max-width: 100px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 650ms;
}
.nav-brand:hover {
  opacity: 0.8;
}
.logo {
  padding-top: 10px;
}
.hamburger-menu {
  position: fixed;
  top: 25px;
  right: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  background-color: #e09d38;
  border-radius: 4px;
  cursor: pointer;
  z-index: 999;
}

.hamburger-menu i {
  font-size: 30px;
  color: #ffffff;
  margin: auto;
}

.hamburger-menu .fa-times {
  display: none;
}
.hamburger-menu .fa-times.open {
  display: block;
}
.hamburger-menu .fa-bars.open {
  display: none;
}

.nav-list {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  list-style: none;
  background-color: #e09d38;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
}
.nav-list.open {
  opacity: 1;
  transform: scale(1);
  transition: opacity 650ms;
}

.hero-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -45%);
  text-align: center;
}

.hero-text h1 {
  font-family: "Squada One", cursive;
  letter-spacing: 4px;
  color: #ffffff;
}

.btn {
  width: 100px;
  padding: 5px 0 !important;
  border: 1px solid #ff0000;
  position: relative;
  overflow: hidden;
  background-color: #ff0000;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #ffc400e3, transparent);
  transition: all 650ms;
}

.btn:hover::before {
  left: 100%;
}

.section-heading {
  text-transform: uppercase;
  line-height: 0;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e09d38;
}
.section-heading h1 {
  color: #000000;

  font-family: "Squada One", cursive;
}

.about .btn {
  width: 150px;
  color: #ffffff !important;
  transition: background-color 650ms;
}
.about .btn:hover {
  color: #000000 !important;
  background-color: #ffffff;
}
.menu {
  background-color: #dfdfdf;
}

.shop-info i {
  color: #ff0000;
  font-size: 50px;
}
.shop-info h1 {
  font-family: "Noto Sans", sans-serif;
  font-size: 25px;
  font-weight: 300;
  text-transform: uppercase;
  color: #e09d38;
}

.shop-info p,
.shop-info address {
  color: rgba(0, 0, 0, 0.63);
}
hr {
  border-top: 1px solid #e09d38;
}
.point-left,
.point-right {
  display: flex;
  background-color: rgb(255, 255, 255);
  position: relative;
}
.point-left::before,
.point-right::before {
  content: "";
  position: absolute;
  background-color: rgb(255, 255, 255);
  width: 25px;
  height: 25px;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}
.menu h4 {
  color: #e09d38;
}
.menu-item-desc {
  padding: 50px 10px;
  color: #e09d38;
  margin: auto;
}
.menu-item-desc h1 {
  color: #101d2c;
  font-size: 30px;
  letter-spacing: 1px;
  font-family: "Teko", sans-serif;
  font-weight: 300;
}
.menu-item-desc h6,
.card-body h6 {
  color: #000000;
  font-size: 20px;
}

/* team section */
.card-body h1 {
  font-size: 25px;
  letter-spacing: 1px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 300;
}
footer {
  color: white;
  background-color: rgba(0, 0, 0, 0.95);
  font-size: 25px;
}

@media (min-width: 576px) {
  .nav-brand {
    max-width: 150px;
  }
  .hamburger-menu {
    top: 35px;
    right: 25px;
  }

  .point-left::before,
  .point-right::before {
    display: none;
  }
  .menu-item-desc {
    padding: 50px 20px;
  }
}

@media (min-width: 768px) {
  .btn {
    width: 150px;
  }
}

@media (min-width: 992px) {
  header > .container {
    padding: 0 15px;
  }
  .hamburger-menu {
    display: none;
  }
  .navbar-brand {
    position: initial;
    transform: initial;
  }
  .nav-list {
    position: initial;
    width: initial;
    height: initial;
    background-color: initial;
    flex-direction: row;
    opacity: initial;
    transform: initial;
    transition: initial;
    margin: 0;
    padding: 0;
  }
  .nav-item {
    margin: 0 30px;
  }

  .nav-item:last-child {
    margin-right: 0;
  }

  .nav-link {
    position: relative;
    padding: 0;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    background-color: #ff0000;
    width: 100%;
    height: 2px;
    bottom: -3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 200ms;
  }

  .nav-link:hover::before {
    transform: scaleX(1);
  }
}

@media (min-width: 1200px) {
  .point-left::before,
  .point-right::before {
    display: block;
    top: 50%;
    left: initial;
    transform: translate(0, -50%) rotate(45deg);
  }
  .point-left::before {
    left: -12px;
  }
  .point-right::before {
    right: -12px;
  }
  .menu-item-desc p {
    display: none;
  }
  .menu-item-desc .btn {
    color: rgb(255, 255, 255) !important;
    background-color: #ff0000;
  }
}
