:root {
  --bg: #0b0b0d;
  --fg: #f5f2ee;
  --muted: #a8a29a;
  --accent: #ff8a3d;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

/* Scrolling food background */
.food-marquee {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  opacity: 0.16;
  filter: blur(1px);
  pointer-events: none;
}

.food-marquee__track {
  display: flex;
  width: max-content;
  font-size: 3rem;
  line-height: 1;
  gap: 2.5rem;
  padding-inline: 1.5rem;
  animation-name: scroll-left;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .food-marquee__track {
    animation: none;
  }
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  gap: 0.75rem;
}

.hero__icon {
  width: 128px;
  height: 128px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  margin-bottom: 0.5rem;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  max-width: 40ch;
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0;
}

/* App Store badge — official Apple badge artwork; href becomes the real App Store link once the app is live */
.app-store-badge {
  margin-top: 1.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  cursor: default;
}

.app-store-badge img {
  display: block;
}

.app-store-badge__soon {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--fg);
}

.footer span {
  margin: 0 0.5rem;
}
