h1 {
  font-size: 1.8em;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 0.5rem;
}

/* Temporary for Dj*/
#dj {
  margin: 0 35%;
  min-height: 30vh;
}

#dj h5 {
  font-size: 1.8em;
  letter-spacing: 1px;
  text-align: center;
  background: black;
  color: white;
  margin: 0 auto;
  padding: 15px;
  margin-top: 50px;
}

.wrapper {
  display: grid;
  padding: 0 10vw;
}

.title {
  margin-top: 72px;
}

.title h1 {
  font-size: 1.8em;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.filters-area {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
}

.btn-container {
  margin-top: 8px;
  display: flex;
}

.btn-container a:hover {
  text-decoration: none;
}

.btn-dropdown {
  background: white;
  border: black solid 1px;
  color: black;
  text-align: center;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 16px;
  margin: 0;
  letter-spacing: normal;
  text-transform: uppercase;
}

.btn-dropdown:hover {
  background: black;
  border: black solid 1px;
  color: white;
}
.btn-dropdown-black {
  background: black;
  border: white solid 1px;
  color: white;
  text-align: center;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px 16px;
  margin: 0;
  letter-spacing: normal;
  text-transform: uppercase;
}

.btn-dropdown-black:hover {
  background: white;
  border: white solid 1px;
  color: black;
}

.dropdown-item {
  text-transform: uppercase;
}

.btn-box {
  width: 60px;
  background: white;
  border: black solid 1px;
  color: black;
  text-align: center;
}
.btn-box h3 {
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.2;
  padding: 8px;
  margin: 0;
  letter-spacing: normal;
}

.btn-box :hover {
  background: black;
  border: none;
  color: white;
}

.selected {
  background: black;
  border: black solid 1px;
  color: white;
}
.selected-inverse {
  background: white;
  border: white solid 1px;
  color: black;
}

.artist-container {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 25vw 25vw 25vw;
  gap: 2.5vw;
  justify-content: center;
}

.artist-container h2,
.artist-abc-container h2 {
  text-transform: uppercase;
  font-size: 1.8em;
  padding: 0;
  margin: 0;
}

.artist-abc-container h6 {
  padding: 0;
  margin: 0;
}

/* ----- artists abc list ----- */
.artist-abc-container {
  margin-top: 44px;
}
.artist-abc-grid {
  display: grid;
  gap: 1.2vw;
}
.artist-abc-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.artist-abc-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.artist-abc-grid-center {
  justify-content: center;
}
.abc-grid-span-3 {
  grid-column: span 3;
}
.artist-abc-container a {
  color: black;
  text-decoration: none;
}

.artist-abc-box {
  padding: 15px 15px;
  width: fit-content;
}
.artist-abc-box:hover {
  background-color: black;
  color: white;
}
.artist-abc-container .underliner {
  width: 180px;
  height: 8px;
  background: black;
}

/* Artist Boxes*/

.artist-box {
  overflow: hidden;
  position: relative;

  height: 25vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.artist-img {
  width: 100%;
  height: 100%;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 1s;
}

.artist-img:hover {
  transform: scale(1.2);
}

.artist-overlay {
  width: 100%;
  height: 25vw;
  position: absolute;
  background: #000000;
  opacity: 0.2;
  z-index: 1;
}

.artist-overlay:hover {
  background: #000000;
  opacity: 0.6;
  transition: all 1s;
}

a:hover .artist-overlay {
  background: #000000;
  opacity: 0.6;
}

/* Artist Name*/

.artist-name {
  color: #ffffff;
  position: absolute;
  z-index: 2;
  padding: 15px;
}

.artist-name h2 {
  font-weight: 900;
  opacity: 0.3;
  transition-duration: 1s;
}
.artist-name h5,
.artist-name h6 {
  opacity: 0;
  transition-duration: 1s;
}

a:hover .artist-name h2 {
  opacity: 1;
}

a:hover .artist-name h5,
a:hover .artist-name h6 {
  opacity: 0.7;
}

a:hover .artist-name {
  color: #ffffff;
}

.outro {
  min-height: 50vh;
  display: grid;
  justify-content: center;
  align-content: center;
}

.social-container {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-container img {
  width: 90px;
  height: auto;
}

.navbar {
  margin-right: 10vw;
  margin-left: 10vw;
}

#search-box {
  padding: initial;
  height: auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 0;
  text-transform: uppercase;
}

/*  ---  Media Queries  ---  */

/*  ---  Tablet  ---  */
@media (max-width: 1200px) {
  .artist-abc-grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .artist-container {
    grid-template-columns: 40vw 40vw;
  }

  .artist-box {
    height: 40vw;
  }

  .artist-overlay {
    height: 40vw;
  }

  #dj {
    margin: 0 25%;
  }

  .wrapper {
    padding: 0 8.75vw;
  }

  .navbar {
    margin-right: 8.75vw;
    margin-left: 8.75vw;
  }

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

@media (max-width: 678px) {
  .filters-area {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .artist-abc-grid-3,
  .artist-abc-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*  ---  Smartphone  ---  */
@media (max-width: 480px) {
  .artist-container {
    grid-template-columns: 80vw;
    grid-gap: 15px;
  }

  #dj {
    margin: 0 10%;
  }

  .wrapper {
    padding: 0 10vw;
  }

  .navbar {
    margin-right: 10vw;
    margin-left: 10vw;
  }

  .artist-box {
    height: 80vw;
  }

  .artist-overlay {
    height: 80vw;
  }

  .filters {
    grid-template-columns: 1fr;
  }

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