/* === GENERAL === */
.listing-page-container {
  padding: 40px 5%;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.title-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  width: 100%;
  padding-left: 40px;
}

/* Move Back button above and aligned with title */
.back-link {
  color: #b8b8b8;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #66a9cc;
}

/* === LAYOUT === */
.listing-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 1400px;
  margin-top: 20px;
}

.left-column {
  flex: 1 1 45%;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 40px;
}

.right-column {
  flex: 1 1 48%;
  display: flex;
  justify-content: flex-start;
}

/* === LEFT COLUMN === */
.listing-title {
  font-size: 3rem;
  color: #41AACD;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  text-align: left;
}

.listing-address {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 25px;
  text-align: left;
  width: 100%;
  gap: 10px;
}

.address-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
  position: relative;
  top: 5px;
}

.thoughts-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.subtitle {
  font-weight: 600;
  font-size: 1.05rem;
  color: #333;
}

.blog-button {
  display: inline-block;
  background-color: #66a9cc;
  color: #fff;
  padding: 8px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.blog-button:hover {
  background-color: #4f95bb;
  transform: translateY(-1px);
}

.divider {
  border-bottom: 3px dotted #8dc4e4;
  margin: 15px 0 15px 0;
  width: 95%;
}

.inclusive-section h3 {
  font-size: 1.3rem;
  color: #66a9cc;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background-color: #e7f1ff;
  color: #005bb5;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* === RIGHT COLUMN (BLUE PANEL) === */
.blue-panel {
  background-color: #9dc1d6; /* slightly darker for contrast */
  border-radius: 6px;
  padding: 25px 20px;
  width: 95%;
  margin: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* === IMAGE CARD === */
.image-card {
  text-align: center;
  margin-bottom: 10px;
}

.image-card img {
  width: 70%;
  max-width: 380px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* === CITY + DETAILS === */
.city {
  text-align: center;
  font-size: 2rem;
  font-weight: 550;
  color: #ffffff;
  margin-top: 8px;
  margin-bottom: 3px;
}

.age-range {
  text-align: center;
  color: #333;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.website-link {
  color: #41AACD;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.website-link:hover {
  color: #002d4a;
}

/* Remove unnecessary info */
.activity-details {
  display: none;
}

/* === NOTES SECTION === */
.description-section {
  margin-top: 20px;
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 12px;
  line-height: 1.7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.description-section h3 {
  color: #c22c5a;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 5px;
  margin-bottom: 8px;
  text-align: center;
}

.description-section p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 10px;
  white-space: pre-line;
  text-align: left;
}

/* === RESPONSIVE === */
@media screen and (max-width: 900px) {
  .listing-columns {
    flex-direction: column;
    align-items: center;
  }

  .blue-panel {
    max-width: 100%;
  }

  .image-card img {
    width: 85%;
  }

  .left-column, .right-column {
    flex: 1 1 100%;
    text-align: center;
    padding-left: 0;
  }

  .divider {
    width: 100%;
  }
}
