/* ===================================================
   Halländsk Musikfestival — Stilmall
   Fonter: Playfair Display + Source Sans 3
   Uppdaterad: 2026-04-12
   =================================================== */

/* --- Google Fonts --------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* --- Variabler ------------------------------------ */
:root {
  /* Bakgrund & text — exakt från originalet */
  --bg:          #F7F5F3;   /* rgb(247, 245, 243) — exakt från webbläsaren */
  --text:         #282420;  /* hsl(30, 10%, 15%) — mörk varm */
  --text-muted:  #7A736A;   /* hsl(30, 8%, 50%)  — dämpad */
  --border:      #DDD5C8;   /* hsl(38, 20%, 85%) — kantlinje */

  /* Guld — primärfärg hsl(38, 72%, 44%) */
  --gold: rgb(5, 66, 92);   /* #C1861F; */
  --gold-10:     rgba(193, 134, 31, 0.10);  /* bg-primary/10 — ikonbakgrund */
  --gold-light:  #E8C07A;

  /* Footer/mörkt — exakt rgb(42,38,34) från originalet */
  --dark:        rgb(42, 38, 34);

  /* Övrigt */
  --white:       #FFFFFF;
  --radius:      6px;
  --shadow:      0 2px 16px rgba(0,0,0,0.07);
  --max-width:   1152px;    /* max-w-6xl */
}

/* --- Reset ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-size: 22px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: rgb(3, 97, 136); /* var(--text); */
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* --- Navigering ----------------------------------- */
.nav {
  /* Exakt från originalet: rgba(247,245,243,0.95) */
  background: rgba(247, 245, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgb(224, 219, 209);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px; /* exakt från originalet */
}

/* Logo: "Halländsk" mörk + "Musikfestival" guld */
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text); /* rgb(42, 38, 34) */
  text-decoration: none;
  line-height: 1.2;
}

.nav-logo .guld {
  color: var(--gold);
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem; /* text-sm */
  font-weight: 400;
  /* Inaktiva länkars exakta färg från originalet */
  color: rgb(138, 128, 117);
  padding: 6px 12px; /* px-3 py-1.5 */
  border-radius: 4px; /* rounded-md */
  border: 1px solid transparent;
  transition: color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
}

/* Aktiv länk: mörk text + tunn border — exakt som originalet */
.nav-links a.aktiv {
  color: var(--text); /* rgb(42, 38, 34) */
  border-color: rgba(42, 38, 34, 0.20); /* border-foreground/20 */
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

/* --- Guldstreck (ovanför sektionsrubriker) -------- */
.gold-line {
  display: block;
  width: 64px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 1.75rem;
}

/* Centrerat sektionsblock */
.sektion-center {
  text-align: center;
}

.sektion-center h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* --- Layout --------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sektion {
  padding: 5rem 1.5rem;
}

/* --- HERO ----------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}


.hero-bg {
    position: absolute;
    inset: 0;
    /* background: url('https://soundstage-copy-magic.lovable.app/images/uploads/hero.png')center/cover no-repeat; */
     background: url('../vagen.png')center/cover no-repeat;
    
    /* Fallback om bild saknas: varm gradient */
    background-color: "white" /* #4a3520*/
}

/* Mörk overlay — exakt rgba(42,38,34,0.6) = bg-foreground/60 från originalet */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: "white"  rgba(42, 38, 34, 0.6); */
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width:  820px;
  padding: 2rem 1.5rem;
}

