/* =========================================================
   TULLAKROK FESTIVAL - GLOBAL STYLES (FULL)
   - No repeating background
   - Very subtle grain (non-tiling)
   - No video
   - Index-only illustration
   - Footer overlay on index
   ========================================================= */

:root {
  --bg: #828769;
  --bg-dark: #6b7055;
  --bg-light: #9aa07f;

  --text: #eeeddf;
  --accent: #391f11;

  --max-width: 1200px;
  --header-height: 84px;

  --pad: 18px;
  --radius: 14px;

  --font-regular: "AmsiProCondensed", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
/* Ensure header + mobile nav always sit above banner */
.site-header {
  position: relative;
  z-index: 100;
}

/* Make sure mobile nav sits above everything */
.nav {
  z-index: 110;
}

/* Banner should NOT sit above header */
.ticket-banner {
  position: relative;
  z-index: 1;
}

/* =========================================================
   FONT LOADING (optional)
   Put the .woff2 files in: images/fonts/
   ========================================================= */
@font-face {
  font-family: "AmsiProCondensed";
  src: url("../images/fonts/AmsiProCondensed-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AmsiProCondensed";
  src: url("../images/fonts/AmsiProCondensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   GLOBAL BACKGROUND (NO REPEAT) + VERY SUBTLE GRAIN
   - Gradient is fixed & non-repeating
   - Grain is a huge, fixed layer to avoid tiling
   ========================================================= */

body {
  margin: 0;
  font-family: var(--font-regular);
  color: var(--text);
  line-height: 1.35;
  overflow-x: hidden;

  /* Sticky footer layout */
  display: flex;
  flex-direction: column;

  background-color: #828769;

  position: relative;
}

/* VERY subtle grain — non-tiling:
   We use a gigantic fixed element (300vmax) so you never see repeats. */
body::before {
  content: "";
  position: fixed;
  left: 50%;
  top: 50%;
  width: 300vmax;
  height: 300vmax;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;

  /* noise texture */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.20'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-size: cover;

  /* super subtle */
  opacity: 0.06; /* <-- adjust between 0.03 and 0.08 */
  mix-blend-mode: overlay;
}

/* Content above grain */
.site-header,
main,
footer {
  position: relative;
  z-index: 1;
}

/* =========================================================
   MAIN LAYOUT
   ========================================================= */
.container {
  width: min(var(--max-width), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

main {
  flex: 1;
  padding: 24px 0 48px;
}

.page-title {
  font-size: clamp(34px, 4.5vw, 56px);
  margin: 0 0 12px;
}

.card {
  border: 1px solid rgba(238, 237, 223, 0.22);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.06);
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 12px;
}

p {
  font-weight: 400;
  margin: 0 0 14px;
}

/* =========================================================
   LINKS (NO BLUE, NO UNDERLINE)
   ========================================================= */
a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: #e0b943;
}

a:focus-visible {
  outline: 2px solid rgba(224, 185, 67, 0.6);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================================================
   ACCESSIBLE SKIP LINK
   ========================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid rgba(238, 237, 223, 0.18);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

/* Social icons */
.social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--text);
  border: 1px solid rgba(238, 237, 223, 0.35);
}
.social a:hover {
  border-color: rgba(238, 237, 223, 0.7);
}

/* Brand logo */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  width: 130px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--text);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 10px;
  border-radius: 10px;
  text-transform: uppercase;
}

.nav a:hover {
  background: rgba(238, 237, 223, 0.12);
  color: var(--text);
}

.nav a[aria-current="page"] {
  background: rgba(238, 237, 223, 0.18);
}

/* Mobile menu button */
.menu-btn {
  display: none;
  border: 1px solid rgba(238, 237, 223, 0.35);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* =========================================================
   RESPONSIVE NAV
   ========================================================= */
@media (max-width: 860px) {
  .header-left { min-width: auto; }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .nav {
    position: absolute;
    top: var(--header-height);
    right: var(--pad);
    left: var(--pad);

    display: none;
    flex-direction: column;
    gap: 6px;

    padding: 12px;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid rgba(238, 237, 223, 0.25);
  }

  .nav.is-open { display: flex; }

  .nav a {
    width: 100%;
    text-align: left;
  }
}

/* =========================================================
   INDEX HERO
   ========================================================= */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 0 10px;
}

.hero-top {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  padding-top: 10px;
}

.hero-logo {
  width: min(600px, 88vw);
  filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.28));
}

