/* Specialiteiten + lightbox (plaats dit bestand in assets/css/specialiteiten.css) */
.cards--responsive { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
@media (max-width: 1200px){ .cards--responsive{ grid-template-columns: repeat(3,1fr);} }
@media (max-width: 900px){ .cards--responsive{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .cards--responsive{ grid-template-columns: 1fr;} }

.cards--responsive .card { display: flex; flex-direction: column; }
.cards--responsive .card p { margin-bottom: .5rem; }

.dish-media { margin-top: auto; display: flex; justify-content: center; align-items: flex-end; max-width: 100%; overflow: hidden; }
.dish-trigger { display: flex; justify-content: center; align-items: flex-end; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.dish-trigger:focus-visible { outline: 2px solid #8B2E2E; outline-offset: 2px; }
.dish-trigger:hover img { filter: brightness(1.05); }

.dish-photo { display: block; width: 100%; max-width: 100%; height: auto; object-fit: contain; max-height: clamp(140px, 22vw, 220px); border-radius: 8px; }

body.modal-open { overflow: hidden; }
.lightbox { position: fixed; inset: 0; display: none; z-index: 9999; }
.lightbox[aria-hidden="false"] { display: block; }
.lightbox__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.8); }
.lightbox__dialog { position: absolute; inset: 0; margin: auto; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.lightbox__dialog img { max-width: min(90vw, 1400px); max-height: 90vh; width: auto; height: auto; object-fit: contain; box-shadow: 0 10px 40px rgba(0,0,0,.45); border-radius: 12px; }
.lightbox__close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; line-height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 28px; cursor: pointer; }
.lightbox__close:hover { background: rgba(255,255,255,.25); }