/* "OKTOBER 2026 · HALLAND" */
.hero-datum {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

/* Stor Playfair-rubrik */
.hero h1 { /* px-värden håller storleken konstant oberoende av bas-font */
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(38px, 6vw, 78px);
  color: rgb(3, 97, 136);/* var(--white);*/
  line-height: 1.1;
  margin-bottom: 1rem;
}

/* Kursiv underrubrik */
.hero-underrubrik {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgb(3, 97, 136);/* rgba(255,255,255,0.9);*/
  margin-bottom: 2.5rem;
}

.hero-knappar {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Knappar -------------------------------------- */
.knapp {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;   /* exakt från originalet */
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.knapp:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; }

/* Fylld guldbakgrund — rgb(193,134,31) med cream text */
.knapp-guld {
    background: rgb(5, 66, 92); /* var(--gold); */  /* rgb(193, 134, 31) */
    color: var(--bg);          /* rgb(247, 245, 243) — exakt från originalet */
}

/* Ghost — transparent med vit/cream kant, exakt från originalet */
.knapp-ghost {
    background: rgb( 103, 135, 76); /* transparent; */
    color: var(--bg);          /* rgb(247, 245, 243) */
    /* border: 2px solid rgba(247, 245, 243, 0.4); */  /* exakt från originalet */
}

/* Mörk knapp */
.knapp-mork {
  background: var(--text);
  color: var(--white);
}

/* Knapp med guldkant */
.knapp-linje {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

/* --- Välkomst ------------------------------------- */
.valkommen {
  padding: 1rem 1.5rem;
  background: var(--bg);
  /* text-align: center; */
}

.valkommen-inner {
  max-width: 720px;
  margin: 0 auto;
}

.valkommen-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center; 
}


.valkommen-inner h3 {
  font-size: clamp(0.7rem, 1.5vw, 2.0rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center; 
}

.valkommen-inner p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* --- Höjdpunkter — cirkulära ikoner --------------- */
.hojdpunkter {
  padding: 5rem 1.5rem;
  /* Exakt från originalet: bg-muted/50 = rgba(239,236,231,0.5) */
  background: rgba(239, 236, 231, 0.5);
  text-align: center;
}

.hojdpunkter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hojdpunkt-kort {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Cirkulär ikon-container — exakt som originalet: w-16 h-16 rounded-full bg-primary/10 */
.hojdpunkt-ikon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}

/* SVG-ikoner i höjdpunkter — w-8 h-8 = 32px */
.hojdpunkt-ikon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hojdpunkt-kort h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hojdpunkt-kort p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Nyhetsbrev — cream bakgrund (som originalet) -- */
.nyhetsbrev {
  padding: 5rem 1.5rem;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}

.nyhetsbrev h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.nyhetsbrev > p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.nyhetsbrev-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.nyhetsbrev-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
}

.nyhetsbrev-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* --- Sidhuvud (inre sidor) ------------------------ */
.sido-header {
  background: var(--bg);
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.sido-header h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 600;
}

.sido-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* --- Kort ----------------------------------------- */
.kort-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.kort {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.kort h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* --- Program: konsertlista ------------------------ */
.konsert-lista {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.konsert-kort {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.konsert-datum {
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius);
  text-align: center;
  padding: 0.6rem 0.5rem;
}

.konsert-datum .dag {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.konsert-datum .man {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Source Sans 3', sans-serif;
}



.konsert-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
}

.konsert-pris {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}

/* --- Biljetter ------------------------------------ */
.biljett-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1.25rem;
}

.biljett-typ {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.biljett-typ.featured {
  border: 2px solid var(--gold);
}

.biljett-typ h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.biljett-pris {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.biljett-pris small {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
}

/* --- Kontaktformulär ------------------------------ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.kontakt-rad {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.kontakt-etikett {
  font-weight: 600;
  min-width: 75px;
  color: var(--text);
}

.formulär { display: flex; flex-direction: column; gap: 1.1rem; }

.formulär label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
  font-family: 'Source Sans 3', sans-serif;
}

.formulär input,
.formulär textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.formulär input:focus,
.formulär textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.formulär textarea { resize: vertical; min-height: 140px; }

/* --- Sponsorer: partnernivåer --------------------- */
.partner-niva {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

.partner-niva h3 { margin-bottom: 0.25rem; }
.partner-pris {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Source Sans 3', sans-serif;
}

.partner-niva ul {
  padding-left: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.partner-niva ul li { margin-bottom: 0.3rem; }

/* Sponsorlogotyper */
.sponsor-loggor {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.sponsor-logga {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 2.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  min-width: 140px;
}

/* --- Footer --------------------------------------- */
footer {
  /* Exakt från originalet: rgb(42, 38, 34) */
  background: rgb(42, 38, 34);
  color: rgb(247, 245, 243);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  padding: 3.5rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

/* Footer-logo: vit/cream text (inte guld) — som originalet */
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;
  color: rgb(247, 245, 243);
  margin-bottom: 0.75rem;
}

.footer-inner p { color: rgba(247, 245, 243, 0.7); line-height: 1.6; }

.footer-stader {
  font-size: 0.85rem;
  color: rgba(247, 245, 243, 0.4);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.footer-inner h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: rgb(247, 245, 243);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-inner ul { list-style: none; }
.footer-inner ul li { margin-bottom: 0.4rem; }
.footer-inner a {
  /* Exakt från originalet: rgba(247,245,243,0.7) */
  color: rgba(247, 245, 243, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-inner a:hover { color: rgb(247, 245, 243); }

.footer-nyhetsbrev-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.footer-nyhetsbrev-form input {
  flex: 1;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(247, 245, 243, 0.2);
  border-radius: var(--radius);
  background: rgba(247, 245, 243, 0.08);
  color: rgb(247, 245, 243);
  font-size: 0.88rem;
  font-family: 'Source Sans 3', sans-serif;
}

.footer-nyhetsbrev-form input::placeholder { color: rgba(247, 245, 243, 0.35); }
.footer-nyhetsbrev-form input:focus { outline: none; border-color: var(--gold); }

.footer-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(247, 245, 243, 0.1);
  margin-bottom: 1.25rem;
}

.footer-copyright {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(247, 245, 243, 0.3);
}

/* --- Saknade hjälpklasser ------------------------- */

/* grid-2: 2-kolumns grid (används på biljetter, föreningarna) */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* sektion-rubrik: centrerad h2 med marginal */
.sektion-rubrik {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

/* pris: textstil för partnernivåer */
.pris {
  font-size: 0.92rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Source Sans 3', sans-serif;
}

/* kontakt-info: ingen extra stil behövs (div-wrapper) */
.kontakt-info { }

/* --- Responsiv ------------------------------------ */
@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0;
  }

  .nav-links.oppna { display: flex; }
  .nav-links a { padding: 0.65rem 1rem; font-size: 0.95rem; width: 100%; }
  .nav-toggle { display: block; }

  .hojdpunkter-grid { grid-template-columns: repeat(2, 1fr); }

  .konsert-kort {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
  }
  .konsert-pris { grid-column: 2; text-align: left; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .sektion { padding: 3rem 1rem; }
  .valkommen, .hojdpunkter, .nyhetsbrev { padding: 3rem 1rem; }
  .hero { min-height: 70vh; }
  .hojdpunkter-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   Program — fullständiga konsertblock
   =================================================== */
.konsert-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.konsert-block-bild {
  width: 100%;
  aspect-ratio: 16/6;
  background: rgb(214, 222, 210); /* var(--border); */
  overflow: hidden;
}

.konsert-block-bild img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* cover; */
  display: block;
}

.konsert-block-bild-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.konsert-block-innehall {
  padding: 2.5rem 3rem;
}

.konsert-block-rubrik {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.konsert-block-underrubrik {
  font-style: italic;
  color: var(--text-muted);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.konsert-block-artister {
  color: var(--gold);
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.konsert-block-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 72ch;
}

.konsert-spelningar {
  background: rgba(239, 236, 231, 0.5);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin-top: 2rem;
}

.konsert-spelningar h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.konsert-spelning {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}

.konsert-spelning:last-child { border-bottom: none; }

.spelning-datum {
  font-weight: 600;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  white-space: nowrap;
}

.spelning-info {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.spelning-info strong {
  color: var(--text);
  display: block;
}

/* ===================================================
   Städerna — stadsöversikt
   =================================================== */
.stad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.stad-kort {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stad-header {
    background: rgb(103, 135, 76); /* var(--text); */
    padding: 1.25rem 1.75rem;
}

.stad-header h2 {
  color: var(--bg);
  font-size: 1.4rem;
  margin-bottom: 0;
}

.stad-header p {
  color: rgba(247,245,243,0.65);
  font-size: 0.82rem;
  margin-bottom: 0;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stad-body {
  padding: 1.5rem 1.75rem;
}

.stad-forening {
  display: flex;
  align-items: center;
  /*vero added:*/
  justify-content: center;
  /* vero removed:
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);*/

}

.stad-forening-logo {
  width: auto;
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
}

.stad-forening-logo-fallback {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--gold-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.4rem;
}

.stad-forening-info a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  display: block;
}

.stad-forening-info a:hover { color: var(--gold); text-decoration: none; }
.stad-forening-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stad-konsert {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.stad-konsert:last-child { border-bottom: none; }

.stad-konsert-datum {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.stad-konsert-titel {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.stad-konsert-titel a {
  color: inherit;
  text-decoration: none;
}

.stad-konsert-titel a:hover {
  color: var(--gold);
}

.stad-konsert-plats {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.05rem;
}

.stad-konsert-adress {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

/* --- Konsert-preview kort (startsidan) ------------ */
.konsertprev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.konsertprev-kort {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.konsertprev-bild {
  width: 100%;
  aspect-ratio: 4/3;
  background:  rgb(103, 135, 76); /* var(--border); */
  overflow: hidden;
  flex-shrink: 0;
}

.konsertprev-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.konsertprev-bild-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255,255,255); /*var(--text-muted);*/
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.konsertprev-innehall {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.konsertprev-label {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.konsertprev-kort h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.konsertprev-kort .artister {
  font-size: 1.0rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic;
}

.konsertprev-datum {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 1.0rem;
  color: var(--text-muted);
}

.konsertprev-datum strong {
  display: block;
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
}

@media (max-width: 768px) {
  .konsert-block { padding: 1.75rem 1.5rem; }
  .konsert-spelning { flex-direction: column; gap: 0.25rem; }
}

@media (max-width: 480px) {
  .stad-grid { grid-template-columns: 1fr; }
}

/* --- Arrangeras av — logotyprad -------------------- */
.arrangeras-loggor {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}
