/********** RESET **********/
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
}

/********** LINKS **********/
a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/********** HEADER **********/
header {
  padding: 20px 20px 10px;
  border-bottom: 1px solid #000;
}

.logo-container {
  text-align: center;
}

.logo-container img {
  max-width: 260px;
  display: inline-block;
}

/********** MAIN LAYOUT **********/
main {
  padding: 20px;
}

.left-column {
  width: 100%;
}

/********** 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-color: #ffffff;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  cursor: pointer;
}

.nav-button:hover {
  background-color: #000000;
  color: #ffffff;
}

/********** DROPDOWN **********/
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  min-width: 160px;
  background-color: #ffffff;
  border: 1px solid #000;
  display: none;
  z-index: 10;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #000;
  background: #fff;
  color: #000;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: #000;
  color: #fff;
}

/********** FRONT IMAGES **********/
.front-images-wrapper {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.front-image {
  width: 32%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid #000;
}

/********** UPCOMING SHOWS TITLE **********/
.upcoming-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 30px 0 15px;
}

/********** FOOTER **********/
.site-footer {
  margin-top: 60px;
  padding: 30px 20px;
  border-top: 1px solid #000;
}

.footer-location {
  margin: 0 0 15px;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-icons {
  display: flex;
  gap: 14px;
}

.footer-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.footer-icons a:hover img {
  transform: scale(1.1);
}

/********** MOBILE **********/
@media (max-width: 900px) {
  .front-images-wrapper {
    flex-direction: column;
  }

  .front-image {
    width: 100%;
  }
}

.shows-posters {
  width: 300px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid #000;
  margin: 6px 0;
}


.shows-posters img {
  width: 100%;
  aspect-ratio: 3 / 4;  
  object-fit: fill;     
  border: 1px solid #000;
}

.front-images-wrapper {
  display: flex;
  justify-content:flex-start;
  flex-direction: horizontal;
  gap: 16px;              
  width: 100%;
}
