@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #fafaf8;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.bg-image { display: none; }

.container {
  width: 100%;
  max-width: 560px;
  animation: fadein 0.7s ease forwards;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c84b2f;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #c84b2f;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 1.08;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

h1 em {
  font-style: italic;
  color: #c84b2f;
}


h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.08;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

h2 em {
  font-style: italic;
  color: #c84b2f;
}

.subtitle {
  font-size: 0.85rem;
  color: #aaa;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.location-wrap {
  position: relative;
}

.place-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  display: none;
  animation: fadein 0.5s ease forwards;
}

.place-image.visible { display: block; }

.form { display: flex; flex-direction: column; gap: 0.5rem; }

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin: 0.25rem 0;
}

.vibe-btn {
  padding: 0.65rem 0.25rem;
  border: 1px solid #e8e5e0;
  background: #fff;
  color: #aaa;
  border-radius: 8px;
  font-size: 0.68rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.vibe-btn:hover { border-color: #ccc; color: #666; }

.vibe-btn.active {
  border-color: #c84b2f;
  color: #c84b2f;
  background: #fdf2ef;
}

input {
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  border: 1px solid #e8e5e0;
  background: #fff;
  color: #1a1a1a;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

input::placeholder { color: #ccc; }
input:focus { border-color: #c84b2f; }

.submit-btn {
  margin-top: 0.75rem;
  padding: 1rem;
  background: #1a1a1a;
  color: #fafaf8;
  border: none;
  border-radius: 8px;
  font-size: 0.78rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover { background: #2d2d2d; }
.submit-btn:active { transform: scale(0.99); }
.submit-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.arrow { transition: transform 0.2s; }
.submit-btn:hover .arrow { transform: translateX(4px); }

.loading {
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c84b2f;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 4px; height: 4px;
  background: #c84b2f;
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

.result {
  margin-top: 2.5rem;
  border-top: 1px solid #e8e5e0;
  padding-top: 2rem;
  line-height: 1.9;
  font-size: 0.88rem;
  color: #666;
  font-weight: 300;
  animation: fadein 0.6s ease forwards;
}

.result h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 1.5rem 0 0.4rem;
}

.result h3:first-child { margin-top: 0; }
.result b { color: #c84b2f; font-weight: 500; }

.hidden { display: none; }

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .vibe-grid { grid-template-columns: repeat(3, 1fr); }
}

/* .place-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-top: 0.5rem;
  display: none;
  animation: fadein 0.5s ease forwards;
  border: 1px solid #e8e5e0;
} */

/* .place-image.visible { display: block; } */

.result h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 2rem 0 0.75rem;
}

.result h3:first-child { margin-top: 0; }

/* .place-card {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 12px;
  margin: 0.5rem 0 1.25rem;
  display: block;
  border: 1px solid #e8e5e0;
  transition: transform 0.3s ease;
}

.place-card:hover {
  transform: scale(1.01);
} */

.place-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-top: 0.75rem;
  display: none;
  animation: fadein 0.5s ease forwards;
  border: 1px solid #e8e5e0;
}

.place-image.visible { display: block; }

.place-card {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin: 0.75rem 0 1.25rem;
  display: block;
  border: 1px solid #e8e5e0;
  transition: transform 0.3s ease;
}

.place-card:hover {
  transform: scale(1.01);
}

@media (max-width: 480px) {
  .place-image { height: 180px; }
  .place-card { height: 160px; }
}



























.time-grid, .group-grid {
  display: grid;
  gap: 0.5rem;
}

.time-grid { grid-template-columns: repeat(4, 1fr); }
.group-grid { grid-template-columns: repeat(3, 1fr); }

.time-btn, .group-btn {
  padding: 0.6rem 0.25rem;
  border: 1px solid #e8e5e0;
  background: #fff;
  color: #aaa;
  border-radius: 8px;
  font-size: 0.68rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.time-btn:hover, .group-btn:hover { border-color: #ccc; color: #666; }

.time-btn.active, .group-btn.active {
  border-color: #c84b2f;
  color: #c84b2f;
  background: #fdf2ef;
}

.result-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.action-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #e8e5e0;
  background: #fff;
  color: #666;
  border-radius: 8px;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.action-btn:hover {
  border-color: #c84b2f;
  color: #c84b2f;
}

.chart-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e5e0;
}

.chart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e8e5e0;
  border-radius: 8px;
  margin-top: 4px;
  z-index: 10;
  overflow: hidden;
}

.suggestion-item {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #444;
  cursor: pointer;
  transition: background 0.1s;
  font-family: 'Inter', sans-serif;
}

.suggestion-item:hover { background: #fdf2ef; color: #c84b2f; }

.location-wrap { position: relative; }

.saved-section { margin-top: 1rem; }

.saved-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #e8e5e0;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.saved-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1a1a;
  display: block;
}

.saved-meta {
  font-size: 0.75rem;
  color: #aaa;
  text-transform: capitalize;
}

.saved-view {
  border: none;
  background: none;
  color: #c84b2f;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

.footer {
    text-align: center;
    padding: 28px;
    margin-top: 60px;
    font-size: 0.95rem;
}



body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

.footer {
    margin-top: auto;
    text-align: center;
    padding: 28px;
    font-size: 0.95rem;
}

a{
  color: black;
}