@font-face {
  font-family: Refinery;
  src: url('/Refinery.ttf');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Refinery";
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 40px 0 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cornerlogo {
  position: inherit;
  left: 4%;
  width: 200px;
  height: 60px;
  background: url(/images/logos/logo-white.png);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: left top;
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: url(/images/icons/menu.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center top;
  cursor: pointer;
  left: 92%;
}

.toggle.active {
  position: relative;
  width: 60px;
  height: 60px;
  background: url(/images/icons/close.png);
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: center top;
  cursor: pointer;
  left: 92%;
}

.showcase {
  position: relative;
  right: 0;
  width: 100%;
  min-height: 100dvh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  background-image: url("/images/salon/salon-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.showcase.active {
  right: 300px;
}

.social {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.social ul {
  display: flex;
}

.social li {
  list-style: none;
  margin-left: 4px;
  margin-right: 4px;
}

.social li img {
  display: inline-block;
  opacity: 0.7;
  transform: scale(0.5);
  transition: 0.5s;
  cursor: pointer;
}

.social li img:hover {
  opacity: 1;
  transform: scale(0.5) translateY(-15px);
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-logo {
  top: 6%;
  width: 200px;
  height: 50px;
  position: absolute;
  background: url(/images/logos/logo-black.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}

.menu-logo:hover {
  transform:scale(105%);
  transition: 0.5s;
}

.menu ul {
  position: relative;
}
.menu ul li {
  list-style: none;
  margin-bottom: 5%;
}
.menu ul li a {
  text-decoration: none;
  font-size: 24px;
  color: #111;
}
.menu ul li a:hover {
  color: #b9b84e;
}

.menu ul li:last-child {
  margin-bottom: 0;
}

.info {
  position: absolute;
  background: rgba(255, 255, 255, 0.23);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(2.9px);
  backdrop-filter: blur(2.9px);
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  overflow: auto;
}
.info .heading {
  color: white;
  text-shadow: 1px 1px 2px black;
  font-size: x-large;
  padding-bottom: 2%;
  font-weight: bolder;
}

.info p {
  color: white;
  text-shadow: 1px 1px 2px black;
  padding: 0 5% 5% 5%;
  font-size: medium;
}

.info caption {
  color: white;
  text-shadow: 0 1px 2px black;
  font-size: x-large;
  align-self: center;
}

table {
  margin: 5%;
}

td {
  color: white;
  text-shadow: 0 1px 2px black;
  font-size: large;
  padding-left: 5px;
}

#time {
  text-align: right;
}

#map {
  margin: 10px;
  opacity: 85%;
  border: 4px thick #e8e5e5;
  -moz-border-radius: 10px;
  border-radius: 10px;
  flex-grow: 1;
  width: 150px;
}

@media (max-width: 1024px) {
  .showcase {
    background-image: url("/images/salon/salon-background-mobile.jpg");
    padding: 40px;
  }
  .showcase .logo img {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  td {
    font-size: small;
  }
  .showcase {
    background-image: url("/images/salon/salon-background-mobile.jpg");
    padding: 40px;
  }
  .showcase header {
    padding: 40px;
  }
  .showcase .logo img {
    max-width: 100%;
  }
}
