/* ============================================================
   base.css — design tokens, reset, typography, buttons, helpers
   Shared across all ORYGN static pages.
   ============================================================ */

:root {
  --color-primary: #FE5000;   /* brand orange */
  --color-secondary: #F59E0B;
  --color-accent: #10B981;

  --dark-bar: #262626;
  --page-bg: #fbfbfb;
  --white: #ffffff;
  --ink: #111111;
  --ink-strong: #1a1a1a;
  --muted: #555555;
  --muted-2: #444444;

  --shop-purple: #C63AFE;
  --shop-blue: #36A9EC;
  --divider: #D9D9D9;
  --divider-2: #9F9D9D;

  --ff: 'Barlow', sans-serif;
  --ffc: 'Barlow Condensed', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--page-bg);
  color: var(--ink);
  font-family: var(--ffc);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

.text-primary { color: var(--color-primary); }
.orange { color: var(--color-primary); }

/* Shared width container mirroring Tailwind max-w-7xl mx-auto px-6 */
.container-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
}

/* ---------- Buttons (ported from CustomButton.vue) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 5.5px 21px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s;
  border: 1px solid transparent;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--ffc);
  line-height: 1.2;
}
.btn--solid-black   { background: #000; color: #fff; }
.btn--solid-black:hover { background: #434344; }
.btn--outline-black { background: transparent; border-color: #000; color: #000; }
.btn--outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn--outline-white:hover { background: #fff; color: #111827; }
.btn--solid-magenta { background: #FF00FF; color: #fff; }
.btn--solid-magenta:hover { opacity: 0.9; }
.btn--outline-magenta { background: transparent; border-color: #FF00FF; color: #FF00FF; }
.btn--outline-magenta:hover { background: #FF00FF; color: #fff; }
.btn--text-magenta { background: transparent; color: #FF00FF; }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { opacity: 0.9; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-lg { font-size: 1.25rem; padding: 12px 40px; border-radius: 6px; font-weight: 500; text-transform: capitalize; }

/* ---------- Scroll reveal helper (RevealWrapper) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Accessibility / misc ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.no-scroll { overflow: hidden; }
