* {
  box-sizing: border-box;
}

/* GLOBAL */
html, body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  overflow-x: hidden;
}

body {
  overflow-y: auto;
}

a {
  color: #000;
  text-decoration: none;
}

/* HEADER */
header {
  padding: 20px 20px 10px;
  border-bottom: 1px solid #000;
  text-align: center;
}

header img {
  max-width: 260px;
}

/* MAIN */
main {
  padding: 20px 40px;
}

/* NAV */
.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.nav-button {
  padding: 8px 14px;
  border: 1px solid #000;
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.nav-button:hover {
  background: #000;
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #000;
  display: none;
  min-width: 160px;
  z-index: 10;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  border-bottom: 1px solid #000;
  font-size: 12px;
  text-transform: uppercase;
}

.dropdown-item:last-child {
  border-bottom: none;
}

/* TITLE */
.upcoming-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 30px 0 30px;
  text-align: center;
}

/* GRID */
.artist-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* ARTIST TILE */
.artist-image-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
}

.artist-image-wrapper img {
  width: 350px;
  height: 350px;
  object-fit: cover;
}

/* OVERLAY */
.artist-overlay {
  position: absolute;
  inset: 0;
  background: rgba(180, 180, 180, 0);
  transition: 0.25s ease;
}

.artist-item:hover .artist-overlay {
  background: rgba(160, 160, 160, 0.75);
}

/* NAME TEXT */
.artist-name-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  background: rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  font-size: 14px;
  letter-spacing: 0.2em;
  opacity: 0.7;
  transition: 0.25s ease;
}

.artist-item:hover .artist-name-overlay {
  background: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

/* FOOTER */
footer {
  margin-top: 40px;
  padding: 20px 40px;
  border-top: 1px solid #000;
}

.footer-location {
  font-size: 12px;
  letter-spacing: 0.14em;
}

.footer-icons {
  display: flex;
  gap: 14px;
}

.footer-icons img {
  width: 32px;
}
