/* Hero entry point → LandFilm configurator. An address search box that carries the
   typed address into Step 1 (/configure?address=...). Matches the land-films hero
   (black bg, cyan #22d3ee). Staged into /public/css by scripts/prepare-assets.mjs. */

.lf-cfg-search {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: min(560px, 92vw);
  margin: 6px auto 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 7px 7px 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lf-cfg-search:focus-within {
  border-color: rgba(34, 211, 238, 0.6);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.lf-cfg-search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  padding: 0 14px;
}

.lf-cfg-search-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.lf-cfg-search-btn {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #001016;
  background: linear-gradient(145deg, #22d3ee, #1eabc7);
  border-radius: 999px;
  padding: 13px 22px;
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.25s;
  box-shadow: 0 8px 28px -10px rgba(34, 211, 238, 0.7);
}

.lf-cfg-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px -10px rgba(34, 211, 238, 0.85);
}

.lf-cfg-search-note {
  margin: 14px auto 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .lf-cfg-search {
    flex-direction: column;
    border-radius: 18px;
    padding: 10px;
    gap: 10px;
  }
  .lf-cfg-search-input {
    padding: 10px 12px;
    text-align: center;
  }
  .lf-cfg-search-btn {
    width: 100%;
    padding: 14px;
  }
}
