@import "./_reset.css";
@import "./_variables.css";
/*--------------------*/

body {
  font-family: "Figtree", serif;
  font-size: 16px;
  background: #d5d4d4;
}

.wrapper__base {
  display: none;
  /* height: 100vh; */ /* DO NOT PUT HEIGHT FOR THIS SELECTOR BECAUSE IT IS DESTROYING DASHBOARD */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.wrapper__base {
  display: flex;
  background: #fff;
}

.bg_sea {
  background: #59c4be;
  width: 100%;
}

.wrapper-content {
  max-width: 720px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  width: 180px;
  margin: 0 auto;
}

.logo-client {
  width: 80px;
  margin: 0;
}

.logo-small {
  width: 3em;
}

.header {
  margin: 0 40px 25px;
  text-align: center;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.header-mobile {
  display: none;
}

.container {
  padding: 0;
  margin: 0;
}

.nav__base {
  display: flex;
}

/* .container {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 15px;
  } */

.column {
  border: darkgrey 2px solid;
  border-radius: 10px;
  text-align: center;
}
.right-column,
.left-column {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  align-items: center;
  padding: 15px;
}

.btn-menu,
.btn-bill {
  background: #b78d42;
  background: radial-gradient(circle, #f0dda5 0%, #b78d42 100%);
}

.btn-order {
  background: #6e6768;
  background: radial-gradient(circle, #d7cfce 0%, #6e6768 100%);
}

.btn-ice,
.btn-cleaning,
.btn-shisha,
.btn-beach-boy,
.btn-help {
  background: #dcd7d4;
  background: radial-gradient(circle, #dcd4d1 0%, #c0b6a3 100%);
}

p input[name="firstname"],
p input[name="lastname"],
p input[name="mobile"],
p input[type="submit"] {
  font-family: "Figtree", serif;
  padding: 5px;
  margin-bottom: 10px;
  font-size: 0.7em;
  text-align: center;
}

#comment-link {
  position: relative;
}

#comment-link-element {
  color: #47330c;
  text-shadow: 2px -2px 4px #c19b53;
}

::placeholder {
  color: #777;
  opacity: 0.3;
  font-size: 20px;
}

.btn:before {
  right: 0;
  top: 0;
  transition: all 50ms ease;
}

.btn:after {
  left: 0;
  bottom: 0;
  transition: all 50ms ease;
}

.btn:active {
  background: transparent;
  box-shadow: none;
}
.btn:active:before {
  transition: all 500ms ease;
  height: 100%;
}
.btn:active:after {
  transition: all 500ms ease;
  width: 100%;
}

.btn-action-running,
.btn-quick-running {
  border: 1px solid black;
  background: transparent;
  box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.bg-decor {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  background: url(../img/elephant2.png) 50%/100% no-repeat;
}

.footer__logo-small {
  width: 35px;
}

.footer-dashboard {
  width: 100%;
  flex-shrink: 0;
  /* margin-bottom: 1em; */
  background: var(--prime-color);;
  padding: 10px;
}

.copyrights {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.copyrights-text {
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  letter-spacing: 0.09rem;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.footer-signature {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav>li>a {
  padding: 0;
  color: #337ab7;
  text-align: center;
}

.branch {
  background: #5bc0de;
  text-align: center;
  border-top: 2px solid #337ab8;
  border-bottom: 2px solid #337ab8;
  font-size: 2rem;
  font-weight: 600;
  color: white;
}

@media (min-width: 992px) {
  .container {
    width: 100%;
  }

  .nav__base {
    display: block;
  }
}

/* @media (min-width: 884px) {
  .container {
    width: 100%;
  }
} */
/* 
@media (min-width: 768px) {
  .container {
    width: 100%;
  }
} */

@media (max-width: 540px) {
  .container {
    width: 100%;
  }
  .nav__base {
    display: flex;
  }
}