/* ===============================
   Skyyurt pagina – Delfts blauw stijl
   =============================== */

/* Hero blok */
.hero-skyyurt {
  min-height: 45vh;
  background: #6174ab; /* zelfde zachte blauw als contact & download */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-skyyurt .overlay {
  color: white;
  padding: 3rem;
  border-radius: 12px;
  max-width: 850px;
}

.hero-skyyurt h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-skyyurt p {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Algemene secties */
.intro, .kostenraming, .donate {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center;
}

.project-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
}

.project-section.reverse {
  direction: rtl;
}

.project-section.reverse .project-text {
  direction: ltr;
}

.project-image {
  min-height: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.project-image.contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.project-text {
  font-family: "Georgia", serif;
  line-height: 1.8;
  color: var(--dark);
}

.project-text h2 {
  color: var(--blue);
  margin-bottom: 1rem;
}

.kostenraming table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.kostenraming th, .kostenraming td {
  padding: 1rem;
  border: 1px solid #ccc;
}

.kostenraming th {
  background: var(--blue);
  color: white;
}

.kostenraming .totaal td {
  font-weight: bold;
  background: var(--light-blue);
}

.donate {
  background: var(--light-blue);
  border-radius: 10px;
  border: 2px solid var(--blue);
}

#donateBtn {
  background: var(--blue);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

#donateBtn:hover {
  background: var(--dark);
}

@media(max-width: 900px) {
  .project-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
