/* ==========================================================================
   Uttarakhand Hill Station Finder Styles (Ghughuti Travel Tools)
   ========================================================================== */

.uk-hsf-container {
  box-sizing: border-box;
  max-width: 1140px;
  margin: 30px auto;
  padding: 28px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(15, 56, 34, 0.08);
  font-family: inherit;
  color: #2d3748;
}

.uk-hsf-container * {
  box-sizing: border-box;
}

.uk-hsf-header {
  text-align: center;
  margin-bottom: 26px;
}

.uk-hsf-badge {
  display: inline-block;
  background: #eef6f1;
  color: #1a5336;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid #c8e6d5;
}

.uk-hsf-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a5336;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.uk-hsf-subtitle {
  font-size: 15px;
  color: #55695d;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Filters */
.uk-hsf-filters {
  background: #fbfdfc;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e2ebe5;
  margin-bottom: 24px;
}

.uk-hsf-filter-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1e3a2b;
  margin-bottom: 10px;
}

.uk-hsf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.uk-hsf-tag {
  background: #ffffff;
  border: 1.5px solid #d2ded7;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s ease;
}

.uk-hsf-tag:hover {
  border-color: #1a5336;
  background: #edf5f0;
}

.uk-hsf-tag.is-active {
  background: #1a5336;
  color: #ffffff;
  border-color: #1a5336;
}

.uk-hsf-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

@media (max-width: 768px) {
  .uk-hsf-filter-grid {
    grid-template-columns: 1fr;
  }
}

.uk-hsf-filter-group {
  display: flex;
  flex-direction: column;
}

.uk-hsf-label {
  font-size: 12px;
  font-weight: 700;
  color: #4a5568;
  margin-bottom: 5px;
}

.uk-hsf-select,
.uk-hsf-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 13.5px;
  border-radius: 8px;
  border: 1.5px solid #d2ded7;
  background: #ffffff;
  color: #2d3748;
  outline: none;
}

.uk-hsf-select:focus,
.uk-hsf-input:focus {
  border-color: #1a5336;
}

/* Results header */
.uk-hsf-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef3f0;
}

.uk-hsf-results-count {
  font-size: 15px;
  color: #4a5568;
}

.uk-hsf-results-count strong {
  color: #1a5336;
  font-size: 18px;
}

.uk-hsf-reset-btn {
  background: none;
  border: none;
  color: #1a5336;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

/* Destination Cards Grid */
.uk-hsf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.uk-hsf-card {
  background: #ffffff;
  border: 1px solid #e2ebe5;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(15, 56, 34, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.uk-hsf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 56, 34, 0.1);
  border-color: #cbe0d3;
}

.uk-hsf-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.uk-hsf-card-name {
  font-size: 18px;
  font-weight: 800;
  color: #1a5336;
  margin: 0;
}

.uk-hsf-card-region {
  font-size: 11px;
  font-weight: 700;
  background: #edf5f0;
  color: #1a5336;
  padding: 3px 8px;
  border-radius: 12px;
}

.uk-hsf-tagline {
  font-size: 13px;
  color: #4a5568;
  margin-bottom: 12px;
  font-style: italic;
}

.uk-hsf-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #fbfdfc;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #edf3f0;
  margin-bottom: 12px;
  font-size: 12px;
}

.uk-hsf-spec-label {
  color: #718096;
}

.uk-hsf-spec-val {
  font-weight: 700;
  color: #1e3a2b;
}

.uk-hsf-highlights {
  font-size: 12.5px;
  color: #374151;
  margin-bottom: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

.uk-hsf-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.uk-hsf-mini-tag {
  font-size: 10.5px;
  background: #f1f5f3;
  color: #374151;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
}
