/*
  Self-contained stylesheet for the moveyobodytoday section.
  Deliberately independent of the parent Fitaye site's styles.css —
  this folder is designed to be lifted into its own domain/repo with
  zero path or dependency fixes. Own brand: light theme, black and
  white only.
*/

:root {
  --bg: #ffffff;
  --bg-2: #f4f4f2;
  --ink: #0a0a0a;
  --muted: #6b6b68;
  --line: rgba(0, 0, 0, 0.14);
  --display: "Space Grotesk", system-ui, sans-serif;
  --shell: min(880px, calc(100vw - 48px));
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-wordmark {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-pad {
  padding-block: 4rem;
}

.section-index {
  font-family: var(--mono, monospace);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  border-radius: var(--radius);
  transition: opacity 0.15s ease;
}

.button:hover {
  opacity: 0.85;
}

.button-primary {
  background: var(--ink);
}

.button-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: var(--bg);
  font-weight: 500;
}

.button-link {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.button-link:hover {
  border-color: var(--ink);
}

.footer {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  margin-top: 2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--muted);
}

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

/* Session-aware header state — toggled by session.js, not present server-side
   since these pages have no server rendering to check cookies with. */
.signed-in-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.signed-in-nav.is-visible {
  display: flex;
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  border: none;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
}

.sign-out-btn {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
