@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Display:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300&family=Roboto+Slab:wght@200;300;400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #eee;
  font-family: "Noto Sans Display", sans-serif;
  min-height: 100vh;
  color: #4d4d4d;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", serif;
}

h2 {
  font-weight: 600;
}

main {
  min-height: 100vh;
  padding: 70px 0 0;
}

button {
  font-family: "Roboto Slab", serif;
  font-size: 16px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #202020;
}

header {
  background-color: #202020;
  height: 70px;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 15;
}
header .menu {
  height: 100%;
  z-index: 15;
}
header .mobile-nav {
  background-color: #202020;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 10;
  margin: 0 auto;
}
header .mobile-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
header #home a {
  color: #ffd62b;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Roboto Slab", serif;
}

.menu-btn,
.menu-btn::before,
.menu-btn::after {
  width: 1.5em;
  height: 2px;
  background: #ffd62b;
  transition: transform 250ms ease-in-out;
}

.navigation {
  position: fixed;
  width: 84%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 20;
  height: 100vh;
  padding: 1rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.navigation ul {
  width: 90%;
  margin: 0 auto;
}
.navigation a {
  font-family: "Roboto Slab", serif;
  color: #4d4d4d;
}
.navigation .orders {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  font-size: 15px;
  text-transform: uppercase;
}
.navigation .log-user {
  margin-top: 4rem;
  width: auto;
}
.navigation .user {
  background-color: #202020;
  color: #ffd62b;
  padding: 0.5rem 1.75rem;
  border-radius: 5px;
}
.navigation .home-and-menu {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation .home-and-menu a {
  font-size: 1.25rem;
  font-weight: 600;
}
.navigation .home-and-menu .menu-btn,
.navigation .home-and-menu .menu-btn::before,
.navigation .home-and-menu .menu-btn::after {
  background: #202020;
}
.navigation .menu-footer {
  text-align: center;
  margin-bottom: 2.5rem;
}
.navigation .menu-footer .footer-divider {
  width: 60%;
  margin: 0.5rem auto;
  border-top: 1px solid #ffd62b;
}

.navigation.show-menu {
  transform: translateX(0);
}

.menu-btn::before,
.menu-btn::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn::before {
  bottom: 8px;
}

.menu-btn::after {
  top: 8px;
}

.menu-open .menu-btn {
  transform: rotate(45deg);
}

.menu-open .menu-btn::before {
  opacity: 0;
}

.menu-open .menu-btn::after {
  transform: rotate(90deg) translate(-8px);
}

.transparent {
  background-color: transparent;
}

.menu-btn {
  display: block;
  position: relative;
}

.container {
  width: 90vw;
  max-width: 1100px;
  margin: 0 auto;
}

.success,
.log-reg-success {
  color: #039c03;
  text-transform: lowercase;
  display: none;
}

.success {
  background-color: rgba(0, 255, 0, 0.3);
  border-radius: 5px;
  padding: 0.25rem;
}

.error,
.form-error,
.log-reg-error {
  color: #ed290e;
  text-transform: lowercase;
  display: none;
}

.error {
  background-color: rgba(255, 0, 0, 0.3);
  padding: 0.25rem;
  border-radius: 5px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.text {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.choice-btn {
  border: 2px solid #ffd62b;
  border-radius: 5px;
  background: #ffd62b;
  font-family: "Roboto Slab", serif;
  color: #ffd62b;
  color: #202020;
  text-decoration: none;
  font-size: 1.25rem;
  width: 15rem;
  padding: 1rem;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
}

.choice-btn:hover {
  transform: scale(0.98);
}

.place-another-order {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 2rem;
}
.place-another-order a {
  text-decoration: underline;
}

.tbl-full {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
  margin: 2rem auto 0;
}
.tbl-full th {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Roboto Slab", serif;
  text-transform: uppercase;
  padding: 1rem 0.25rem;
}
.tbl-full td {
  padding: 1rem 0.25rem;
}
.tbl-full tbody tr td:first-child {
  border-top-left-radius: 5px;
  padding-left: 0.5rem;
  border-bottom-left-radius: 5px;
}
.tbl-full tbody tr td:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.tbl-full tbody tr:nth-child(odd) {
  background-color: #ebce5948;
}

@media (max-width: 940px) {
  .tbl-full thead {
    display: none;
  }

  .tbl-full,
.tbl-full tbody,
.tbl-full tr,
.tbl-full td {
    display: block;
  }

  .tbl-full tr {
    margin-bottom: 15px;
  }

  .tbl-full tbody tr td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    width: 100%;
  }

  .tbl-full td::before {
    content: attr(data-label);
    color: #202020;
    position: absolute;
    left: 0;
    width: 50%;
    font-size: 1.25rem;
    padding-left: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: left;
  }
}
form li {
  padding: 1rem 0;
}
form input {
  display: block;
  font-size: 18px;
  width: 100%;
  padding: 0.25rem 0;
  border: 0;
  background: transparent;
  border-bottom: #ebcf59 1px solid;
}
form input[type=submit] {
  width: 100%;
  font-family: "Roboto Slab", serif;
  cursor: pointer;
  border: 0;
  border-radius: 5px;
  background-color: #ffd62b;
  margin: 2rem auto 1.5rem;
  padding: 0.75rem;
}
form input:focus,
form input:active {
  outline: none;
}
form a {
  color: #202020;
}

#sending-order,
#order-complete {
  display: none;
  width: 100%;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  border: 0;
  border-radius: 5px;
  background-color: #ffd62b;
  margin: 2rem auto 3rem;
  padding: 0.75rem;
}

.log-register {
  text-align: center;
  margin: 2rem 0;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: auto;
  gap: 40px;
}

.grid-4 {
  grid-template-columns: auto;
  gap: 20px;
}

.grid-12 {
  gap: 30px;
}

/*--------------------SPACING-----------------------*/
.pb-2 {
  padding-bottom: 2rem;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 1.75rem;
}

.m-3 {
  margin: 2.25rem;
}

.m-4 {
  margin: 3rem;
}

.m-5 {
  margin: 3.75rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 1.75rem;
}

.mt-3 {
  margin-top: 2.25rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mt-5 {
  margin-top: 3.75rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 1.75rem;
}

.mr-3 {
  margin-right: 2.25rem;
}

.mr-4 {
  margin-right: 3rem;
}

.mr-5 {
  margin-right: 3.75rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 1.75rem;
}

.mb-3 {
  margin-bottom: 2.25rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

.mb-5 {
  margin-bottom: 3.75rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 1.75rem;
}

.ml-3 {
  margin-left: 2.25rem;
}

.ml-4 {
  margin-left: 3rem;
}

.ml-5 {
  margin-left: 3.75rem;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-2 {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.my-3 {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.my-4 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-5 {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}

.mx-1 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-2 {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}

.mx-3 {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}

.mx-4 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mx-5 {
  margin-left: 3.75rem;
  margin-right: 3.75rem;
}

/*------------------TEXT STYLING------------------*/
.text-start {
  text-align: start;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

/*------------------COLORS--------------------*/
.dark {
  color: #202020;
}

footer {
  background-color: #ebcf59;
  text-align: center;
  padding: 0.5rem 0;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-container .form-content {
  width: 90vw;
  margin: 2rem auto;
  max-width: 350px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}
.form-container .form-content .header {
  margin: 1.5rem 0;
}
.form-container .form-content h1 {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
}
.form-container .form-content input[type=submit] {
  width: auto;
  padding: 0.75rem 2rem;
  letter-spacing: 0.15rem;
  font-family: "Roboto Slab", serif;
  transition: all 0.2s linear;
}
.form-container .form-content input[type=submit]:hover {
  transform: scale(0.98);
}

.restaurant {
  position: relative;
  height: 400px;
  border-radius: 20px;
}
.restaurant img {
  width: 100%;
  border-radius: 10px;
}
.restaurant a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  border-radius: 20px;
  text-transform: uppercase;
  background-color: #ed290e;
  padding: 0.75rem 2.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s linear;
}
.restaurant .scale {
  transform: translate(-50%, -50%);
}
.restaurant .scale:hover {
  transform: translate(-50%, -50%) scale(0.95);
  cursor: pointer;
}
.restaurant .content {
  height: 100%;
  width: 100%;
  background-color: #00000070;
  transition: background-color 0.3s linear;
  border-radius: 20px;
}
.restaurant .content:hover {
  background-color: #000000d0;
}

a h1 {
  color: #202020;
}

.coffee {
  height: 250px;
  border-radius: 10px;
  background-color: #ebcf59;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s linear;
}
.coffee img {
  height: 150px;
}

.coffee:hover {
  transform: scale(0.95);
  cursor: pointer;
}

.coffee-img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coffee-img img {
  width: 50%;
}

.coffee-order select {
  border: 0;
  border-bottom: #ebcf59 1px solid;
  background-color: transparent;
  padding: 0.25rem 0;
  width: 100%;
  outline: 0;
  font-size: 18px;
}

.tea-coffee-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tea-coffee-details .sugar {
  width: 50%;
}
.tea-coffee-details label {
  display: block;
}
.tea-coffee-details .sugar-num {
  display: block;
}
.tea-coffee-details .add-milk {
  padding: 4px 0;
  display: flex;
  align-items: center;
}
.tea-coffee-details .milk-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 2rem;
}
.tea-coffee-details .milk-check input {
  width: 15px;
  height: 15px;
  margin-right: 0.5rem;
}

.landing .section {
  position: relative;
}
.landing video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left,
.right {
  height: 60vh;
}

.sub-section {
  width: 100%;
}

.text h1 {
  font-size: 2.5rem;
  white-space: nowrap;
}
.text p {
  text-align: center;
  font-size: 1rem;
  margin: 1rem 0 4rem;
}

.my-order-details-header,
.my-order-details-content {
  display: flex;
  justify-content: space-around;
}

.staff-name {
  padding: 2rem 0 0;
}

.my-tea-coffee,
.my-lunch {
  margin-top: 3rem;
}

.delete {
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-size: 16px;
  border-radius: 5px;
  color: #ffffff;
  margin-left: 0.25rem;
  background-color: red;
  border: none;
  cursor: pointer;
}

.add-order {
  text-align: center;
  margin-top: 4rem;
}
.add-order a {
  color: #202020;
  padding: 0.75rem 2.25rem;
  border-radius: 5px;
  background-color: #ffd62b;
  text-align: center;
  font-weight: 500;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
}

.restaurants .content {
  text-align: center;
}
.restaurants .content h1 {
  padding-top: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}
.restaurants .content .line {
  border: 1px solid #202020;
  width: 40%;
  margin: 0 auto 1rem;
}
.restaurants .content p {
  background-color: #ed290e;
  padding: 0.5rem 0;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 200;
}
.restaurants .restaurant {
  position: relative;
}
.restaurants .restaurant .img {
  position: relative;
}
.restaurants .restaurant .img img {
  width: 100%;
  height: 100%;
}
.restaurants .restaurant .img .btn.btn-order {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ed290e;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-weight: 500;
}
.restaurants .restaurant .right-nav {
  display: none;
}
.restaurants .restaurant .left-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 0.25rem;
}

.restaurant-name {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.order-details {
  margin-top: 1.5rem;
}

.menu-img img {
  width: 100%;
}

.border {
  width: 50%;
  border-top: #202020 2px solid;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.delete-order {
  transform: scale(0);
  transition: transform 0.3s ease;
  min-height: 100vh;
  margin-top: 70px;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000d0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
}
.delete-order .btn {
  width: 40%;
  font-family: "Roboto Slab", serif;
  cursor: pointer;
  border: 0;
  border-radius: 5px;
  background-color: transparent;
  padding: 0.75rem;
}
.delete-order .btn.order-delete-btn {
  background-color: #ed290e;
  color: #ffffff;
  text-align: center;
}
.delete-order .btn.do-not-delete {
  border: 1px solid #202020;
  color: #202020;
}

.delete-order .delete-content {
  padding: 1.75rem;
  background-color: #eee;
  color: #202020;
  border-radius: 5px;
}
.delete-order .delete-content p {
  align-items: center;
}
.delete-order .delete-content .confirm {
  margin: 1.75rem 0 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.delete-order.confirm-delete {
  transform: scale(1);
}

@media screen and (min-width: 768px) {
  .grid-2 {
    grid-template-columns: auto 300px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .grid-12 {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu {
    display: flex;
    justify-content: space-between;
    width: 90vw;
    margin: 0 auto;
  }
  .menu .menu-btn {
    display: none;
  }
  .menu .mobile-nav {
    width: auto;
    margin: 0;
  }
  .menu .mobile-nav .container {
    width: auto;
  }
  .menu .navigation {
    position: relative;
    flex-direction: row;
    transform: translateX(0);
    background-color: transparent;
    height: auto;
    width: auto;
    padding: 0;
  }
  .menu .navigation ul {
    width: auto;
  }
  .menu .navigation .home-and-menu {
    display: none;
  }
  .menu .navigation .orders {
    border-bottom: 0;
    padding-left: 2rem;
    font-size: 15px;
    text-transform: uppercase;
  }
  .menu .navigation .orders a {
    color: #ffffff;
  }
  .menu .navigation .log-user {
    margin: 0;
  }
  .menu .navigation .user {
    background-color: #ffd62b;
    color: #202020;
    margin-left: 5rem;
  }
  .menu .navigation .mobile-menu {
    display: flex;
    align-items: center;
  }
  .menu .navigation .menu-footer {
    display: none;
  }

  .landing {
    display: flex;
    height: 100%;
    width: 100%;
  }

  .kitchen-landing .text .btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .kitchen-landing .text .btns a {
    margin: 0 1rem;
  }
  .kitchen-landing .text h1 {
    font-size: 3rem;
  }
  .kitchen-landing .text p {
    text-align: center;
    font-size: 18px;
  }

  .section {
    transition: all 0.4s linear;
    overflow: hidden;
  }

  .left {
    position: absolute;
    left: 0;
    width: 50%;
    height: 100vh;
  }

  .right {
    position: absolute;
    right: 0;
    height: 100vh;
    width: 50%;
  }

  .sub-section {
    width: 100%;
  }
  .sub-section h1 {
    font-size: 3rem;
  }
  .sub-section p {
    font-size: 1rem;
  }

  .order-details {
    margin-top: 3rem;
  }

  footer {
    padding: 0.5rem 0;
  }
  footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: auto 400px;
  }

  .landing .sub-section h1 {
    font-size: 3.5rem;
  }
  .landing .sub-section p {
    font-size: 1.25rem;
  }

  .coffee-order .tea-coffee-details {
    flex-direction: row;
    justify-content: space-between;
  }
  .coffee-order .tea-coffee-details .quantity {
    width: 75px;
  }
  .coffee-order .tea-coffee-details select {
    width: 40px;
    border: 0;
  }
  .coffee-order .tea-coffee-details .sugar label,
.coffee-order .tea-coffee-details .milk label {
    text-align: center;
  }
  .coffee-order .tea-coffee-details .sugar {
    width: 150px;
  }
  .coffee-order .tea-coffee-details label {
    display: block;
  }
  .coffee-order .tea-coffee-details .sugar-num {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .coffee-order .tea-coffee-details .milk {
    width: 150px;
  }
  .coffee-order .tea-coffee-details .add-milk {
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .coffee-order .tea-coffee-details .milk-check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 0;
  }
  .coffee-order .tea-coffee-details .milk-check input {
    margin-right: 0.25rem;
  }
}

/*# sourceMappingURL=style.css.map */
