/* =============================================================
   Global Brand Styles — dealhead
   Served via GitHub Pages: https://abruno-dh.github.io/brand-assets/css/global.css
   ============================================================= */

/* Fonts */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

@import url('./tokens.css');

/* ------------------------------------------------------------------
   Base reset
------------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ------------------------------------------------------------------
   Body
------------------------------------------------------------------ */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------------
   Typography
------------------------------------------------------------------ */
h1 {
  font-size: var(--font-size-9xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
}

h2 {
  font-size: var(--font-size-8xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
}

h3 {
  font-size: var(--font-size-7xl);
  font-weight: var(--font-weight-semibold);
  line-height: 1.15;
}

h4 {
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-semibold);
}

h5 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-medium);
}

h6 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-medium);
}

p {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ------------------------------------------------------------------
   Links
------------------------------------------------------------------ */
a {
  color: var(--color-accent-orange);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-orange-alt);
}

/* ------------------------------------------------------------------
   Buttons
------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--spacing-3) var(--spacing-5);
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background-color: var(--color-accent-orange);
  color: var(--color-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-border);
}

/* ------------------------------------------------------------------
   Dividers / Lines
------------------------------------------------------------------ */
hr {
  border: none;
  border-top: 1px solid var(--color-border);
}
