/* ============================================================
   Celebrities Barber Shop — Design Tokens
   The ONLY source of colors, type, spacing, and shared classes.
   ============================================================ */

:root {
  /* ---- Color ---- */
  --color-bg:         #0a0d1a;  /* page background — deep navy */
  --color-bg-alt:     #111628;  /* alternate section background */
  --color-surface:    #1a1f35;  /* card / raised surface background */
  --color-red:        #cc1a1a;  /* primary accent — bold crimson */
  --color-red-hover:  #a81515;  /* button hover state */
  --color-silver:     #c0c0c0;  /* chrome/silver accent */
  --color-gold:       #d4a847;  /* gold accent — badges, eyebrows */
  --color-text:       #f0f0f0;  /* primary text on dark */
  --color-text-soft:  #8a8fa8;  /* secondary text, captions */
  --color-text-muted: #5a5f78;  /* subtle text, legal */
  --color-line:       #2a2f45;  /* hairline borders */

  /* ---- Hero gradient ---- */
  --gradient-hero: linear-gradient(165deg, #0a0d1a 0%, #141830 50%, #1a1028 100%);

  /* ---- Type ----
     Headings:   Oswald (bold, condensed, confident)
     Body & UI:  Inter (clean, modern, readable)        */
  --font-heading: 'Oswald', 'Impact', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --text-h1: clamp(2.8rem, 6vw, 4.2rem);
  --text-h2: clamp(1.8rem, 3.5vw, 2.6rem);
  --text-h3: 1.25rem;
  --text-body: 1.0625rem;
  --text-small: 0.875rem;
  --text-eyebrow: 0.8125rem;

  /* ---- Spacing & shape ---- */
  --space-section: 96px;
  --space-section-mobile: 56px;
  --space-gap: 32px;
  --radius: 8px;
  --radius-pill: 999px;
  --container-max: 1080px;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* ---- Reset & base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-text); line-height: 1.15; }
h1 { font-size: var(--text-h1); font-weight: 700; text-transform: uppercase; }
h2 { font-size: var(--text-h2); font-weight: 600; }
h3 { font-size: var(--text-h3); font-weight: 600; }
img { max-width: 100%; display: block; }
a { color: var(--color-red); }

/* ---- Shared layout classes ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}
@media (max-width: 720px) {
  .section { padding-top: var(--space-section-mobile); padding-bottom: var(--space-section-mobile); }
}

/* ---- Eyebrow kicker ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-red);
  color: #ffffff;
}
.btn-primary:hover { background: var(--color-red-hover); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-line);
}
.btn-ghost:hover { border-color: var(--color-text-soft); }

/* ---- Badge pill ---- */
.badge {
  display: inline-block;
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(212, 168, 71, 0.15);
  color: var(--color-gold);
}

/* ---- Card ---- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