.hero-date {
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 700;
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.28);
}

.hero-cta {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;

  color: var(--accent);
  text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.28);

  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 20px;

  transition: transform 0.35s ease, letter-spacing 0.35s ease, color 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-4px) scale(1.05);
  letter-spacing: 1.5px;
  color: #e66a0c;
}

/* =========================================================
   INDEX ONLY – illustration fixed at bottom
   Put <div class="bg-illustration"><img ...></div> on index only
   ========================================================= */
.bg-illustration { display: none; }

body.home .bg-illustration {
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  z-index: 0; /* above grain, below content */
  pointer-events: none;
  justify-content: center;
  align-items: flex-end;
}

body.home .bg-illustration img {
  width: min(820px, 90vw);
  transform: translateY(10%);
  opacity: 0.95;
  filter: saturate(1.05) contrast(1.05);
}

/* =========================================================
   LINE-UP (Flip cards)
   ========================================================= */
.lineup-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 520px) {
  .lineup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 860px) {
  .lineup-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .lineup-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.artist-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eeeddf;
  color: #8c8d68;
  border: 1px solid rgba(140, 141, 104, 0.35);
  height: 340px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.artist-card__scene {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  -webkit-perspective: 1200px;
}

.artist-card__face {
  position: absolute;
  inset: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.artist-card__face--front { transform: rotateY(0deg); }
.artist-card__face--back {
  transform: rotateY(-180deg);
  justify-content: space-between;
}

.artist-card.is-flipped .artist-card__face--front { transform: rotateY(180deg); }
.artist-card.is-flipped .artist-card__face--back  { transform: rotateY(0deg); }

.artist-photo {
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(140, 141, 104, 0.25);
  background: rgba(140, 141, 104, 0.10);
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artist-card:hover .artist-card__face--front .artist-photo img {
  transform: scale(1.06);
}

.artist-name {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 700;
  color: #8c8d68;
}

.artist-desc,
.flip-hint {
  margin: 0;
  font-weight: 400;
  color: #8c8d68;
}

.flip-hint {
  opacity: 0.85;
  font-size: 16px;
}

.artist-desc {
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.9;
}

.flip-btn {
  align-self: flex-start;
  border: 1px solid rgba(140, 141, 104, 0.45);
  background: rgba(140, 141, 104, 0.10);
  color: #8c8d68;
  padding: 10px 14px;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.flip-btn:hover {
  border-color: rgba(140, 141, 104, 0.7);
}

.artist-card__face--back .flip-btn {
  margin-top: 22px;
}

.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artist-links a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(140, 141, 104, 0.10);
  border: 1px solid rgba(140, 141, 104, 0.35);
  color: #8c8d68;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.artist-links a:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(140, 141, 104, 0.65);
  background: rgba(140, 141, 104, 0.18);
  color: #8c8d68;
}

.artist-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/* ===== Artistkort – Läs mer knapp ===== */

.artist-btn{
  display: inline-block;
  margin-top: 14px;
  padding: 12px 16px;

  border-radius: 12px;

  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;

  background: #e66a0c;
  color: #e0b943;

  border: none;
  text-decoration: none;

  cursor: pointer;

  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;

  position: relative;
  z-index: 5; /* viktigt så den inte hamnar bakom */
}

.artist-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
  opacity: .95;
}
/* =========================
   ARTIST PAGE
========================= */

.artist-page {
  max-width: 900px;
  margin: 0 auto;
}

.artist-back {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(238, 237, 223, 0.35);
  color: var(--text);

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);

  opacity: 0.98;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.artist-hero {
  margin-bottom: 20px;
}

.artist-hero img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(238,237,223,0.18);
  box-shadow: var(--shadow-soft);
}

.artist-content h1 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 16px;
}

.artist-content p {
  font-size: 18px;
  line-height: 1.6;
}

/* --- Artist meta (speltid + scen) ---
   Use these classes in your artist HTML:
   <div class="artist-metaRow">
     <div class="artist-metaChip"><span class="artist-metaLabel">Tid</span> 19.00</div>
     <div class="artist-metaChip"><span class="artist-metaLabel">Scen</span> Stora scenen</div>
   </div>
*/

.artist-metaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
}

