/* =============================================
   VoresKalundborg – Begivenhed enkeltside
   Placering: /css/begivenhed-enkeltside.css
   Tilføj 'begivenhed-enkeltside' til $css_files i enqueue.php
   ============================================= */

.vk-bev-page-wrap {
  background: #EBE4D1;
  min-height: 60vh;
}

.vk-bev-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.vk-bev-side {
  font-family: 'Work Sans', sans-serif;
  color: #2C2C2C;
}

/* --- HERO --- */
.vk-bev-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 5.5;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 40px;
  background: #1E2E1E;
}

.vk-bev-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6;
}

.vk-bev-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vk-bev-dato-badge {
  width: 60px;
  height: 60px;
  background: #A83232;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.vk-bev-dato-dag {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.vk-bev-dato-mdr {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.vk-bev-kat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D98244;
}

.vk-bev-navn {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

/* --- LAYOUT --- */
.vk-bev-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* --- SEKTIONER --- */
.vk-bev-sektion {
  margin-bottom: 36px;
}

.vk-bev-sektion-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* WCAG AA: 0.4 alpha gav 2.32:1 på white → fail. 0.7 = 5.33:1. */
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 14px;
}

.vk-bev-beskrivelse {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(44, 44, 44, 0.85);
}

.vk-bev-beskrivelse p {
  margin-bottom: 12px;
}

.vk-bev-beskrivelse p:last-child {
  margin-bottom: 0;
}

/* --- INFO-KORT --- */
.vk-bev-info-kort {
  background: #1E2E1E;
  border-radius: 20px;
  padding: 28px 28px 24px;
  position: sticky;
  top: 84px;
}

.vk-bev-info-kort .vk-bev-sektion-label {
  /* WCAG AA: 0.35 alpha gav 3.07:1 på #1E2E1E → fail. 0.55 = 5.35:1. */
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.vk-bev-info-linje {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.vk-bev-info-ikon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
}

.vk-bev-info-tekst {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  padding-top: 7px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vk-bev-info-tekst a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.vk-bev-info-tekst a:hover {
  color: #D98244;
}

.vk-bev-info-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.vk-bev-kontakt-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 16px 0;
}

/* Køb billetter knap */
.vk-bev-billetter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  background: #D98244;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  transition: opacity 0.15s;
}

.vk-bev-billetter-btn:hover {
  opacity: 0.9;
  color: #fff;
}

/* --- RESPONSIV --- */
@media (max-width: 860px) {
  .vk-bev-layout {
    grid-template-columns: 1fr;
  }

  .vk-bev-info-kort {
    position: static;
  }
}

@media (max-width: 600px) {
  .vk-bev-hero {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .vk-bev-navn {
    font-size: 26px;
  }

  .vk-bev-hero-overlay {
    padding: 20px 24px;
  }

  .vk-bev-container {
    padding: 24px 20px 60px;
  }
}
