/* ========== BASIS ========== */
:root{
  --green-dark:#0F341D;    /* LocalBite donkergroen */
  --green-lime:#3DAD62;    /* LocalBite lichtgroen */
  --green-lime-d:#2E804A;  /* iets donkerder voor hover */
  --ink:#333333;
  --bg:#FFFFFF;
  --bg-soft:#F7F7F7;
  --bg-tint:#E9F5E5;
  --shadow:0 12px 30px rgba(0,0,0,.08);
  --radius:12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
}
h1, h2, h3 {
  font-family: 'Roboto Slab', serif;
  color: var(--green-dark);
  margin: 0 0 .6rem;
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo { height: 42px; }
.brand-text { font-weight: 700; color: var(--green-dark); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 700;
  transition: .2s;
}
.nav-links a:hover { color: var(--green-lime); }
.cta-link {
  background: var(--green-lime);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 8px;
}

/* ========== HERO ========== */
.hero {
  background:
    linear-gradient(rgba(19,78,74,0.65), rgba(19,78,74,0.65)),
    url('../images/1.jpg') center/cover no-repeat fixed;
  color: #fff;
  text-align: center;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.hero-content { max-width: 780px; }
.lead { font-size: 1.15rem; margin-bottom: 1.5rem; }
.btn {
  display: inline-block;
  background: var(--green-lime);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: .2s transform, .2s background;
}
.btn:hover {
  background: var(--green-lime-d);
  transform: translateY(-2px);
}

/* Gelijk uiterlijk voor <button> en <a> knoppen */
button.btn {
  all: unset; /* verwijdert alle browser-standaardstijl */
  display: inline-block;
  background: var(--green-lime);
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: .2s transform ease, .2s background ease;
}

button.btn:hover {
  background: var(--green-lime-d);
  transform: translateY(-2px);
}

button.btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(132,204,22,.25);
}


.contacts-minor { margin-top: 10px; }
.contacts-minor a { color: #fff; text-decoration: underline; }

/* ========== SECTIONS ========== */
.section {
  width: 100%;
  padding: 80px 0;
}

.section > .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

}
.section.alt { background: var(--bg-soft); }
.section.highlight { background: #EAF6E3; }
.center { text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1fr; }

.frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.frame img {
  display: block;
  width: 100%;
  height: auto;
}

.frame2 {
  overflow: hidden;

}
.frame2 img {
  display: block;
  width: 100%;
  height: auto;
}


/* ========== CARDS & VOORDELEN ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: .25s transform ease, .25s box-shadow ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}
.card .icon {
  height: 48px;
  width: 48px;
  border-radius: 10px;
  margin-bottom: 12px;
  object-fit: cover;
}

/* ========== LISTS ========== */
.checklist {
  list-style: none;
  padding-left: 0;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
}
.checklist li::before {
  content: '✔';
  color: var(--green-lime);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

/* ========== METRICS ========== */
.metrics {
  list-style: none;
  padding-left: 0;
}
.metrics li {
  margin: 12px 0;
  font-size: 1.05rem;
}
.metrics li span {
  background: var(--green-dark);
  color: #fff;
  border-radius: 10px;
  padding: 5px 12px;
  margin-right: 8px;
  font-weight: 700;
}

/* ========== QUOTES ========== */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
blockquote {
  background: #fff;
  border-left: 6px solid var(--green-lime);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-style: italic;
  margin: 0;
}
blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  opacity: .8;
}

/* ========== FORMULIER ========== */
form {
  margin-top: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  color: var(--green-dark);
}
input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font: inherit;
  transition: .2s border, .2s box-shadow;
}
input:focus {
  outline: none;
  border-color: var(--green-lime);
  box-shadow: 0 0 0 4px rgba(132,204,22,.15);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: 60px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: grid;
    gap: 10px;
    padding: 16px 20px;
    transform: translateY(-120%);
    transition: .3s ease;
    z-index: 999;
  }
  .nav-links.is-open { transform: translateY(0); }
  .hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--green-dark);
  }

  .card-grid, .quote-grid, .form-grid { grid-template-columns: 1fr; }
}

@media (min-width: 821px) {
  .hamburger {
display:none;
  }
	}

/* ===== Enkele cijfers gecentreerd ===== */
.centered-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.centered-section .container {
  max-width: 720px;
}

.centered-section .metrics {
  text-align: center;
  margin-top: 20px;
}

.centered-section .metrics li {
  margin: 14px 0;
  line-height: 1.6;
  font-size: 1.05rem;
}
