.property-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 58px;
}

.prx-detail h4{
  text-transform: uppercase;
}

.property-hero-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.property-hero-header p{
    font-family: var(--font-henry);
    font-size: 24px;
    font-weight: 300;
}

.property-wrapper img{
    width: 100%;
}

/* Unit section */

.unit-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 160px;
    padding: 80px 0;
    gap: 80px   ;
}

.unit-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 98px;
}

.unit-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.unit-blurb{
    font-family: var(--font-henry);
    font-size: 24px;
    font-weight: 300;
    width: 100%;
    text-align: center;
}

.unit-links{
    margin-top: 20px;
}

.unit-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.unit-image img {
  display: block;
  object-fit: cover;
}

.unit-image.side img {
  max-width: 400px;
  width: 100%;
  height: 609px;
  object-position: center;
  object-fit: cover;
  border-radius: 8px;
}

.unit-image.center img {
  max-width: 720px;
  width: 100%;
  height: 609px;
  object-position: center;
  object-fit: cover;
  border-radius: 8px;
}

.details-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 160px;
    padding: 80px 0;
    gap: 60px;
}

.details-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.details-header p{
    font-family: var(--font-henry);
    max-width: 1360px;
    width: 100%;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
}

/* === DETAILS LIST CONTAINER === */
.details-lists {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
  padding: 20px 0;
}

/* === EACH DETAILS BOX === */
.details-box {
  width: 100%;
  max-width: 450px;
  height: 420px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.details-lists .details-box:nth-child(2) {
  border-left: 4px solid var(--color-primary-blue);
  border-right: 4px solid var(--color-primary-blue);
}

/* === ICONS === */
.details-box img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

/* === TEXT STYLING === */
.details-box p,
.details-box ul {
    font-family: var(--font-henry);
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

.details-box ul {
  list-style: none;
  padding-left: 0;
}

.details-box li {
  margin-bottom: 6px;
}

.details-box strong {
  color: var(--color-primary-blue);
  font-weight: 600;
}

.amenities-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.amenities-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

 .amenities-header p{
    font-family: var(--font-henry);
    max-width: 991px;
    width: 100%;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
}


.amenities-carousel {
  width: 100%;
  max-width: 1600px;
  height: 647px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* === WRAPPER SECTION === */
.amenities-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* === HEADER === */
.amenities-header {
  text-align: center;
  max-width: 900px;
}

.amenities-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.amenities-header p {
  font-size: 24px;
  color: #444;
  line-height: 1.6;
}

/* === CAROUSEL BASE === */
.amenities-carousel {
  width: 100%;
  max-width: 1600px;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 38px;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 647px;;
  transition: transform 0.5s ease;
}

.carousel-nav{
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.slide {
  flex: 0 0 100%;
  height: 647px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 20px;
  display: block;
}

/* === NAV BUTTONS === */
.nav-btn {
  border: none;
  background-color: inherit ;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  top: 50%;
  z-index: 5;
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}


.unique-feature-section {
  padding: 80px 0;
}

.unique-feature-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 160px;
  text-align: center;
  gap: 40px;
}

.unique-feature-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.unique-feature-blurb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.uf-bold {
    font-weight: 600;
}

.contact-box ul{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-box ul li{
  font-family: var(--font-henry);
    max-width: 1200px;
    width: 100%;
    font-size: 24px;
    font-weight: 300;
    text-align: left;
}

.blurb-column p{
  font-family: var(--font-henry);
  font-size: 24px;
  font-weight: 300;
  text-align: left;
}

/* === Unique Feature Gallery Container === */
.unique-feature-gallery-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* === Horizontal Scroll Gallery === */
.vertical-scroll {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    width: 1600px;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 60px;
}

/* === GALLERY WRAPPER === */
.unique-feature-gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
}

/* === Gallery Items === */
.gallery-item {
    flex: 0 0 auto; /* <-- Responsive width based on image */
    scroll-snap-align: start;
}

.gallery-item img {
    width: 100%;  /* Set image width to control spacing  */
    height: 360px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 8px;
}

/* === Custom Scrollbar === */
.vertical-scroll::-webkit-scrollbar {
    height: 8px;
}

.vertical-scroll::-webkit-scrollbar-track {
    background: var(--color-secondary-blue);
    border-radius: 8px;
}

.vertical-scroll::-webkit-scrollbar-thumb {
    background: var(--color-primary-blue);
    border-radius: 8px;
}
/* === RESPONSIVE STYLES === */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .property-wrapper,
  .unit-container,
  .details-wrapper,
  .unique-feature-wrapper {
    margin: 0 40px;
    padding: 40px 0;
    gap: 40px;
  }

  .unit-gallery {
    gap: 20px;
  }

  .unit-image.side img,
  .unit-image.center img {
    max-width: 320px;
    height: 320px;
  }

  .unit-image.center img {
    max-width: 480px;
  }

  .details-box {
    max-width: 100%;
    height: auto;
    padding: 20px 10px;
  }

  .details-lists {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .details-lists .details-box:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 4px solid var(--color-primary-blue);
    border-bottom: 4px solid var(--color-primary-blue);
  }

  .amenities-carousel,
  .carousel-track,
  .slide {
    max-width: 100%;
    height: 320px;
    min-height: 200px;
  }

  .unique-feature-gallery-container {
    padding: 10px 0;
  }

  .gallery-item {
    height: 200px;
  }
}

/* Mobile (max-width: 600px) */
@media (max-width: 760px) {
  .property-wrapper,
  .unit-container,
  .details-wrapper,
  .unique-feature-wrapper {
    margin: 0 10px;
    padding: 20px 0;
    gap: 24px;
  }

  .property-hero-header p,
  .unit-blurb,
  .details-header p,
  .details-box p,
  .details-box ul,
  .amenities-header p,
  .blurb-column p {
    font-size: 16px;
    text-align: center;
  }

  .unit-gallery {
    flex-direction: column;
    gap: 12px;
  }

  .unit-image.side img,
  .unit-image.center img {
    max-width: 100%;
    height: 180px;
  }

  .unit-image.center img {
    max-width: 100%;
  }

  .details-lists {
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
  }

  .details-box {
    max-width: 100%;
    height: auto;
    padding: 12px 4px;
    gap: 8px;
  }

  .details-lists .details-box:nth-child(2) {
    border: none;
    border-top: 2px solid var(--color-primary-blue);
    border-bottom: 2px solid var(--color-primary-blue);
  }

  .amenities-carousel,
  .carousel-track,
  .slide {
    max-width: 100%;
    height: 160px;
    min-height: 100px;
    border-radius: 10px;
  }

  .slide img {
    border-radius: 10px;
  }

  .unique-feature-blurb {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 1rem;
  }

  .unique-feature-gallery-container {
    padding: 5px 0;
  }

  .gallery-item {
    height: 100px;
  }
}