/* =========================
   GIV – SIDE
   ========================= */

.give-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* INTRO */
.give-intro {
  text-align: center;
  margin-bottom: 60px;
}

.give-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.give-intro p {
  font-size: 1.1rem;
  color: #555;
}

/* GIV LOKALT */
.give-locations h2 {
  text-align: center;
  margin-bottom: 5px;
}

.give-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.give-card {
  background: var(--color-bg-2);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.give-card h3 {
  margin-bottom: 20px;
}

/* Container for MobilePay + Bank */
.give-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* MobilePay */
.mobilepay img {
  display: block;
  margin-bottom: 4px;  /* meget tæt på nummeret */
  max-width: 200px;
}

.mobilepay p {
  margin: 0 0 40px 0; /* luft ned til bank */
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.85;
  text-align: center;
}

/* Bank */
.bank img {
  display: block;
  margin-bottom: 10px;
  max-width: 200px;
}

.bank p {
  margin: 0;
  line-height: 1.5;
  text-align: center;
}


/* MISSION */
.missions {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.missions h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.missions-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.missions-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.mission-card {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.mission-card img {
  width: 100%;           /* fylder bredden af kortet */
  max-width: 260px;      /* begrænser bredden på store skærme */
  height: 180px;         /* fast højde for alle billeder */
  object-fit: cover;     /* bevarer proportioner og fylder rammen */
  margin: 0 auto 15px auto;
  display: block;
  border-radius: 8px;
}

.mission-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.mission-card p {
  margin: 6px 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.mission-card a {
  color: #0066cc;
  text-decoration: none;
}

.mission-card a:hover {
  text-decoration: underline;
}

/* Speciel styling for Fredericia */
.missions-group.fredericia .mission-card {
  border: 2px solid #0066cc;
  background: #e6f0ff;
}



/* =========================
   LOKATIONER
   ========================= */

.location {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.location h1 {
    text-align: center;
    margin-bottom: 40px;
}

.location-hero {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.location-image img {
    max-width: 550px;
    width: 100%;
    border-radius: 8px;
}

.location-info {
    flex: 1;
}

.location-socials img {
    width: 24px;
    margin-right: 10px;
}

/* Præster */
.location-pastors {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pastor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pastor img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}


/* =========================
   RESPONSIV
   ========================= */

@media (max-width: 768px) {
    .about-container,
    .location-hero {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        text-align: center; /* alle centreret på mobil */
    }

    .footer-column:last-child {
        text-align: center; /* Haderslev også centreret */
    }
}