/* Landing Page Styles */
#landing-container {
  width: 100%;
  background: url("/assets/home-background-effcb1c7.png") center center / cover no-repeat;

  /* Match Glass Overlay */
  border-radius: 12px;
}

#landing {
  min-height: 80vh;
  margin-bottom: -8px;
}

.search-input-wrapper {
  position: relative;
  display: block;
  width: 350px;
  max-width: 100%;
  margin-bottom: 24px;
  transition: width 0.3s ease;
}

.search-input-wrapper:has(input:focus) {
  width: 100%;
}

.landing-search input {
  font-size: 1.2rem;
  text-align: center;
  width: 100%;
  padding: 18px 48px;
  border-radius: 32px;
  margin-bottom: 0;
}

.locate-button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d5a422;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.locate-button:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.locate-button img {
  filter: brightness(0) invert(1);
}

.landing-search input::placeholder {
  color: #2f2e2b;
}

@media (prefers-color-scheme: dark) {
  #landing-container {
    background-image: url("/assets/home-background-dark-1d1c7c16.png");
  }

  #landing.glass {
    background-color: #1e1d1bcd;
    border-color: rgb(50, 43, 43);
    color: rgba(255, 255, 255, 0.5);
  }
}
