/* ============================================================
   VzorkyParfemu.cz — design tokens & base
   Light minimal luxury: warm cream, charcoal accent,
   Cormorant Garamond (display serif) + Hanken Grotesk (sans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Hanken+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* surfaces — clean neutral black & white */
  --paper:       #FBFBFA;   /* main background, near-white */
  --cream:       #F1F1EF;   /* alternating section (light gray) */
  --cream-deep:  #E7E7E4;   /* cards / hover / placeholders */
  --ink:         #16150F;   /* near-black */
  --char:        #0D0D0C;   /* dark blocks (finder, promo) */

  /* text */
  --t-strong:    #16150F;
  --t-body:      #46453F;
  --t-muted:     #8B8B86;
  --t-on-dark:   #F4F4F2;
  --t-on-dark-mut:#9E9E98;

  /* lines & accents */
  --line:        #E4E4E0;
  --line-soft:   #EDEDEA;
  --gold:        #16150F;   /* accent collapses to ink in the B&W system */

  /* type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* rhythm */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
}

* { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--t-body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--t-strong);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
/* serif italic = emphasis word inside a sans headline */
h1 em, h2 em, h3 em, h4 em, .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  color: inherit;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- shared atoms ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--t-muted);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s, color .35s, box-shadow .35s;
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--ink); color: var(--t-on-dark); }
.btn--solid:hover { box-shadow: 0 14px 30px -14px rgba(26,23,18,.5); }
.btn--ghost:hover { background: var(--ink); color: var(--t-on-dark); }
.btn .arr { transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.btn:hover .arr { transform: translateX(4px); }

/* image placeholder styling shared with <image-slot> empties */
image-slot {
  --is-bg: var(--cream-deep);
  background: var(--cream-deep);
}
