/* Landing page styles approximating docs/images/lonelyhearts-landing-page-1.png */

:root {
  --bg: #FAF7F3;
  --text: #161210;
  --muted: #6b6257;
  --primary: #14100d;
  --ring: #e7ddd1;
}

.landing-root {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.landing-hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 140px 16px 180px;
}

.landing-hero-inner {
  width: min(760px, 94%);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.landing-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(42px, 6.6vw, 72px);
  letter-spacing: -0.8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.landing-title-icon {
  width: clamp(40px, 5.5vw, 57px);
  height: clamp(40px, 5.5vw, 57px);
  object-fit: contain;
}

.landing-subtitle {
  color: var(--muted);
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.5;
}

.landing-web-link {
  display: inline-block;
  margin: 12px 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: #7a7a7a;
  text-decoration: none;
  letter-spacing: 0.1px;
}

.landing-web-link:hover {
  text-decoration: underline;
}

.landing-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.store-badge img {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.05));
  border-radius: 12px;
}

.landing-footer {
  padding: 56px 16px 60px;
  color: #7A7166;
  text-align: center;
  border-top: 1px solid var(--ring);
  background: rgba(255, 255, 255, 0.7);
}

.landing-footer-inner {
  width: min(880px, 96%);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.landing-footer-links a {
  color: inherit;
  text-decoration: none;
}

.landing-footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .landing-hero {
    padding: 110px 14px 140px;
  }
  .landing-hero-inner {
    gap: 80px;
  }
  .store-badge img {
    height: 50px;
  }
}
