:root {
  --bg-top: #000000;
  --bg-bottom: #1c3a2a; /* deep green */
  --text-main: #e0e0e0; /* light grey for text */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: linear-gradient(to top, var(--bg-bottom) 0%, var(--bg-top) 60%);
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 4rem;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.logo-full img {
  display: block;
  max-width: min(90vw, 900px); /* cap big logo */
  height: auto;
}

.logo-heart {
  display: block;
  max-width: 90vw;
  height: auto;
}

/* Default: desktop/tablet/landscape - show full logo, hide heart-only */
.logo-full {
  display: block;
}

.logo-heart {
  display: none;
}

.status {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  width: 100%;
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(224, 224, 224, 0.8);
}

.site-footer p + p {
  margin-top: 0.25rem;
}

/* Tablet tweaks */
@media (min-width: 768px) and (max-width: 844px) {
  .logo-full img {
    max-width: 40vw;
  }

  .status {
    font-size: 1.6rem;
  }
}

/* Desktop */
@media (min-width: 1200px) {
   .status {
    font-size: 1.75rem;
  }
}

/* Phone portrait: show heart only, hide full logo */
@media (max-width: 767px) and (orientation: portrait) {
  .logo-full {
    display: none;
  }

  .logo-heart {
    display: block;
    max-width: 60vw;
  }

  .status {
    font-size: 1.3rem;
  }
}
