/*
 * Lonestar Concerts — Brand CSS Variables
 *
 * Drop into Hello Elementor child theme style.css or include in a global
 * stylesheet. All editorial templates reference these tokens.
 *
 * Locked 2026-05-16. Do not edit hex values without updating design-system.md
 * and colors.yaml.
 */

:root {
  /* Core palette */
  --lc-charcoal: #1B1E20;
  --lc-burnt-orange: #C24E1A;
  --lc-dusty-gold: #C99A46;
  --lc-warm-oat: #F2E5CF;
  --lc-neon-ember: #C72C2C;
  --lc-weathered-steel: #6B7177;

  /* Tinted surface variants (5% / 10% / 20% mixes for cards, hovers, etc.) */
  --lc-warm-oat-deep: #E8D9BD;   /* paper, one step darker */
  --lc-warm-oat-shadow: rgba(27, 30, 32, 0.08);
  --lc-charcoal-soft: #2A2D2F;   /* slightly lifted dark surface */

  /* Functional aliases — use these in component CSS rather than raw colors */
  --lc-body-bg: var(--lc-warm-oat);
  --lc-body-text: var(--lc-charcoal);
  --lc-meta-text: var(--lc-weathered-steel);

  --lc-link: var(--lc-burnt-orange);
  --lc-link-hover: var(--lc-neon-ember);

  --lc-cta-bg: var(--lc-neon-ember);
  --lc-cta-text: var(--lc-warm-oat);
  --lc-cta-bg-hover: #B12626;

  --lc-tag-region-bg: var(--lc-dusty-gold);
  --lc-tag-region-text: var(--lc-charcoal);
  --lc-tag-genre-border: var(--lc-charcoal);
  --lc-tag-genre-bg: transparent;
  --lc-tag-genre-text: var(--lc-charcoal);

  --lc-rule: rgba(107, 113, 119, 0.35);

  /* Dark-section variants */
  --lc-dark-bg: var(--lc-charcoal);
  --lc-dark-text: var(--lc-warm-oat);
  --lc-dark-meta: var(--lc-dusty-gold);
  --lc-dark-link: var(--lc-dusty-gold);
  --lc-dark-link-hover: var(--lc-burnt-orange);

  /* Typography stacks — LC-1 brand fonts (locked 2026-05-16 style guide v2) */
  /* Load via Google Fonts: Oswald (700) + Source Sans 3 (400/600/700) */
  --lc-font-display: "Oswald", "Bebas Neue", Impact, sans-serif;   /* headlines + section headers */
  --lc-font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  --lc-font-marquee: "Oswald", "Bebas Neue", Impact, sans-serif;   /* CTAs, marquee, tags — same family as display, condensed weight */
  --lc-font-badge: "Alfa Slab One", "Roboto Slab", serif;          /* LOGO ONLY — never used in editorial */

  /* Type scale (modular 1.250 ratio) */
  --lc-fs-xs: 0.75rem;   /* 12px */
  --lc-fs-sm: 0.875rem;  /* 14px */
  --lc-fs-base: 1rem;    /* 16px */
  --lc-fs-md: 1.125rem;  /* 18px — preferred body for editorial */
  --lc-fs-lg: 1.4rem;    /* 22px — H3 */
  --lc-fs-xl: 1.95rem;   /* 31px — H2 */
  --lc-fs-2xl: 2.75rem;  /* 44px — H1 */
  --lc-fs-display: 3.8rem; /* 60px — hero */

  /* Spacing */
  --lc-space-xs: 0.25rem;
  --lc-space-sm: 0.5rem;
  --lc-space-md: 1rem;
  --lc-space-lg: 1.5rem;
  --lc-space-xl: 2.5rem;
  --lc-space-2xl: 4rem;
}

/* --- Base typography (Hello Elementor child theme override) --------------- */

body.lonestar,
body {
  background-color: var(--lc-body-bg);
  color: var(--lc-body-text);
  font-family: var(--lc-font-body);
  font-size: var(--lc-fs-md);
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lc-font-display);
  color: var(--lc-body-text);
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;     /* Oswald headlines per style guide — UPPERCASE */
  letter-spacing: 0.01em;
}

h1 { font-size: var(--lc-fs-2xl); }
h2 { font-size: var(--lc-fs-xl); }
h3 { font-size: var(--lc-fs-lg); }

