/* pakketten.css */

/* Standaard container styling voor packages */
.packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.package {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1.5rem;
  background-color: #fdfdfd;
  transition: box-shadow 0.2s ease-in-out;
}

.package:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.package h4 {
  margin-top: 0;
  font-size: 1.4rem;
}

.package-intro {
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Details en summary (uitklapbaar) */
details {
  margin-top: 1rem;
  cursor: pointer;
}

summary {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  outline: none; /* verwijder dotted outline in sommige browsers */
}

summary::marker {
  /* Verberg de standaard marker in moderne browsers */
  content: "";
}

summary::before {
  content: '+';
  margin-right: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
}

/* Als details is opengeklapt, verander het symbool van + naar - */
details[open] summary::before {
  content: '-';
}

.package-details {
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 2px solid #ccc;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Lijststijlen binnen de package details */
.package-details ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Samenvattende prijs-info */
.price-info {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
}

/* Responsiveness: op grotere schermen pakketten in twee kolommen */
@media screen and (min-width: 768px) {
  .packages {
    grid-template-columns: 1fr 1fr;
  }
}
