/* Gallery + Map styles – matches your Tailwind look */

/* Search bar styling – copied from planning.css so it looks identical */
.search-section {
  max-width: 640px;
}

.search-input-group {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 9999px;
  padding: 6px 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.search-input-group:focus-within {
  border-color: #0A3D62;
  box-shadow: 0 0 0 4px rgba(10, 61, 98, 0.1);
}

.search-input-group i {
  color: #6b7280;
  padding-left: 12px;
}

.search-input-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 1.1rem;
  background: transparent;
}

.search-btn {
  background: #0A3D62;
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 10px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.search-btn:hover {
  background: #0a2e4a;
}

.clear-btn {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.clear-btn:hover {
  color: #0A3D62;
}

/* Gallery grid hover effect */
.gallery-grid img {
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}