.artist-metaChip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;

  padding: 12px 14px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(238, 237, 223, 0.28);

  font-weight: 800;
  letter-spacing: 0.3px;

  /* BIGGER + more prominent */
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.1;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.artist-metaLabel {
  font-size: 0.72em;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Fallbacks: if your artist page uses these class names already */
.artist-time,
.artist-stage {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.3px;
}
/* HERO TITLE OVER IMAGE */



.artist-hero-title {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 3;
  pointer-events: none;
}

.artist-hero-title h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;

  color: var(--text);

  text-shadow:
    0 4px 10px rgba(0,0,0,0.6),
    0 12px 40px rgba(0,0,0,0.8);

  line-height: 0.95;
}

/* =========================
   ARTIST OVERLAY CARD (Magazine look)
========================= */

.artist-content-wrap {
  position: relative;
  margin-top: 40px;
  z-index: 1;
}

/* Själva textkortet */
.artist-overlay-card {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 40px 46px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(238, 237, 223, 0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* Mer luft i texten */
.artist-overlay-card p {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.7;
}

/* Divider inside artist card */
.artist-overlay-card .divider {
  margin: 24px 0;
  opacity: 0.4;
}

/* Hero image full width */
.artist-hero-full img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Responsiv */
@media (max-width: 900px) {

  .artist-content-wrap {
    margin-top: 24px;
  }

  .artist-overlay-card {
    padding: 28px;
  }

  .artist-hero-full img {
    height: 55vh;
  }
}

/* =========================================
   SIMPLE ARTIST PAGE
   ========================================= */

.artist-standalone {
  /* Ensure artist page uses the same global green background */
  background-color: var(--bg);
}

/* Hero image */
.artist-hero-simple img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content wrapper */
.artist-simple {
  max-width: 900px;
  margin: 60px auto 80px;
  text-align: center;
}

/* Band name */
.artist-title {
  font-size: clamp(42px, 6vw, 72px);
  margin: 0 0 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Time & stage */
.artist-meta-simple {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 24px;
}

.artist-meta-divider {
  margin: 0 12px;
  opacity: 0.6;
}

/* Divider */
.artist-divider {
  height: 1px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px;
  background: rgba(238, 237, 223, 0.3);
}

/* Text */
.artist-text {
  text-align: left;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.7;
  max-width: 75ch;
  margin: 0 auto;
}

.artist-text p {
  margin-bottom: 20px;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .artist-simple {
    margin-top: 40px;
  }
}
/* =========================================
   ARTIST BACK BUTTON
   ========================================= */

.artist-back {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1000;

  padding: 12px 16px;
  border-radius: 999px;

  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 14px;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(238, 237, 223, 0.35);

  color: var(--text);
  text-decoration: none;

  transition: transform 0.2s ease, background 0.2s ease;
}

.artist-back:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.55);
}
/* =========================================
   DEDICATED ARTIST PAGE – CENTERED LAYOUT
   ========================================= */

body.artist-standalone {
  background: #828769;
}

/* Hero image */
.artist-hero-simple img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main content wrapper */
.artist-content-simple {
  max-width: 800px;
  margin: 60px auto 100px;
  text-align: center;
}

/* Artist name */
.artist-title {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* Meta row */
.artist-meta-simple {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* Divider */
.artist-content-simple .divider {
  margin: 30px auto;
  max-width: 300px;
}

/* Text block */
.artist-text {
  max-width: 680px;
  margin: 0 auto;
}

.artist-text p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 18px;
}


/* =========================================================
   HISTORIA – jämnt textflöde med små bilder + puffar
   ========================================================= */

.history-page {
  max-width: 980px;
  margin: 0 auto;
}

.history-hero {
  margin: 10px 0 14px;
}

.history-lead {
  max-width: 75ch;
  font-size: clamp(18px, 2.2vw, 22px);
  opacity: 0.95;
  margin: 0;
}

.history-section {
  margin: 22px 0;
}

.history-h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Divider */
.history-divider {
  height: 1px;
  width: 100%;
  background: rgba(238, 237, 223, 0.22);
  margin: 18px 0;
}

/* Flow text */
.history-section p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  margin: 0 0 14px;
}

/* Quotes */
.history-quote {
  margin: 16px 0 16px;
  padding: 16px 18px;
  border-left: 4px solid rgba(238, 237, 223, 0.65);
  background: rgba(0, 0, 0, 0.10);
  border-radius: 14px;
}

.history-quote p {
  margin: 0;
  font-size: clamp(18px, 2.15vw, 22px);
  line-height: 1.45;
}

.history-quote cite {
  display: block;
  margin-top: 10px;
  opacity: 0.9;
  font-style: normal;
  font-weight: 700;
}

/* Puffar */
.history-puff {
  margin: 16px 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(238, 237, 223, 0.08);
  border: 1px solid rgba(238, 237, 223, 0.18);
}

.history-puff p {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.35;
}

/* Images smaller + floated */
.history-figure {
  margin: 6px 0 12px;
  max-width: 320px; /* smaller images */
}

.history-figure img {
  width: 100%;
  height: auto;               /* show whole image */
  object-fit: contain;        /* no cropping */
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(238, 237, 223, 0.18);
  background: rgba(0, 0, 0, 0.06);
}

.history-figure figcaption {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.85;
}

/* Tall portrait variants */
.history-figure--tall {
  max-width: 280px;
}

/* float positions */
.history-figure--left {
  float: left;
  margin-right: 16px;
}

.history-figure--right {
  float: right;
  margin-left: 16px;
}

/* clear floats per section */
.history-section::after {
  content: "";
  display: block;
  clear: both;
}

/* End CTA */
.history-end {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(238, 237, 223, 0.18);
}

.history-link {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  border: 1px solid rgba(238, 237, 223, 0.28);
  background: rgba(0, 0, 0, 0.10);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.history-link:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.16);
  border-color: rgba(238, 237, 223, 0.5);
}

