.city-page-container {
}

.large-heading {
  font-size: 2rem;
  font-weight: 600;
}

.text-container {
  display: flex;
  width: 100%;
  justify-content: center;
}

.expandable-container {
  width: 100%;
  min-width: 18rem;
  color: white;
  position: relative;
  margin-top: 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url('../assets/images/dark-bananas.webp');
}

.content {
  max-height: 170px;
  overflow: hidden;
  transition: max-height 0.6s ease-out;
  padding: 1.2rem;
  text-align: center;
  color: white;
}

.content h3,
h4 {
  color: white;
  font-size: 2rem;
}

.content p {
  padding: 6px;
  line-height: 1.5rem;
  font-size: 1.3rem;
}

.hidden-content {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.expand-arrow {
  display: block;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 5px;
}

.expand-toggle {
  display: none;
}

.expand-toggle:checked + .content {
  min-height: fit-content;
  max-height: 1000px;
}

.expand-toggle:checked + .content .hidden-content {
  opacity: 1;
}

.expand-toggle:checked ~ .expand-arrow {
  transform: rotate(180deg);
}

.city-heading-text-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.tab-content {
  display: none;
}

.tab-content:target {
  display: block;
}

.city-bg-horizontal-text {
  display: block;
  width: 100%;
  position: absolute;
  top: -2rem;
  right: 0rem;
  font-family: Oswald, sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 5.25rem;
  letter-spacing: 0px;
  text-transform: uppercase;
  opacity: 0.3;
  pointer-events: none;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  color: yellow;
  margin: 0;
}

.text-image-rows-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: white;
}

.row-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
}

.inverted-column {
  flex-direction: column-reverse;
}

.text-part {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: fit-content;
  padding: 1rem 2rem;
}

.text-part p {
  text-align: end;
  opacity: 0.9;
  letter-spacing: 0px;
  word-spacing: 3px;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  padding: 0 1.3rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
}

.text-part ul {
  text-align: start;
  direction: rtl;
  display: flex;
  flex-direction: column;
  text-align: end;
}

.text-part ul li {
  text-align: start;
  opacity: 0.9;
  letter-spacing: 0px;
  word-spacing: 3px;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  padding: 0 1.6rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
  width: 70%;
}

.text-part a {
  color: white;
}

.text-part h2,
.text-part h3 {
  font-size: 2.2rem;
  text-align: center;
  word-spacing: 2px;
  line-height: 1.2;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  text-align: center;
  color: white;
}

.image-part {
  width: 100%;
  height: 400px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 500px) {
}

@media (501px <= width <= 1000px) {
  .expandable-container {
    width: 90%;
    border-radius: 10px;
    border: 1px solid #ccc;
  }
  .expand-toggle:checked + .content {
    max-height: 860px;
  }
  .content {
    max-height: 130px;
  }

  .row-container {
    width: 100%;
    display: flex;
    min-height: 80vh;
    height: auto;
  }

  .text-part {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: fit-content;
    padding: 6rem 3rem;
  }

  .text-part h2,
  .text-part h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2.25rem;
    line-height: 1.4;
    color: rgb(252, 180, 47);
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .text-part p {
    text-align: end;
    opacity: 0.8;
    letter-spacing: 0.3px;
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 0 1.3rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  .image-part {
    padding: 0px 3rem;
    display: flex;
    width: 100%;
    height: 600px;
  }

  .city-bg-horizontal-text {
    top: 0rem;
    right: 1rem;
    font-size: 6rem;
    letter-spacing: 2px;
    opacity: 0.4;
  }
}

@media (1001px <= width <= 3000px) {
  .city-bg-horizontal-text {
    top: -2rem;
    right: 1rem;
    font-size: 8rem;
    letter-spacing: 2px;
    opacity: 0.4;
  }

  .expandable-container {
    width: 90%;
    border-radius: 10px;
    border: 1px solid #ccc;
  }
  .content {
    max-height: 110px;
  }

  .row-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    min-height: 80vh;
    height: 90vh;
  }

  .text-part {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 50%;
    width: 50%;
    max-width: fit-content;
    padding: 6rem 3rem;
  }

  .image-part {
    padding: 0px 3rem;
    display: flex;
    width: 50%;
    height: 100%;
  }
}
