/* Lodging detail page styling — sibling to ford-detail.css */

.lodging-detail-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 96px;
  color: #2c3440;
}

/* Breadcrumb */
.lodging-breadcrumb {
  font-size: 14px;
  color: #5a6472;
  margin-bottom: 12px;
}
.lodging-breadcrumb a {
  color: #5a6472;
  text-decoration: none;
}
.lodging-breadcrumb a:hover { color: #4a6524; }
.lodging-breadcrumb .sep {
  color: #b0b7c1;
  margin: 0 6px;
}

/* Hero */
.lodging-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 40px 28px 32px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3358 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 51, 88, 0.2);
}
.lodging-hero.has-photo {
  background-size: cover;
  background-position: center;
}
.lodging-hero.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 25, 40, 0.35) 0%, rgba(10, 25, 40, 0.75) 100%);
}
.lodging-hero-inner {
  position: relative;
  z-index: 1;
}
.lodging-hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.85;
  margin-bottom: 8px;
  font-weight: 600;
}
.lodging-hero h1 {
  margin: 0 0 14px;
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.lodging-hero .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lodging-hero .chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  color: #2c3440;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.lodging-hero .chip-price { background: #fff4c4; color: #806000; }
.lodging-hero .chip-area { background: #e8f0fe; color: #1f4e86; }
.lodging-hero .chip-featured {
  background: #5a9367;
  color: #fff;
}

/* Primary CTA bar — sticky on mobile */
.primary-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0 20px;
  align-items: center;
}
.primary-cta-bar .btn-primary,
.primary-cta-bar .btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.primary-cta-bar .btn-primary {
  background: #2c5aa0;
  color: #fff;
}
.primary-cta-bar .btn-primary:hover { background: #1f4680; }
.primary-cta-bar .btn-secondary {
  background: #fff;
  color: #2c5aa0;
  border-color: #c4d2e6;
}
.primary-cta-bar .btn-secondary:hover { border-color: #2c5aa0; }

@media (max-width: 700px) {
  .primary-cta-bar {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    padding: 10px 14px;
    margin: 0 -20px;
    border-top: 1px solid #e8eaed;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.06);
  }
  .primary-cta-bar .btn-primary {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Stats strip */
.lodging-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  background: #f7f9fa;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  overflow: hidden;
}
.lodging-stats-strip .stat {
  flex: 1 1 160px;
  padding: 14px 18px;
  border-right: 1px solid #e8eaed;
  min-width: 0;
}
.lodging-stats-strip .stat:last-child { border-right: none; }
.lodging-stats-strip .stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #8B94A1;
  margin-bottom: 4px;
}
.lodging-stats-strip .stat-value {
  font-size: 15px;
  color: #1a2530;
  font-weight: 500;
  line-height: 1.35;
}

/* Two-column layout */
.lodging-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .lodging-layout {
    grid-template-columns: 1fr;
  }
}

.lodging-main section {
  margin-bottom: 28px;
}
.lodging-main h2 {
  font-size: 1.3em;
  font-weight: 600;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
  color: #1a2530;
}
.lodging-main p {
  line-height: 1.6;
  color: #3a4350;
}

/* Photo carousel + Description card — in poi-detail-shared.css */

/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.amenity-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e8eaed;
  background: #fff;
  font-size: 14px;
  color: #3a4350;
}
.amenity-tile .amenity-icon {
  font-size: 18px;
  line-height: 1;
}
.amenity-on {
  background: #eff7ec;
  border-color: #c8dec0;
  color: #2f6c2f;
}
.amenity-off {
  background: #fafbfc;
  color: #b0b7c1;
  text-decoration: line-through;
}
.amenity-unknown {
  background: #fafbfc;
  color: #8B94A1;
}

/* Hiker logistics */
.hiker-logistics .hl-card {
  background: #fff8e1;
  border: 1px solid #f6d990;
  border-left: 4px solid #f6b73c;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 12px;
}
.hiker-logistics .hl-card h3 {
  margin: 0 0 6px;
  font-size: 1em;
  color: #805600;
  font-weight: 600;
}
.hiker-logistics .hl-card p {
  margin: 0;
  font-size: 14px;
  color: #5c3d00;
  line-height: 1.55;
}
.hiker-logistics .hl-card.hl-muted {
  background: #fafbfc;
  border-color: #e8eaed;
  border-left-color: #b0b7c1;
}
.hiker-logistics .hl-card.hl-muted h3 { color: #5a6472; }
.hiker-logistics .hl-card.hl-muted p { color: #8B94A1; }
.hiker-logistics .transport-list {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: #5c3d00;
  line-height: 1.6;
}

/* Map */
.lodging-map-wrap {
  border: 1px solid #e8eaed;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.lodging-map-wrap .leaflet-container {
  width: 100%;
  height: 380px;
}
.lodging-map-legend {
  padding: 10px 14px;
  background: #f7f9fa;
  border-top: 1px solid #e8eaed;
  font-size: 13px;
  color: #5a6472;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.lodging-map-legend .legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}

/* Nearby */
.nearby-block .nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.nearby-block h3 {
  margin: 0 0 8px;
  font-size: 0.95em;
  color: #1a2530;
  font-weight: 600;
}
.nearby-block ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #3a4350;
}
.nearby-block .muted { color: #8B94A1; font-size: 13px; }

/* FAQ */
.faq-block .faq-item {
  border: 1px solid #e8eaed;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: #fff;
}
.faq-block .faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #1a2530;
  font-size: 15px;
  list-style: none;
}
.faq-block .faq-item summary::-webkit-details-marker { display: none; }
.faq-block .faq-item summary::before {
  content: "▸ ";
  color: #8B94A1;
  margin-right: 4px;
}
.faq-block .faq-item[open] summary::before { content: "▾ "; }
.faq-block .faq-item p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #3a4350;
}

/* Sidebar */
.lodging-sidebar {
  position: sticky;
  top: 20px;
}
.lodging-sidebar .sidebar-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.lodging-sidebar .sidebar-card h4 {
  margin: 0 0 12px;
  font-size: 0.9em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #5a6472;
}
.lodging-sidebar .fact-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px dashed #eef0f3;
}
.lodging-sidebar .fact-row:last-child { border-bottom: none; }
.lodging-sidebar .fact-label {
  color: #8B94A1;
}
.lodging-sidebar .fact-value {
  color: #1a2530;
  font-weight: 500;
  text-align: right;
}
.lodging-sidebar .trail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.lodging-sidebar .trail-list li { margin-bottom: 6px; }
.lodging-sidebar .trail-list li:last-child { margin-bottom: 0; }
.lodging-sidebar .trail-list a {
  color: #2c5aa0;
  text-decoration: none;
}
.lodging-sidebar .trail-list a:hover { text-decoration: underline; }
