
body {
  font-family: 'Nunito', sans-serif;
}


.title-bar {
  background: #b34d4d;
  color: #fff;
  text-align: center;
  padding: 18px 14px;
  border-radius: 12px;
  margin: 16px 0 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.title-bar h1 {
  margin: 0;
}


.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 12px;
}


.feature {
  max-width: 1000px;
  margin: 30px auto;
  padding:12px ;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.05);
}


.feature-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.feature-content h3 {
  margin: 0 0 8px;
  color: #1f1f1f;
  font-weight: 800;
}

.feature-content p {
  color: #444;
  line-height: 1.6;
  margin: 0 0 14px;
}

.btn {
  display: inline-block;
  background: #b34d4d;
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}
.btn:hover {
  filter: brightness(0.95);
}

/* ===== Categorieën (menu sectie) ===== */
.menu-categories {
  margin: 60px auto;
  max-width: 1100px;
  text-align: center;
}

.menu-categories h2 {
  color: #b34d4d;
  font-size: 2rem;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.category-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  color: #333;
}

.category-card p {
  font-size: 0.95rem;
  color: #666;
}

.contact-bar{
  background:#b34d4d;
  color:#fff;
  margin-top:48px;
  box-shadow:0 -4px 14px rgba(0,0,0,.08);
}
.contact-inner{
  max-width:1100px;
  margin:0 auto;
  padding:16px 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}
.contact-item{ font-size:0.95rem; line-height:1.4; }
.contact-item a{
  color:#fff; text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.35);
}
.contact-item a:hover{ border-color:#fff; }
.contact-sep{ width:1px; height:16px; background:rgba(255,255,255,.35); }
.contact-copy{
  text-align:center; font-size:.85rem; opacity:.9;
  padding:10px 12px; border-top:1px solid rgba(255,255,255,.25);
}
@media (max-width:700px){
  .contact-inner{ justify-content:flex-start; gap:8px; }
  .contact-item{ width:100%; }
  .contact-sep{ display:none; }
}
.menu-categories {
  margin: 60px auto;
  max-width: 1100px;
  text-align: center;
}

.menu-categories h2 {
  color: #b34d4d;            
  font-size: 2rem;
  margin-bottom: 38px;
  font-weight: 700;
}


.menu-categories {
  text-align: center;
  margin: 60px auto;
  max-width: 1200px;
}

.menu-categories h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #b34d4d;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 kolommen */
  gap: 25px; /* ruimte tussen kaarten */
  justify-items: center; /* kaarten in het midden */
}

.category-card {
  background: #fff;
  border: 2px solid #f2c5c5;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.category-card h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  color: #b34d4d;
}

.category-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Vak design */
.category-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;

  text-decoration: none;
  background: #fff;
  color: #333;

  border: 2px solid #f0dada;        /* zachte roodachtige rand */
  border-radius: 12px;
  padding: 28px 24px;

  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.category-card h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #b34d4d;                  /* accentkleur titel */
}

.category-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* Hover effect */
.category-card:hover {
  transform: translateY(-6px);
  border-color: #b34d4d;           /* accentkleur bij hover */
  box-shadow: 0 8px 20px rgba(179, 77, 77, .25);
}
/* Active (als je klikt) */
.category-card:active {
  transform: translateY(-2px);
}
footer {
  background: #b34d4d;       /* jouw rode kleur */
  color: #fff;
  text-align: center;
  padding: 20px;
  margin: 0;                 /* haalt die ruimte rondom weg */
  width: 100%;               /* zorgt dat hij de hele breedte pakt */
  position: relative;
  bottom: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


