@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #dfdfdf;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
ul,
li {
  list-style: none;
}
.showcase,
.right-side {
  display: none;
}
.mobile-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem;
  height: 8vh;
}
.mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.headline {
  margin-top: 2rem;
}
@media (max-width: 390px) {
  .mobile .headline {
    font-family: "Getaway", sans-serif;
    font-size: 30px;
    margin-top: 2rem;
    letter-spacing: 6px;
  }
}
.showcase-mobile {
  position: relative;
  width: 334px;
  height: 363px;
  margin-top: 2rem;
  background-image: url("./assets/guitar-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s ease-in;
}
.slider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 55px;
  background-color: #212121;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1rem;
}
.slider svg {
  cursor: pointer;
}
.mobile p {
  text-align: center;
  font-size: 18px;
  width: 80%;
  margin-top: 2rem;
}
.featured {
  background-image: url("./assets/yellow-guitar.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 334px;
  height: 307px;
  margin-top: 2rem;
  transition: 0.5s ease;
}
.mobile-cta {
  background-color: #538596;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 6px;
  padding: 1rem 1.2rem;
  margin-top: 2rem;
  transition: 0.5s ease;
}
.mobile-cta:hover {
  color: #313131;
  background-color: #79a9b9;
}
.mobile-tutorial {
  margin-top: 2rem;
  font-size: 20px;
  font-weight: 600;
}
.video {
  margin: 1rem 0;
  width: 334px;
  height: 202px;
}
.video iframe {
  width: 100%;
  height: 100%;
}
.hamburger svg {
  cursor: pointer;
}
.side-bar {
  position: absolute;
  z-index: 999;
  right: 0;
  top: 0;
  width: 50vw;
  height: 100vh;
  background-color: #212121;
  display: flex;
  flex-direction: column;
  text-align: center;
  clip-path: circle(0% at 100% 50%);
  transition: 1s ease;
}
.side-bar .nav-links {
  margin-top: 5rem;
}
.side-bar .nav-links a {
  color: #fff;
}
.side-bar .nav-links li {
  margin: 2rem 0;
}
.close {
  padding-right: 1rem;
  padding-top: 1rem;
}
.close svg {
  float: right;
  cursor: pointer;
}

/* BASS PAGE */
.bass-body {
  background-color: #aac6cf;
}
.bass-guitar {
  height: 588px;
  width: 100%;
  padding-inline: 1rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0;
}

.bass-guitar h3 {
  font-size: 16px;
  font-weight: 400;
  writing-mode: vertical-lr;
  float: left;
}
.bass-guitar p {
  font-size: 30px;
  font-weight: 600;
}
.pattern-1 {
  position: absolute;
  right: -3%;
  top: 200px;
  z-index: -1;
}
.pattern-2 {
  position: absolute;
  right: 0;
  top: 200px;
  z-index: -1;
  top: 160%;
  left: -6%;
}
/* login page */
.input-page {
  height: 100vh;
  overflow: hidden;
}
.login {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1rem;
}
.login input {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  margin-top: 2rem;
  outline: none;
  border: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
}
.login input::placeholder {
  color: rgb(0, 0, 0);
}
.login .btn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  margin-top: 2rem;
  outline: none;
  border: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
}
