@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #0f172a;
  --card: #111827;
  --accent: #10b981;
  --text: #e5e7eb;
  --muted: #9ca3af;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.1), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.12), transparent 32%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  gap: 32px;
}

.card {
  width: min(1100px, 100%);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  padding: 28px;
  display: grid;
  gap: 16px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.badge {
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

#map {
  width: 100%;
  height: 620px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.marker-label {
  background: rgba(17, 24, 39, 0.9);
  color: #e5e7eb;
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.info-window {
  color: #111827;
  font-size: 14px;
  margin: 0;
  /* Remove font-weight: 700 from here */
}

.info-window h3 {
  font-weight: 700;
  margin: 0;
}
/* Booth list section */
.booth-list {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booth-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booth-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.booth-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.booth-card .booth-address {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.booth-card .booth-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
}

.booth-card .booth-link:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .card {
    padding: 20px;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .title {
    font-size: 24px;
  }
  #map {
    height: 440px;
  }
}

