
/* ===== Epic Fail Tavern — v0.3.1 Firelight Base ===== */
:root{
  --light-fire: rgba(255,170,90,.40);
  --light-glow: rgba(255,210,140,.20);
}
/* global subtle firelight */
.skin-tavern:before{
  content:"";
  position:fixed; inset:0; pointer-events:none;
  background: radial-gradient(700px 420px at 50% 85%, var(--light-fire), transparent 70%);
  mix-blend-mode: soft-light;
  animation: firePulse 8s ease-in-out infinite;
  z-index:0;
}
@keyframes firePulse{
  0%,100%{ opacity:.45; transform:scale(1) translateY(0) }
  50%{ opacity:.80; transform:scale(1.02) translateY(-2px) }
}

/* local candle motes */
.firelight-candle{
  position:absolute; width:64px; height:64px; pointer-events:none;
  background: radial-gradient(circle at 50% 50%, var(--light-glow) 0%, transparent 68%);
  mix-blend-mode: screen;
  animation: candleFlicker 2.2s infinite ease-in-out;
}
@keyframes candleFlicker{
  0%,100%{ opacity:.6; transform:scale(1) }
  45%{ opacity:.9; transform:scale(1.06) }
  70%{ opacity:.75; transform:scale(.97) }
}

/* Replace hero background layering to use tavern materials */
.hero .hero-bg{
  background-image:
    radial-gradient(1000px 520px at 50% 80%, rgba(210,150,90,.20), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.6)),
    url('/assets/img/stone-wall-warm.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(.95) contrast(1.05) brightness(.92);
}

/* body parchment wrapper */
body.skin-tavern{
  background:
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.8)),
    url('/assets/img/wood-oak-dark.jpg') center/cover fixed no-repeat;
}
/* content panels parchment */
.panel-parchment{
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.18)),
    url('/assets/img/parchment-dark.jpg') center/cover no-repeat;
  color:#23170f;
  border:1px solid #7b5a32;
  box-shadow: inset 0 50px 120px rgba(0,0,0,.15), 0 10px 30px rgba(0,0,0,.35);
}

/* header wood bar */
.eft-header{
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.8)),
    url('/assets/img/wood-oak-dark.jpg') center/cover no-repeat;
  box-shadow: inset 0 -40px 60px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.35);
}
.eft-header:after{
  content:""; display:block; height:4px;
  background: linear-gradient(90deg, rgba(168,119,57,.95), rgba(224,182,111,.95) 25%, rgba(168,119,57,.95) 50%, rgba(224,182,111,.95) 75%, rgba(168,119,57,.95));
  border-bottom:1px solid rgba(0,0,0,.45);
}

/* brass buttons */
.hero-cta{
  background: linear-gradient(180deg, #eac27a, #c79753);
  color:#25160d; border:1px solid #6e4b28;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
  box-shadow: 0 8px 18px rgba(0,0,0,.28), inset 0 -3px 0 rgba(0,0,0,.12);
}

/* footer stone */
.eft-footer{
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85)),
    url('/assets/img/stone-wall-warm.jpg') center/cover no-repeat;
  box-shadow: inset 0 35px 70px rgba(0,0,0,.4);
}
