body {
  margin: 0;
  font-family: "Arima", cursive;
  color: white;
}

/* IMAGE */
.hero-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  background-image: linear-gradient(to right, red 0%, orange 100%);
  min-height: 100vh;
  padding: 50px 20px;
  text-align: center;
}

/* LOCATIONS BOX */
.locations {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: auto;
}

/* LOCATION ITEM */
.location {
  border: 1px solid #333;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
}

.location:hover {
  background: orange;
  color: black;
}

/* ADDRESS (hidden by default) */
.address {
  display: none;
  margin-top: 10px;
  font-size: 16px;
  color: #ccc;
}

/* show active */
.location.active .address {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .location {
    font-size: 16px;
  }
}