a {
  color: var(--lc-link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { color: var(--lc-link-hover); }

/* --- Buttons (per style guide v2) ----------------------------------------- */
/* Primary filled — "VIEW CONCERTS" / "BUY TICKETS" — Burnt Orange filled */

.lc-btn-primary,
.elementor-button.lc-btn-primary {
  display: inline-block;
  background-color: var(--lc-burnt-orange);
  color: var(--lc-warm-oat);
  font-family: var(--lc-font-marquee);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 3px;
  border: 0;
  text-decoration: none;
  transition: background-color 120ms ease, transform 120ms ease;
}
.lc-btn-primary:hover {
  background-color: #A8430E;
  color: var(--lc-warm-oat);
  transform: translateY(-1px);
}

/* "Buy Tickets" — same as primary but Neon Ember for ticket CTAs specifically */
.lc-btn-tickets,
.elementor-button.lc-btn-tickets {
  display: inline-block;
  background-color: var(--lc-neon-ember);
  color: var(--lc-warm-oat);
  font-family: var(--lc-font-marquee);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 3px;
  border: 0;
  text-decoration: none;
  transition: background-color 120ms ease;
}
.lc-btn-tickets:hover { background-color: var(--lc-cta-bg-hover); }

/* Outline — "LEARN MORE" — Burnt Orange border, transparent fill */
.lc-btn-outline,
.elementor-button.lc-btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--lc-burnt-orange);
  font-family: var(--lc-font-marquee);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.55rem;
  border-radius: 3px;
  border: 2px solid var(--lc-burnt-orange);
  text-decoration: none;
  transition: background-color 120ms ease, color 120ms ease;
}
.lc-btn-outline:hover {
  background-color: var(--lc-burnt-orange);
  color: var(--lc-warm-oat);
}

/* Legacy aliases (keep working) */
.lc-cta,
.elementor-button.lc-cta {
  /* Same as primary */
  display: inline-block;
  background-color: var(--lc-cta-bg);
  color: var(--lc-cta-text);
  font-family: var(--lc-font-marquee);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 3px;
  border: 0;
  text-decoration: none;
  transition: background-color 120ms ease;
}
.lc-cta:hover { background-color: var(--lc-cta-bg-hover); }

/* --- Region + genre tag pills --------------------------------------------- */

.lc-tag-region {
  display: inline-block;
  background-color: var(--lc-tag-region-bg);
  color: var(--lc-tag-region-text);
  font-family: var(--lc-font-marquee);
  font-weight: 700;
  font-size: var(--lc-fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;     /* slight square — matches style guide button radius */
}

.lc-tag-genre {
  display: inline-block;
  background-color: var(--lc-tag-genre-bg);
  color: var(--lc-tag-genre-text);
  border: 1px solid var(--lc-tag-genre-border);
  font-family: var(--lc-font-body);
  font-weight: 600;
  font-size: var(--lc-fs-xs);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

/* --- Meta / byline -------------------------------------------------------- */

.lc-meta {
  color: var(--lc-meta-text);
  font-size: var(--lc-fs-sm);
  font-style: italic;
}

/* --- Dark sections (concert hero, footer, dark-mode cards) ---------------- */

.lc-dark {
  background-color: var(--lc-dark-bg);
  color: var(--lc-dark-text);
}
.lc-dark h1, .lc-dark h2, .lc-dark h3,
.lc-dark h4, .lc-dark h5, .lc-dark h6 {
  color: var(--lc-dark-text);
}
.lc-dark a { color: var(--lc-dark-link); }
.lc-dark a:hover { color: var(--lc-dark-link-hover); }
.lc-dark .lc-meta { color: var(--lc-dark-meta); }

/* --- Section header (per style guide v2) ---------------------------------- */
/* "SECTION HEADER" tiny burnt-orange overline + big Oswald uppercase + tiny star
   (e.g., "UPCOMING SHOWS", "THIS WEEK", "EDITOR'S PICK")                  */

.lc-section-header {
  text-align: center;
  margin: var(--lc-space-2xl) 0 var(--lc-space-xl);
}
.lc-section-header__overline {
  display: block;
  font-family: var(--lc-font-body);
  font-weight: 700;
  font-size: var(--lc-fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lc-burnt-orange);
  margin-bottom: 0.4rem;
}
.lc-section-header__title {
  font-family: var(--lc-font-display);
  font-weight: 700;
  font-size: var(--lc-fs-2xl);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--lc-charcoal);
  margin: 0;
  line-height: 1.05;
}
.lc-section-header__star {
  display: inline-block;
  font-size: var(--lc-fs-base);
  color: var(--lc-burnt-orange);
  margin-top: 0.5rem;
}

/* --- Editorial dividers (star row) ---------------------------------------- */

.lc-star-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--lc-neon-ember);
  font-size: var(--lc-fs-sm);
  letter-spacing: 0.25em;
  margin: var(--lc-space-xl) 0;
}
.lc-star-rule::before,
.lc-star-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--lc-rule);
}
