/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #f7f7f7;
  color: #333;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.logo span {
  color: #ff7a00;
}

.main-nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

.main-nav a:hover {
  color: #ff7a00;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 16px;
  text-decoration: none;
  background: #eee;
  color: #000;
}

.btn.primary {
  background: #ff7a00;
  color: #fff;
}

.btn.full {
  width: 100%;
  text-align: center;
}

/* Page title */
.page-title {
  margin: 30px 0;
  font-size: 32px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Product card */
.product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.product-image img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #ff7a00;
  margin-bottom: 15px;
}

/* Cart */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.cart-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* Footer */
.site-footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.hero {
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
}


.hero h1 {
  font-size: 48px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  max-width: 520px;
}

.home-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px auto;
}

.category-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: left;
  padding-bottom: 15px;
}

.category-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #f7f7f7;
}

.category-card h3 {
  padding: 15px 15px 5px;
  font-size: 18px;
}

.category-card .price {
  padding: 0 15px 10px;
}

.category-card .btn {
  margin: 0 15px;
}

/* ALGEMENE SECTIE RUIMTE */
section {
  margin: 60px auto;
  max-width: 1200px;
}

/* USP BALK (Waarom DakterrasPro) */
.usp-bar {
  background: #f4f4f4;
  border-radius: 18px;
  padding: 30px 40px;
  text-align: center;
}

.usp-bar h2 {
  margin-bottom: 20px;
}

.usp-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  font-weight: 500;
}

/* WAAROM KIEZEN BLOK */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* WHY SECTION */
.why-section {
    max-width: 1200px;
    margin: 40px auto; /* DICHTER BIJ VOLGENDE SECTIE */
    padding: 0 20px;
}

.why-inner {
    background: #ffffff;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TEKST */
.why-text {
    padding: 40px 45px;
}

.why-text h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.why-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.why-text ul {
    list-style: none;
    margin-top: 20px;
}

.why-text li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 15px;
}

.why-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f08a24;
    font-weight: bold;
}

/* AFBEELDING */
.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .why-inner {
        grid-template-columns: 1fr;
    }

    .why-image img {
        height: 280px;
    }
}
/* STAPPENPLAN */
.steps-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.step {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  position: relative;
}

.step img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f28c28;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.step h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.step p {
  color: #666;
  font-size: 14px;
}
/* TWIJFEL / CTA */
.help-box {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.help-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-section {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
} 

  .help-actions {
    flex-direction: column;
  }
/* FOOTER */
.site-footer {
  background: #2f2f2f;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col a:hover {
  color: #f28a2e;
}

.footer-trust p {
  font-size: 14px;
  margin-bottom: 10px;
}

.trust-icons img {
  height: 100px;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #f28a2e;
}

.footer-logo {
  margin: 15px 0;
  font-weight: bold;
}

.footer-socials a {
  margin: 0 8px;
  color: #ccc;
}

