/* ============================================================
   LOKERSE FEESTEN 2026 — Huisstijl / Brand CSS
   Design tokens + reusable components.
   Self-contained: only external dependency is Google Fonts.
   Drop <link rel="stylesheet" href="lf-brand.css"> or paste the
   :root + classes you need straight into a <style> block.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* --- Core palette (sampled from official 26-badge artwork) ---
     Official brand colour names in CAPS; the descriptive note follows. */
  --lf-pink:   #EA1890;   /* PINK   — hot magenta            */
  --lf-red:    #EA1824;   /* RED    — accent red             */
  --lf-orange: #F0781E;   /* ORANGE — signature orange       */
  --lf-yellow: #D2D824;   /* YELLOW — acid lime-yellow       */
  --lf-green:  #4EBA72;   /* GREEN  — festival green         */
  --lf-blue:   #6C6CAE;   /* BLUE   — periwinkle (NOT purple)*/

  --lf-black:  #000000;
  --lf-white:  #FFFFFF;

  /* Back-compat aliases (older code referred to these) */
  --lf-lime:   var(--lf-yellow);
  --lf-purple: var(--lf-blue);

  /* --- Signature gradients ---
     Colours always flow into a HUE-ADJACENT neighbour. Hue order:
     pink -> red -> orange -> yellow -> green -> blue. */
  --lf-grad-yellow-green: linear-gradient(90deg, var(--lf-yellow), var(--lf-green));
  --lf-grad-pink-orange:  linear-gradient(90deg, var(--lf-pink),   var(--lf-orange));
  --lf-grad-orange-blue:  linear-gradient(90deg, var(--lf-orange), var(--lf-blue));
  --lf-grad-pink-blue:    linear-gradient(90deg, var(--lf-pink),   var(--lf-blue));
  --lf-grad-green-orange: linear-gradient(90deg, var(--lf-green),  var(--lf-orange));
  --lf-grad-red-orange:   linear-gradient(90deg, var(--lf-red),    var(--lf-orange));

  /* --- Type --- */
  --lf-font-display: 'Anton', system-ui, sans-serif;     /* titles only */
  --lf-font-text:    'Work Sans', system-ui, sans-serif; /* everything else */

  /* --- Geometry --- */
  --lf-radius-pill: 9999px;   /* the defining shape: full lozenge */
  --lf-radius-soft: 18px;     /* for larger panels that shouldn't be full pills */

  /* --- Spacing rhythm --- */
  --lf-gap: 12px;
}

/* ---------- Base ---------- */
.lf-on-black { background: var(--lf-black); color: var(--lf-white); }
.lf-on-white { background: var(--lf-white); color: var(--lf-black); }

/* ---------- Typography ---------- */
.lf-title {
  font-family: var(--lf-font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
  /* Anton is already heavy; never bold it further */
}
.lf-subtitle {
  font-family: var(--lf-font-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}
.lf-body {
  font-family: var(--lf-font-text);
  font-weight: 400;
  line-height: 1.5;
}

/* ---------- The pill (core shape) ---------- */
.lf-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35em 0.9em;
  border-radius: var(--lf-radius-pill);
  font-family: var(--lf-font-display);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.lf-pill--pink   { background: var(--lf-pink);   color: var(--lf-black); }
.lf-pill--red    { background: var(--lf-red);    color: var(--lf-white); }
.lf-pill--orange { background: var(--lf-orange); color: var(--lf-black); }
.lf-pill--yellow { background: var(--lf-yellow); color: var(--lf-black); }
.lf-pill--green  { background: var(--lf-green);  color: var(--lf-black); }
.lf-pill--blue   { background: var(--lf-blue);   color: var(--lf-black); }
.lf-pill--white  { background: var(--lf-white);  color: var(--lf-black); }
.lf-pill--black  { background: var(--lf-black);  color: var(--lf-white); }

/* ---------- Button (a pill you can click) ---------- */
.lf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border: none;
  border-radius: var(--lf-radius-pill);
  background: var(--lf-orange);
  color: var(--lf-black);
  font-family: var(--lf-font-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
}
.lf-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.lf-btn--lime  { background: var(--lf-lime); }
.lf-btn--pink  { background: var(--lf-pink); }
.lf-btn--green { background: var(--lf-green); }

/* ---------- Date strip (31 JULI -> 09 AUGUSTUS) ----------
   Two stacked rows of pills, mirroring the wordmark lock-up. */
.lf-datestrip {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--lf-font-display);
}
.lf-datestrip__row { display: flex; align-items: center; gap: 8px; }
.lf-datestrip .lf-arrow {
  width: 1.6em; height: 1.6em;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--lf-radius-pill);
}

/* ---------- Edition badge (LF / 26 monogram) ----------
   Stacked: black "LF" pill, coloured "26" pill, a trailing dot. */
.lf-badge { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.lf-badge__lf, .lf-badge__yr, .lf-badge__dot {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--lf-font-display);
}
.lf-badge__lf  { background: var(--lf-black); color: var(--lf-white); }
.lf-badge__yr  { background: var(--lf-lime);  color: var(--lf-black); }
.lf-badge__dot { background: var(--lf-green); }

/* ---------- Overlapping-circle gradient bar ----------
   The hero motif: a row of circles that overlap and shift hue,
   reading as one fluid lozenge. Build with .lf-blob children. */
.lf-blobbar { display: flex; align-items: center; }
.lf-blobbar .lf-blob {
  width: 64px; height: 64px; border-radius: 50%;
  margin-left: -22px; /* overlap */
}
.lf-blobbar .lf-blob:first-child { margin-left: 0; }

/* ---------- Sidebar rail (vertical date pills, as on the slides) ---------- */
.lf-rail {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--lf-font-display);
}
.lf-rail .lf-rail__label { writing-mode: vertical-rl; transform: rotate(180deg); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .lf-btn { transition: none; }
  .lf-btn:hover { transform: none; }
}
