/* =========================
   HERO (FORSIDE)
   ========================= */

.hero {
  height: 97vh;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-black);
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;      /* 👈 det her er det vigtigste */
  object-position: center; /* 👈 holder fokus i midten */

  z-index: 0;
}

.hero-video {
  z-index: 0;
}

/* centrer hele content-boksen */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;

  color: var(--color-text-light);
}

.hero-content {
  z-index: 2;
}

.hero-content .container {
  width: min(1200px, calc(100% - 4rem));
  margin: 0 auto;

  display: flex;
  justify-content: center;
}

.hero-box {
  max-width: 650px;
  text-align: center;
}

/* dato */
.date {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

/* overskrift */
.hero-box h1 {
  margin: 0;
  line-height: 1.1;
}

/* tekst */
.hero-box p {
  margin-top: 0.8rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* knapper række */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;

  justify-content: center; /* 👈 DET HER mangler */
}

.date .break {
  display: inline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-box {
    text-align: center;
    max-width: 90%;
  }

  .hero-content .container {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .date .break {
    display: block;
  }

  .dot {
    display: none;
  }
}


/* =========================
   Info SECTION
   ========================= */

.about-move {
  padding: 6rem 0;
  background: var(--color-bg);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* TEXT */
.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

/* IMAGES GRID */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* make one image larger for hierarchy */
.about-images img:first-child {
  grid-column: span 2;
  height: 240px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images img:first-child {
    grid-column: auto;
  }
}


/* =========================
   Testimonials SECTION
   ========================= */
.testimonials {
  padding: 6rem 0;
  background: var(--color-bg-2);
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.testimonials-sub {
  margin-bottom: 2rem;
  color: #666;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.2s ease;
}

.testimonial-card p {
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.5rem;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #777;
}

/* CTA */
.story-cta {
  margin-top: 3rem;
  padding-top: 2rem;

  border-top: 2px solid rgba(0,0,0,0.12);

  text-align: left;
}

.story-cta p {
  margin: 0 0 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Audio Controls
   ========================= */
.video-audio-toggle {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.video-audio-toggle button {
  width: 44px;
  height: 44px;

  border-radius: 50%;
  border: none;

  background: rgba(0,0,0,0.55);
  color: white;

  font-size: 18px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.2s ease;
}

.video-audio-toggle button:hover {
  transform: scale(1.05);
  background: rgba(0,0,0,0.7);
}