@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

.plack-res * { box-sizing: border-box; margin: 0; padding: 0; }

.plack-res {
  font-family: 'Lato', sans-serif;
  color: #f0ece4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
  background: transparent;
}

/* ── Header ── */
.plack-res-header {
  text-align: center;
  padding: 10px 20px 35px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(155,155,70,0.3);
}
.plack-res-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  color: #f0ece4;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.plack-res-header p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #c0baa8;
  max-width: 560px;
  margin: 0 auto;
}
.plack-res-header a { color: #9a9b45; text-decoration: none; font-weight: 400; }
.plack-res-header a:hover { text-decoration: underline; }

.plack-res-notice {
  display: inline-block;
  margin-top: 18px;
  background: rgba(154,155,69,0.12);
  border: 1px solid rgba(154,155,69,0.25);
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  color: #c5c080;
  font-weight: 300;
}
.plack-res-notice strong { font-weight: 700; color: #d5d090; }

/* ── Sectietitel ── */
.plack-res-section {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: #f0ece4;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(155,155,70,0.25);
  line-height: 1.3;
}

/* ── Grid ── */
.plack-res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .plack-res-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
  .plack-res-grid { grid-template-columns: 1fr; gap: 16px; }
  .plack-res-header h2 { font-size: 32px; }
}

/* ── Card ── */
.plack-res-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.plack-res-card:hover {
  transform: translateY(-3px);
  border-color: rgba(154,155,69,0.35);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ── Card afbeelding ── */
.plack-res-card-img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: filter 0.3s ease;
}
.plack-res-card:hover .plack-res-card-img { filter: brightness(1); }

/* ── Card body ── */
.plack-res-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.plack-res-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #f0ece4;
  margin-bottom: 6px;
  line-height: 1.25;
}
.plack-res-card-price {
  font-size: 15px;
  font-weight: 700;
  color: #9a9b45;
  margin-bottom: 12px;
}
.plack-res-card-price small { font-weight: 300; color: #9a9878; font-size: 13px; }

.plack-res-card-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: #b0aa98;
  margin-bottom: 16px;
  flex: 1;
}
.plack-res-card-desc strong { font-weight: 400; color: #d0cabb; }
.plack-res-card-desc p { margin: 0 0 8px; }
.plack-res-card-desc p:last-child { margin-bottom: 0; }

/* ── Badge ── */
.plack-res-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.plack-res-badge-request  { background: rgba(154,155,69,0.15); color: #b5b570; border: 1px solid rgba(154,155,69,0.25); }
.plack-res-badge-seasonal { background: rgba(120,160,80,0.15); color: #a0c070; border: 1px solid rgba(120,160,80,0.25); }

/* ── Knoppen ── */
.plack-res-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }

.plack-res-btn {
  display: inline-block;
  padding: 9px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  text-align: center;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.plack-res-btn-green   { background: #9a9b45; color: #fff; border: 2px solid #9a9b45; }
.plack-res-btn-green:hover { background: #85862e; border-color: #85862e; color: #fff; text-decoration: none; }

.plack-res-btn-outline { background: transparent; color: #9a9b45; border: 2px solid #9a9b45; }
.plack-res-btn-outline:hover { background: #9a9b45; color: #fff; text-decoration: none; }

.plack-res-btn-dark { background: rgba(255,255,255,0.08); color: #c0baa8; border: 2px solid rgba(255,255,255,0.15); }
.plack-res-btn-dark:hover { background: rgba(255,255,255,0.15); color: #f0ece4; text-decoration: none; }

/* ── Footer ── */
.plack-res-footer {
  text-align: center;
  padding: 35px 20px 10px;
  margin-top: 40px;
  border-top: 1px solid rgba(155,155,70,0.25);
  font-size: 14px;
  font-weight: 300;
  color: #908a78;
  line-height: 1.8;
}
.plack-res-footer a { color: #9a9b45; text-decoration: none; }
.plack-res-footer a:hover { text-decoration: underline; }