/* --- Body og baggrund --- */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: Arial, Courier, sans-serif;
  font-size: 0.85rem;
  background-color: #f9d2d7;
  color: #222;

  /* Grain effekt */
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: 0 0, 4px 4px;
}

/* --- Header og footer --- */
header, footer {
  text-align: center;
  padding: 1rem;
}

.header-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0rem;
}

/* --- Video sektion --- */
.video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  width: 100%;
}

.video-wrapper {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  margin-bottom: 2rem;
  position: relative;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Film Work Sektion --- */
.film-work {
  width: 100%;
  max-width: 60vw;     /* ← max 60% af viewport */
  margin: 0 auto;     /* centrerer */
  padding: 0 1rem;
  transform: translateX(2vw); /* ← ryk hele blokken lidt mod højre */
}

/* === Film Item (Hovedlayout) === */
.film-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

/* === Venstre kolonne (poster + note + links) === */
.film-left {
  flex: 0 0 450px;     /* kun så bred som nødvendig */
  display: flex;
  flex-direction: column;
  align-items: center; /* centrer poster + note + links */
}

.film-poster {
  width: 100%;
  height: auto;
  display: block;
}

.poster-note {
  font-style: italic;
  margin-top: 1.5rem;
  text-align: center;
}

/* === Højre kolonne (tekst + stills) === */
.film-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
}

/* Tekst */
.film-info {
  line-height: 1.3;
}

.film-info h3 {
  margin: 0 0 0.4rem 0;
}

.film-info p {
  margin: 0.2rem 0;
}

/* === Stills under teksten === */
.film-stills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 750px;   /* ← KRAV OPFYLDT */
}

.film-stills img {
  width: 90%;
  height: auto;
  border-radius: 0.25rem;
}

/* === Mobil layout === */
@media (max-width: 768px) {
  .film-item {
    flex-direction: column;
    align-items: center;
  }

  .film-left,
  .film-details {
    width: 100%;
    max-width: 90%;
    text-align: center;
  }

  .film-stills {
    width: 100%;
  }
}