/* Mobile: no floats */
@media (max-width: 760px) {
  .history-figure,
  .history-figure--tall {
    float: none !important;
    max-width: 100%;
    margin: 12px 0 14px;
  }
}
/* =========================================================
   BILJETTER – Two Clean Centered Cards
   ========================================================= */

.tickets-header {
  margin-bottom: 20px;
}

.tickets-lead {
  margin: 0;
  opacity: 0.95;
  font-size: clamp(18px, 2.2vw, 22px);
}

/* Wrapper */
.tickets-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Card */
.ticket-card {
  width: 100%;
  max-width: 420px;

  padding: 28px 24px;
  border-radius: var(--radius);

  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(238, 237, 223, 0.25);

  text-align: center;

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

/* Title */
.ticket-name {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Price */
.ticket-price {
  font-size: clamp(48px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
}

.ticket-price span {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.9;
}

/* Features */
.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.ticket-features li {
  margin-bottom: 10px;
  opacity: 0.95;
}

/* Button */
.ticket-button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;

  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;

  background: rgba(238, 237, 223, 0.12);
  border: 1px solid rgba(238, 237, 223, 0.35);
  color: var(--text);

  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ticket-button:hover {
  background: rgba(238, 237, 223, 0.2);
  border-color: rgba(238, 237, 223, 0.6);
  transform: translateY(-2px);
}
/* =========================================================
   PROGRAM PAGE – SNYGG, TYDLIG, TVÅ SCENER
   Klistra in längst ner i style.css
   ========================================================= */

.program-page {
  padding-top: 10px;
}

.program-hero {
  margin: 8px 0 14px;
}

.program-heroCard {
  border: 1px solid rgba(238, 237, 223, 0.20);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.06);
}

.program-lead {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.35;
  opacity: 0.95;
}

.program-metaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-chip {
  border: 1px solid rgba(238, 237, 223, 0.22);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(0, 0, 0, 0.06);
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Grid två scener */
.program-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .program-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Stage card */
.stage-card {
  border: 1px solid rgba(238, 237, 223, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

.stage-head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(238, 237, 223, 0.14);
  margin-bottom: 12px;
}

.stage-title {
  margin: 0 0 6px;
  font-size: clamp(24px, 2.8vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.stage-sub {
  margin: 0;
  opacity: 0.9;
}

/* Setlist */
.setlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.set {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 12px;
  align-items: baseline;

  padding: 10px 0;
  border-top: 1px solid rgba(238, 237, 223, 0.14);
}

.set:first-child {
  border-top: 0;
}

.set-time {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.set-artist {
  font-weight: 800;
}

.set-tag {
  opacity: 0.9;
  font-size: 0.95em;
  white-space: nowrap;
}

/* Highlight (puffig, tydlig) */
.set--highlight {
  margin: 6px 0;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(238, 237, 223, 0.10);
  border: 1px solid rgba(238, 237, 223, 0.18);
}

/* Note */
.stage-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(238, 237, 223, 0.16);
  opacity: 0.95;
}

/* Bottom card */
.program-bottomCard {
  margin-top: 16px;
}

.program-bottomTitle {
  margin: 0 0 10px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-bullets {
  margin: 0;
  padding-left: 18px;
}

.program-bullets li {
  margin: 0 0 10px;
}

/* Mobile: stack duration */
@media (max-width: 420px) {
  .set {
    grid-template-columns: 78px 1fr;
  }
  .set-tag {
    grid-column: 2;
  }
}
/* =========================================================
   INFO PAGE – tydligt uppdelad, matchar Tullakrok-stilen
   Klistra in längst ner i style.css
   ========================================================= */

.info-page {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 10px;
}

.info-hero {
  margin: 8px 0 14px;
}

.info-heroCard {
  border: 1px solid rgba(238, 237, 223, 0.20);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.06);
}

.info-lead {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.35;
  opacity: 0.95;
}

/* Snabblänkar */
.info-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;

  color: var(--text);
  border: 1px solid rgba(238, 237, 223, 0.26);
  background: rgba(0, 0, 0, 0.06);

  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.info-chip:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.12);
  border-color: rgba(238, 237, 223, 0.50);
}

/* Grid */
.info-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .info-card--wide {
    grid-column: 1 / -1;
  }
}

/* Card */
.info-card {
  border: 1px solid rgba(238, 237, 223, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

.info-cardHead {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.info-cardHead--withLogo {
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 14px;
}

.info-mark {
  width: 120px;
  height: auto;
  opacity: 0.95;
}

.info-h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-h3 {
  margin: 0 0 6px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.info-muted {
  margin: 0;
  opacity: 0.9;
}

/* Divider */
.info-divider {
  height: 1px;
  width: 100%;
  background: rgba(238, 237, 223, 0.20);
  margin: 12px 0 14px;
}

/* Lists */
.info-list {
  margin: 0;
  padding-left: 18px;
}

.info-list li {
  margin: 0 0 10px;
}

/* Callouts */
.info-callout {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(238, 237, 223, 0.18);
  background: rgba(238, 237, 223, 0.08);
}

.info-callout--soft {
  background: rgba(0, 0, 0, 0.08);
}

/* Definition list */
.info-dl {
  margin: 0;
}

.info-dlRow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid rgba(238, 237, 223, 0.14);
}

.info-dlRow:first-child {
  border-top: 0;
  padding-top: 0;
}

.info-dl dt {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.info-dl dd {
  margin: 0;
  opacity: 0.95;
}

.info-sponsorLine {
  margin: 0;
  opacity: 0.95;
}

/* Two-col block inside a card */
.info-twoCol {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .info-twoCol {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: start;
  }
}

.info-address {
  border: 1px solid rgba(238, 237, 223, 0.16);
  border-radius: 14px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.08);
}

.info-addressLine {
  margin: 0 0 10px;
  font-weight: 800;
}

/* Map */
.map-embed {
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(238, 237, 223, 0.18);
  background: rgba(0, 0, 0, 0.10);
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Figure */
.info-figure {
  margin: 12px 0 0;
}

.info-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(238, 237, 223, 0.18);
}
/* =========================================================
   VOLONTÄR PAGE – samma struktur/stil som infosidan
   Klistra in längst ner i style.css
   ========================================================= */

.volontar-page {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 10px;
}

.volontar-hero {
  margin: 8px 0 14px;
}

.volontar-heroCard {
  border: 1px solid rgba(238, 237, 223, 0.20);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.06);
}

.volontar-lead {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.35;
  opacity: 0.95;
}

/* Snabblänkar */
.volontar-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.volontar-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-transform: uppercase;

  color: var(--text);
  border: 1px solid rgba(238, 237, 223, 0.26);
  background: rgba(0, 0, 0, 0.06);

  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.volontar-chip:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.12);
  border-color: rgba(238, 237, 223, 0.50);
}

/* Grid */
.volontar-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .volontar-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .volontar-card--wide {
    grid-column: 1 / -1;
  }
}

/* Card */
.volontar-card {
  border: 1px solid rgba(238, 237, 223, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

.volontar-cardHead {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

.volontar-h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.volontar-muted {
  margin: 0;
  opacity: 0.9;
}

/* Divider */
.volontar-divider {
  height: 1px;
  width: 100%;
  background: rgba(238, 237, 223, 0.20);
  margin: 12px 0 14px;
}

/* Lists */
.volontar-list {
  margin: 0;
  padding-left: 18px;
}

.volontar-list li {
  margin: 0 0 10px;
}

/* Callouts */
.volontar-callout {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(238, 237, 223, 0.18);
  background: rgba(238, 237, 223, 0.08);
}

.volontar-callout--soft {
  background: rgba(0, 0, 0, 0.08);
}

/* Pills */
.volontar-pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.volontar-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(238, 237, 223, 0.22);
  background: rgba(0, 0, 0, 0.08);
  font-weight: 800;
  letter-spacing: 0.25px;
}

/* Time box */
.volontar-timeBox {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(238, 237, 223, 0.16);
  background: rgba(0, 0, 0, 0.08);
}

.volontar-timeRow {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(238, 237, 223, 0.14);
}

.volontar-timeRow:first-child {
  border-top: 0;
  padding-top: 0;
}

.volontar-timeLabel {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.volontar-timeValue {
  opacity: 0.95;
}

/* CTA buttons */
.volontar-ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.volontar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 14px;
  border-radius: 14px;

  font-weight: 800;
  text-decoration: none;

  color: var(--text);
  border: 1px solid rgba(238, 237, 223, 0.35);
  background: rgba(0, 0, 0, 0.10);

  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.volontar-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 237, 223, 0.65);
  background: rgba(0, 0, 0, 0.16);
}

.volontar-cta--ghost {
  background: transparent;
}

.volontar-signoff {
  margin: 14px 0 0;
  opacity: 0.95;
  font-weight: 700;
}

/* =========================================================
   VOLUNTEER FORM
   ========================================================= */

.volunteer-form-section {
  max-width: 620px;
  margin: 40px auto 60px;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(238, 237, 223, 0.25);
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-intro {
  margin-bottom: 25px;
  opacity: 0.95;
}

.volunteer-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(238, 237, 223, 0.35);
  background: rgba(0, 0, 0, 0.15);
  color: var(--text);
  font-family: var(--font-regular);
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e0b943;
  box-shadow: 0 0 0 2px rgba(224, 185, 67, 0.25);
}

.form-submit {
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;

  background: #391f11;
  color: #eeeddf;

  transition: transform 0.2s ease, background 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  background: #5a2d19;
}
/* =========================================================
   GALLERY PAGE – matches Tullakrok palette + clean layout
   ========================================================= */

.gallery-page {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-hero {
  margin: 10px 0 14px;
}

.gallery-lead {
  max-width: 70ch;
  opacity: 0.95;
  margin: 0;
  font-size: clamp(18px, 2.1vw, 22px);
}

/* If you already have .divider in your CSS, this will match it */
.divider {
  height: 1px;
  width: 100%;
  background: rgba(238, 237, 223, 0.22);
  margin: 16px 0;
}

/* Filters wrapper */
.gallery-filterWrapper {
  display: grid;
  gap: 16px;
}

@media (min-width: 860px) {
  .gallery-filterWrapper {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.gallery-filterGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-filterLabel {
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.85;
}

/* Filter buttons */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-filter {
  border: 1px solid rgba(238, 237, 223, 0.26);
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-filter:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.10);
  border-color: rgba(238, 237, 223, 0.40);
}

.gallery-filter.is-active {
  background: rgba(238, 237, 223, 0.14);
  border-color: rgba(238, 237, 223, 0.55);
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-item {
  margin: 0;
}

/* Tile button */
.gallery-thumb {
  width: 100%;
  border: 1px solid rgba(238, 237, 223, 0.22);
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  display: block;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.18);
}

.gallery-thumb img {
  width: 100%;
  height: 240px; /* consistent tiles */
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

@media (min-width: 700px) {
  .gallery-thumb img {
    height: 260px;
  }
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

.gallery-cap {
  margin: 8px 6px 0;
  font-size: 16px;
  opacity: 0.9;
}

/* =========================================================
   LIGHTBOX – no “weird x”, only opens on click
   ========================================================= */

.lightbox[hidden] {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.82);
  display: grid;
  place-items: center;
  padding: 18px;
}

.lightbox-figure {
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.lightbox-img {
  max-width: min(1100px, 94vw);
  max-height: 78vh;
  border-radius: var(--radius);
  border: 1px solid rgba(238, 237, 223, 0.22);
  background: rgba(0, 0, 0, 0.2);
}

.lightbox-cap {
  margin: 0;
  text-align: center;
  color: var(--text);
  opacity: 0.95;
}

/* Close button (only visible when lightbox is open) */
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(238, 237, 223, 0.30);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-close:hover {
  border-color: rgba(238, 237, 223, 0.60);
}
/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  margin-top: auto;
  padding: 34px 0;
  background: rgba(0, 0, 0, 0.14);
  border-top: 1px solid rgba(238, 237, 223, 0.25);
}

.footer-inner {
  display: grid;
  gap: 22px;
  align-items: start;
}

.footer-title {
  font-size: 18px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.sponsor-logos a {
  display: inline-flex;
  align-items: center;
}

.sponsor-logos img {
  height: 40px;          /* mindre loggor */
  width: auto;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sponsor-logos a:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(238, 237, 223, 0.25);
}

.footer-emf {
  display: flex;
  align-items: center;
  justify-content: space-between; /* mail vänster, logo höger */
  gap: 20px;
}

.emf-mail {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
}

.emf-logo {
  height: 36px;  /* justera vid behov */
  width: auto;
}



@media (min-width: 860px) {
  .footer-inner {
    grid-template-columns: 2fr 1px 1fr;
    gap: 28px;
    align-items: center;
  }
  .footer-divider {
    width: 1px;
    height: 100%;
  }
}

/* =========================================================
   INFINITE TICKET BANNER (NO GAPS)
   ========================================================= */

.ticket-banner {
  width: 100%;
  height: 40px;
  background: #e66a0c;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticket-banner__track {
  display: flex;
  width: max-content;
  animation: banner-scroll 60s linear infinite;
}

.ticket-banner__track span {
  white-space: nowrap;
  font-family: var(--font-regular);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e0b943;
  padding-right: 60px;
}

/* Perfect seamless loop */
@keyframes banner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* =========================================================
   NEWS (Index)
   ========================================================= */

.news {
  margin-top: 22px;
  width: 100%;
  max-width: 760px; /* lagom bredd under CTA */
  margin-left: auto;
  margin-right: auto;
}

.news-title {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: clamp(20px, 2.4vw, 28px);
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-card {
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.20); /* mörkare än vanliga cards */
  border: 1px solid rgba(238, 237, 223, 0.22);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.news-date {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: rgba(238, 237, 223, 0.10);
  border: 1px solid rgba(238, 237, 223, 0.16);
  font-size: 14px;
}

.news-headline {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0.2px;
}

.news-text {
  margin: 0;
  opacity: 0.95;
  font-size: clamp(16px, 2vw, 18px);
}
/* =========================================================
   STYRELSEN – cards med porträtt + info
   ========================================================= */

.board-hero {
  margin: 10px 0 14px;
  max-width: 980px;
}

.board-lead {
  max-width: 72ch;
  opacity: 0.95;
  margin: 8px 0 0;
  font-size: clamp(18px, 2.1vw, 22px);
}

.board-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  grid-template-columns: 1fr;
}

/* 2 kolumner */
@media (min-width: 760px) {
  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 3 kolumner */
@media (min-width: 1100px) {
  .board-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.board-card {
  border: 1px solid rgba(238, 237, 223, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.10); /* matcha dina mörkare boxar */
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);

  display: grid;
  grid-template-rows: auto 1fr;
}

/* Foto: visa hela stående bilden */
.board-photo {
  border-bottom: 1px solid rgba(238, 237, 223, 0.14);
  overflow: hidden;
}

.board-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;      /* Fills entire box */
  object-position: center;
  display: block;
}

/* Textdel */
.board-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.board-name {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0.2px;
}

.board-role {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.92;
}

.board-text {
  margin: 0;
  opacity: 0.95;
  font-size: 18px;
  line-height: 1.45;
}

/* Länkknapp */
.board-links {
  margin-top: auto;
  padding-top: 10px;
}

.board-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 12px;
  border-radius: 12px;

  font-weight: 800;
  letter-spacing: 0.2px;

  color: var(--text);
  text-decoration: none;

  border: 1px solid rgba(238, 237, 223, 0.26);
  background: rgba(0, 0, 0, 0.08);

  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.board-link:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 237, 223, 0.55);
  background: rgba(0, 0, 0, 0.14);
}

/* Kontaktbox längst ner */
.board-note {
  margin-top: 18px;
  background: rgba(0, 0, 0, 0.12);
}

.board-note-title {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.board-note-text {
  margin: 0;
  opacity: 0.95;
}
/* =========================================================
   GLOBALT – MÖRKARE BOXAR ÖVERALLT
   ========================================================= */

/* Standard card */
.card,
.cardlike,
.stage-card,
.volontar-card,
.volontar-group,
.program-item,
.history-cta,
.history-factbar,
.volontar-option,
.volontar-contact,
.info-callout,
.info-callout--soft {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(238, 237, 223, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

/* Nyhetsboxen (lite extra tydlig) */
.news-card {
  background: rgba(0, 0, 0, 0.22);
}

/* Biljettkort */
.ticket-card {
  background: rgba(0, 0, 0, 0.20);
}

/* Program highlight */
.set--highlight {
  background: rgba(0, 0, 0, 0.22);
}

/* =========================================================
   VOLONTÄR – MÖRKARE BOXAR (FORCE OVERRIDE)
   ========================================================= */

/* Alla volontärkort */
.volontar-card,
.volontar-group,
.volontar-option,
.volontar-contact,
.volontar-note,
.volontar-need {
  background: rgba(0, 0, 0, 0.22) !important;
  border: 1px solid rgba(238, 237, 223, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Intro-rutan högst upp */
.volontar > .card {
  background: rgba(0, 0, 0, 0.22) !important;
}

/* Anmälningsrutan */
.volontar-signup .card {
  background: rgba(0, 0, 0, 0.24) !important;
}
/* =========================================
   FOOTER – smaller logos on mobile
   ========================================= */

@media (max-width: 768px) {

  .sponsor-logos img {
    height: 28px; /* was ~46px */
  }

  .footer-emf img,
  .emf-logo {
    height: 26px; /* slightly smaller than sponsors */
  }

}
/* =========================================================
   DEDICATED ARTIST – TEXT ON TOP OF HERO IMAGE
   ========================================================= */

body.artist-standalone {
  background: var(--bg);
  margin: 0;
}

/* Hero section */
.artist-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* Hero image */
.artist-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay container */
.artist-overlay {
  position: relative;
  z-index: 2;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 60px 20px;
  text-align: center;
}

/* Big artist name */
.artist-name-hero {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 30px;

  color: var(--text);
  text-shadow:
    0 8px 30px rgba(0,0,0,0.7);
}

/* Info box */
.artist-info-box {
  max-width: 780px;

  padding: 40px 46px;
  border-radius: var(--radius);

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(238, 237, 223, 0.3);
}

/* Meta */
.artist-meta {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.meta-dot {
  margin: 0 12px;
  opacity: 0.7;
}

/* Divider */
.artist-divider {
  height: 1px;
  background: rgba(238, 237, 223, 0.3);
  margin: 0 auto 24px;
  max-width: 400px;
}

/* Text */
.artist-info-box p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0;
}

/* Back button */
.artist-back {
  position: absolute;
  top: 30px;
  left: 30px;

  padding: 12px 16px;
  border-radius: 999px;

  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(238,237,223,0.35);

  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

/* Mobile adjustments */
@media (max-width: 768px) {

  .artist-name-hero {
    font-size: clamp(42px, 9vw, 72px);
  }

  .artist-info-box {
    padding: 28px;
  }

}
/* =========================================================
   INDEX – KÖP BILJETTER BADGE
   ========================================================= */

.ticket-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 30px auto 10px;
  padding: 18px 32px;

  font-family: var(--font-regular);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: #e0b943;
  background: #e66a0c;

  border-radius: 999px;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(224, 185, 67, 0.3) inset;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    letter-spacing 0.25s ease;
}

/* Hover effect */
.ticket-badge:hover {
  transform: translateY(-4px) scale(1.05);
  letter-spacing: 2.5px;

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.45),
    0 0 0 3px rgba(224, 185, 67, 0.5) inset;
}

/* Slight pulse animation */
@keyframes badgePulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.ticket-badge {
  animation: badgePulse 4s ease-in-out infinite;
}

/* Stop pulse on hover */
.ticket-badge:hover {
  animation: none;
}