@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #6dd5ed, #2193b0);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.app {
  max-width: 750px;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

h1 {
  margin-bottom: 25px;
  color: #fff;
  font-size: 2.2rem;
}

.search-box {
  margin-bottom: 25px;
}

input {
  padding: 12px;
  width: 65%;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

button {
  padding: 12px 22px;
  margin-left: 10px;
  border: none;
  background: #ff7b54;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #ff5c33;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: none;
  margin-top: 25px;
  overflow: hidden;
  animation: fadeIn 0.8s ease-in-out;
}

.card-header {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.card-header::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
}

.card-header img {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  border-radius: 50%;
  border: 5px solid white;
  z-index: 2;
}

.card-body {
  padding: 60px 20px 20px;
  text-align: center;
}

.card-body h2 {
  margin: 10px 0;
  font-size: 1.8rem;
}

.info {
  text-align: left;
  margin: 15px 0;
}

.info p {
  margin: 8px 0;
  font-size: 15px;
}

.info strong {
  color: #444;
}

a.map-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  background: #2193b0;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

a.map-link:hover {
  background: #17687f;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


