/* css/places.css - Places page specific styles */

/* PAGE HERO */
.page-hero {
  padding-top: 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 80px;
}
@media (max-width: 900px) {
  .page-hero-content {
    padding: 56px 28px;
  }
}
.page-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 20px;
}
.page-h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.75;
}

/* FILTER BAR */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 80px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  position: sticky;
  top: 72px;
  z-index: 100;
  scrollbar-width: thin;
}
@media (max-width: 900px) {
  .filter-bar {
    padding: 0 20px;
  }
}
.filter-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 18px 24px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--trans), border-color var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* REGION SECTION */
.region {
  padding: 80px 80px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) {
  .region {
    padding: 60px 28px;
  }
}
.region:nth-child(even) {
  background: var(--light);
}
.region-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .region-header {
    flex-direction: column;
  }
}
.region-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.region-name em {
  font-style: italic;
  color: var(--gold);
}
.region-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.region-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 520px;
}
.region-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}
@media (max-width: 900px) {
  .region-img {
    width: 100%;
    height: 180px;
    order: -1;
  }
}

/* TOWN GRID */
.town-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .town-grid {
    grid-template-columns: 1fr;
  }
}
.town-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--trans), transform 0.2s, border-color var(--trans);
}
.town-card:hover {
  box-shadow: 0 8px 32px rgba(10, 34, 64, 0.1);
  transform: translateY(-3px);
  border-color: var(--gold-border);
}
.town-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.town-card-body {
  padding: 24px;
}
.town-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.town-region-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.town-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* HOTEL LIST */
.hotel-list {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.hotel-list-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.hotel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--light);
  flex-wrap: wrap;
}
.hotel-item:last-child {
  border-bottom: none;
}
.hotel-star {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
}
.hotel-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}
.hotel-type {
  font-size: 11px;
  color: var(--text-muted);
}

/* ATTRACTIONS */
.attr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.attr-chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--light);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 20px;
}