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

body {
  background: var(--light-blue);
  color: var(--dark);
  font-family: "Georgia", serif;
}

/* Titel bovenaan */
h1 {
  text-align: center;
  margin: 2rem 0;
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: var(--blue);
}

/* Container */
.pillars-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: var(--max-width);
  margin: auto;
}

/* Elke pilaar */
.pillar-stone {
  background: var(--white);
  border: 2px solid #eee; /* subtiele grijze rand */
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* neutrale grijze schaduw */
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect – luchtig, neutraal */
.pillar-stone:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
}

/* Titel van de pilaar */
.pillar-stone h2 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-family: "Arial", sans-serif;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #eee; /* neutrale scheidingslijn */
  padding-bottom: 0.5rem;
}

/* Tekst in de pilaar (ingekort standaard) */
.pillar-text {
  white-space: pre-line;
  color: var(--dark);
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.pillar-text.expanded {
  max-height: 2000px; /* groot genoeg om alle tekst te tonen */
}

/* Lees meer knop */
.read-more {
  margin-top: 1rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: var(--dark);
}

/* Spiritueel accent */
.pillar-stone::after {
  content: "✧";
  font-size: 1.2rem;
  color: #ccc; /* subtiel grijs */
  position: absolute;
  bottom: 10px;
  right: 12px;
  opacity: 0.6;
}
