/* =========================
   FORSIDE
   ========================= */
/* Hero */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mørk overlay for læsbarhed */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(32,34,35,0.7), rgba(32,34,35,0.7)),
    url("/andet/billeder/hero_background.webp") center center / cover no-repeat;
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 30px;
  color: var(--color-text-light);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  max-width: 700px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-content .intro {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Support */
.support-box {
  margin-top: 50px;
  font-size: 15px;
}

.support-intro {
  margin-bottom: 25px;
  opacity: 0.85;
  line-height: 1.6;
}

.support-contacts {
  display: flex;
  justify-content: center;   /* centrer hele rækken */
  gap: 80px;                 /* afstand mellem kolonner */
  text-align: center;
}

.support-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 180px;
}

.support-title {
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.support-name {
  font-weight: 500;
  font-size: 14px;
  opacity: 0.9;
}

.support-mail {
  color: #F5F5F5;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 250, 247, 0.4);
  width: fit-content;
  transition: all 0.3s ease;
}

.support-mail:hover {
  opacity: 1;
  border-color: #f5f5f5;
}

/* =========================
   MOBIL
   ========================= */
@media (max-width: 1000px) {
  .support-contacts {
    flex-direction: column;
    gap: 30px;
  }

  .support-item {
    align-items: center;
    text-align: center;
  }
}

/* =========================
   Rumænien tur
   ========================= */
.romania-tour {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.romania-tour h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  position: relative;
}

.romania-tour h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: var(--color-primary);
  margin: 12px auto 0;
  border-radius: 10px;
}

.romania-tour p {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.romania-tour img {
  width: 100%;
  max-width: 350px;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  margin: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.romania-tour img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
}

.romania-tour {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.romania-tour h2,
.romania-tour p {
  width: 100%;
}

@media (max-width: 768px) {
  .romania-tour h2 {
    font-size: 2rem;
  }

  .romania-tour p {
    font-size: 1rem;
  }

  .romania-tour img {
    max-width: 100%;
    height: 220px;
  }
}


/* =========================
   MOBIL
   ========================= */
@media (max-width: 1000px) {
  .support-contacts {
    flex-direction: column;
    gap: 30px;
  }

  .support-item {
    align-items: center;
    text-align: center;
  }
}

/* =========================
   DONATION
   ========================= */

.donation {
  background-color: #F7FAF7; /* mørk baggrund for sektionen */
  padding: 40px 20px;
  text-align: center;
}

.donation h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222; /* hvid tekst */
  font-weight: bold;
}

.donation p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #222; /* hvid tekst */
  line-height: 1.5;
}

/* Wrapper til lokationer */
.donation-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* afstand mellem lokationer */
  margin-top: 20px;
}

/* Hver lokation */
.donation-location {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
}

.donation-location p {
  margin-bottom: 10px;
  color: #222; /* mørk tekst */
}

.donation-location p strong {
  font-weight: bold;
  color: #222; /* mørk tekst */
}

/* Responsivt */
@media (max-width: 600px) {
  .donation-links {
    flex-direction: column;
    align-items: center;
  }

  .donation-location {
    width: 100%;
    max-width: 300px;
  }
}