/* =========================================================
   BASIS OPMAAK
========================================================= */
body,
html {
  height: 100%;
}

body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus {
  outline: 0;
}

button {
  background-color: #142B58;
  color: #ffffff;
  padding: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #0056b3;
}


/* =========================================================
   TEKSTMARGES
========================================================= */
.page-content p,
main p {
  margin-left: 1rem;
  margin-right: 1rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin-left: 1rem;
  margin-right: 1rem;
  line-height: 1.6;
}

h1 {
	font-size: 24px !important;
	font-weight: 600;
}
@media (max-width: 768px) {
  h1, h2, h3, h4, h5, h6, p {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }
}

/* =========================================================
   STRUCTUUR
========================================================= */
.row { max-width: 1400px; }
hr { max-width: 1400px !important; }

ul { margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6, li, p {
  font-family: Poppins, sans-serif;
  color: #414141;
}

/* =========================================================
   BUTTONS
========================================================= */
.button1 { background-color: #E22555 !important; }
.button2 { background-color: #fff !important; color: #000; }
.button:focus, .button:hover { color: #000; }
.btn { margin-top: 50px; }
.button3 { padding: 0px !important; }
.button3 i {
  background-color: #E22555;
  border-radius: 50%;
  padding: 4px;
  color: white;
}

/* =========================================================
   TOPBAR
========================================================= */
.topbar {
  background-color: #142B58;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  padding: 0.4rem 1rem;
  margin: 0;
  line-height: 1.4;
}

.topbar .row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

#topbar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

#topbar-menu li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

#topbar-menu li a:hover { color: #E4362E; }

#topbar-menu li:first-child a::before { content: "📞 "; }
#topbar-menu li:last-child a::before { content: "✉️ "; }

@media (max-width: 768px) {
  .topbar {
    text-align: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.9rem;
  }
  .topbar .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #topbar-menu {
    flex-direction: column;
    gap: 0.3rem;
  }
}

/* =========================================================
   HEADER EN MENU
========================================================= */
.header {
  background: #fff;
}

.menu {
  padding: 14px 0 60px 0;
}

.menu ul {
  float: right;
}

.menu ul li {
  float: left;
  list-style: none;
  padding: 9px;
  margin: 0 10px;
  text-transform: uppercase;
}

.menu ul li a {
  color: #134f72;
  font-weight: 500;
  font-size: 13px;
  transition: color 0.2s;
}

.menu ul li a:hover {
  color: #E70411;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 1rem;
}

.hero-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* CTA */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.cta-btn {
  display: inline-block;
  padding: 1.1rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.cta-btn:hover { transform: translateY(-2px); }
.cta-btn { background: #142B58; color: #fff; }
.cta-btn.highlight { background: #E4362E; color: #fff; }
.cta-btn.highlight:hover { background: #f04b41; }

@media (max-width: 768px) {
  .hero { height: 420px; }
  .hero-title { font-size: 2rem; margin-bottom: 1.5rem; }
  .cta-buttons { flex-direction: column; gap: 1rem; }
  .cta-btn {
    width: 90%;
    max-width: 340px;
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 1rem 1.8rem;
  }
}

/* =========================================================
   TABELLEN
========================================================= */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-family: 'Poppins', 'Arial', sans-serif;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  background: #fff;
}

table thead tr {
  background-color: #142B58;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

table thead tr th {
  font-size: 16px;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 3px solid #E4362E;
}

table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

table tbody tr:nth-child(even) { background-color: #fffaf3; }
table tbody tr:hover { background-color: #f9f5ee; }

table tbody tr td {
  font-size: 15px;
  padding: 12px 16px;
  color: #142B58;
}

table tbody tr td:first-child { font-weight: 600; }
table tbody tr td:last-child {
  text-align: right;
  font-weight: 700;
  color: #E4362E;
}

@media (max-width: 768px) {
  table { border-radius: 8px; box-shadow: none; background: none; }
  table thead { display: none; }
  table, table tbody, table tr, table td {
    display: block;
    width: 100%;
  }
  table tr {
    background: #fff;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    border: 1px solid #f2f2f2;
    padding: 0.6rem 0.8rem;
  }
  table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 15px;
    border: none;
  }
  table tr:nth-child(even) { background: #fffaf3; }
}

.page-content img {
    clear: both;
    display: block;
    margin: 0 auto;
    border-radius: 18px;
    padding: 10px; /* voeg padding toe */
}


/* =========================================================
   SCROLL HEADER
========================================================= */
.scroll-header {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 10px 0 rgba(19, 50, 68, 0.33);
  z-index: 999;
}

.scroll-header.show {
  display: block;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background-color: #142B58;
  color: #fff;
  padding: 3rem 1rem 1.5rem;
  font-family: 'Poppins', 'Arial', sans-serif;
}

/* Container structuur */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Kolommen */
.footer-container > div {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Logo & tagline */
.footer-logo {
  max-width: 180px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.8rem;
}

.footer-tagline {
  color: #fff !important;
  opacity: 0.9;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Titels */
.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #fff;
  position: relative;
}

.footer h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #E4362E;
  display: block;
  margin-top: 4px;
  border-radius: 2px;
}

/* Links */
.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #E4362E;
}

.footer-links ul li {
  margin-bottom: 6px;
}

/* Contact */
.footer-contact p {
  margin: 0.3rem 0;
  color: #fff !important;
  opacity: 1 !important;
  line-height: 1.6;
}

/* Openingstijden */
.footer-opening .opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border: none;
  color: #fff !important;
}

/* Footer onderbalk */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #fff !important;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom a {
  color: #fff !important;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #E4362E !important;
}

/* =========================================================
   MOBIEL
========================================================= */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1.2rem;
  }

  .footer-container {
    display: block;
    text-align: center;
  }

  .footer-container > div {
    margin-bottom: 2rem;
  }

  .footer-logo {
    display: block;
    margin: 0 auto 0.8rem;
  }

  .footer-tagline {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  /* Titels met centrering en bredere lijn */
  .footer h4 {
    text-align: center;
  }

  .footer h4::after {
    margin: 0.3rem auto;
    width: 60px;
  }

  /* Openingstijden op mobiel onder elkaar */
  .footer-opening .opening-hours {
    text-align: center;
  }

  .footer-opening .opening-hours li {
    display: block;
    padding: 4px 0;
  }

  .footer-opening .opening-hours li span:first-child {
    display: block;
    font-weight: 600;
  }

  .footer-opening .opening-hours li span:last-child {
    display: block;
    font-size: 0.9rem;
  }

  /* Onderbalk */
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.85rem;
  }
}

/* === Cateringsectie verbeterd === */
.stoepje-catering { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 3rem 1.2rem; /* iets meer ruimte links/rechts */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  font-family: 'Poppins', 'Arial', sans-serif;
  color: #222;
}

.stoepje-catering h2,
.stoepje-catering p,
.stoepje-catering ul {
  margin-left: 0;
  margin-right: 0;
}

.catering-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
  align-items: start;
}

.stoepje-catering h2,
.stoepje-catering h3 {
    color: #e63946 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
}


.catering-left h2,
.catering-right h2 {
  color: #e63946 !important;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

/* Lijsten */
.stoepje-catering ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.stoepje-catering ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.55rem;
  line-height: 1.7;
}

.stoepje-catering ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: #e63946;
  border-radius: 50%;
}

/* Knop onderaan, gecentreerd */
.cta-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

.cta-button { 
  display: inline-block;
  background-color: #e63946;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 22px rgba(230,57,70,.28);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.cta-button:hover { 
  background:#c62f3a;
  transform: translateY(-2px);
  box-shadow:0 10px 26px rgba(230,57,70,.34);
}

.cta-button:active { 
  transform: translateY(0);
  box-shadow:0 5px 14px rgba(230,57,70,.26);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(230,57,70,.35);
  outline-offset: 3px;
}

/* Mobiel weergave */
@media (max-width: 900px){
  .catering-container {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .stoepje-catering {
    padding: 2.5rem 1.6rem; /* extra padding links/rechts op mobiel */
  }
  .cta-wrapper {
    margin-top: 2rem;
  }
  .cta-button {
    width: 100%;
    max-width: 340px;
  }
}

.menu .active>a {
    background: none !important;
    color: #142B58;
}
/* ================================================
   FOOTER — VERBETERDE KOLUMNEN & MOBIEL
================================================ */

/* Strakkere kolomverdeling */
.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  column-gap: 3rem;
  row-gap: 2.5rem;
  align-items: start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Kolommen consistent verticaal uitgelijnd */
.footer-container > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Openingstijden-align nog strakker */
.footer-opening .opening-hours li {
  display: flex;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 4px 0;
  column-gap: 1.5rem;
}

/* Tijd rechts, altijd netjes in lijn */
.footer-opening .opening-hours li span:last-child {
  white-space: nowrap;
  justify-self: end;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer p {
  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* Bepaal vaste breedte voor tijd-kolom (zorgt voor strakke kolommen) */
@media (min-width: 769px) {
  .footer-opening .opening-hours li {
    grid-template-columns: 1fr 150px;
  }
}

/* ================================================
   MOBIEL (max-width: 900px)
================================================ */
@media (max-width: 900px) {

  /* Eén kolom, gecentreerd */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 2.2rem;
  }

  /* Alle secties netjes centreren */
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-opening {
    align-items: center;
  }

  /* Links in mobiele modus: gecentreerd onder elkaar */
  .footer-links ul li {
    margin-bottom: 0.5rem;
  }

  .footer-links a {
    font-size: 1.05rem;
  }

  /* Openingstijden: stacked en gecentreerd */
  .footer-opening .opening-hours li {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 3px;
  }

  .footer-opening .opening-hours li span:last-child {
    justify-self: center;
  }

  /* Footer tagline iets meer ruimte */
  .footer-tagline {
    margin-top: 0.3rem;
  }
}
.footer-links ul {
  list-style: none !important;
}




/* =========================================================
   RESPONSIVE MENU (Pushy en hamburger)
========================================================= */

/* Desktop: normaal menu, geen pushy */
@media (min-width: 992px) {
  .pushy {
    display: none !important;
  }
  .menu .hamburger {
    display: none !important;
  }
  .menu ul {
    display: flex !important;
  }
}

/* Mobiel: enkel hamburger zichtbaar */
@media (max-width: 991px) {
  .menu ul {
    display: none !important;
  }
  .menu .hamburger {
    display: inline-block !important;
    background: none;
    border: none;
    font-size: 2rem;
    color: #142B58;
    cursor: pointer;
  }

/* Achtergrond van mobiele pushy menu */
.pushy.pushy-right {
    background: #142B58; /* donkerblauw */
}

/* UL in pushy menu: bullets uit */
.pushy-content ul {
    list-style: none !important;
    padding-left: 0 !important;
}

/* LI markers geheel weg */
.pushy-content ul li::marker {
    content: none !important;
}

/* Links wit maken */
.pushy-content ul li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.2rem;
}

/* Hover kleur (optioneel: rood zoals logo accent) */
.pushy-content ul li a:hover {
    color: #E4362E !important;
}

/* Active item (optioneel wit blijven) */
.pushy-content ul li.active a {
    color: #fff !important;
    font-weight: 600;
}
.pushy-content ul,
.pushy-content ul li {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
