body {
  margin: 0px;
  padding: 0px;
}

.page-top-offset {
  padding-top: 8rem;
}

@media (max-width: 991.98px) {
  .page-top-offset {
    padding-top: 9.5rem;
  }
}
.status-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 6.5rem;
  max-width: 480px;
  margin: 0 auto;
}

.status-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--bs-light);
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.status-page p {
  margin-bottom: 1.5rem;
}

.login-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6.5rem;
}

.login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
}

.policy-page {
  max-width: 720px;
}

.policy-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bs-secondary);
  border-bottom-width: 1px;
}

.policy-table td {
  vertical-align: middle;
}

.hero {
  position: relative;
  height: 82vh;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(53, 53, 58, 0.05) 0%, rgba(53, 53, 58, 0.75) 100%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 140px;
}

.hero-content h1 {
  text-wrap: balance;
  max-width: 700px;
}

.hero-subhead {
  font-size: 1.15rem;
  max-width: 560px;
  opacity: 0.95;
}

.search-section {
  position: relative;
  z-index: 3;
}

.search-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
}

.search-card-overlap {
  margin-top: -64px;
}

.search-field-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bs-secondary);
  margin-bottom: 0.25rem;
}

.navbar {
  margin-top: 0px;
  transition: all 0.5s ease-in-out;
  padding: 0px;
}

@media (max-width: 992px) {
  .navbar {
    background-color: var(--bs-dark);
  }
}
.description h2, .house-rules h2 {
  font-size: 1rem;
  font-style: normal;
}

.description li,
.house-rules li {
  list-style: square;
  font-size: 1rem;
}

.small-text {
  font-size: 0.7rem;
}

.detail-title {
  margin-bottom: 1.25rem;
}

.detail-stats {
  color: var(--bs-secondary);
}

.detail-stats i {
  color: var(--bs-primary);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.detail-stats p {
  font-size: 0.85rem;
  margin: 0;
}

.detail-section {
  margin: 2.5rem 0;
}

.detail-section h2 {
  margin-bottom: 1rem;
}

.detail-gallery {
  margin-bottom: 2.5rem;
}

.gallery-item {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
}

@media (min-width: 576px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.amenity-item {
  text-align: center;
}

.amenity-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bs-light);
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 1.1rem;
}

.amenity-item p {
  font-size: 0.8rem;
  margin: 0;
}

.checkout-page {
  max-width: 720px;
}

.checkout-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 0.75rem;
}

.checkout-summary img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.booking-panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  position: sticky;
  top: 6.5rem;
}

.booking-panel-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bs-secondary);
  margin-bottom: 1.25rem;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 22, 0.92);
  z-index: 1050;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.lightbox-close {
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.25rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.listing-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

.listing-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.listing-card-link:hover .listing-card {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.listing-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.listing-card-link:hover .listing-card-img img {
  transform: scale(1.05);
}

.listing-card-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: space-between;
}

.listing-card-location {
  font-size: 0.8rem;
  color: var(--bs-secondary);
  margin-bottom: 0.25rem;
}

.listing-card-location i {
  color: var(--bs-primary);
  margin-right: 0.25rem;
}

.listing-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--bs-secondary);
}

.listing-card-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bs-primary);
}

.empty-results {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
