@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --dark: #243021;
  --green: #3c4432;
  --light-green: #e7eadf;
  --background: #f7f7f2;
  --text: #1f241b;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(60, 68, 50, 0.12),
      transparent 35%
    ),
    linear-gradient(180deg, #f7f7f2 0%, #eef0e8 100%);
  color: var(--text);
}

ul {
  background: rgba(60, 68, 50, 0.95);
  list-style: none;
  margin: 24px auto;
  padding: 18px 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 90%;
  max-width: 1200px;
  box-shadow: var(--shadow);
}

ul li:first-child {
  margin-right: auto;
}

ul li h1 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  letter-spacing: 2px;
  color: white;
}

ul li a {
  color: white;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
}

ul li a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.frontpage {
  width: 90%;
  max-width: 1200px;
  margin: 90px auto 70px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.homebanner {
  flex: 1;
  background: linear-gradient(135deg, #3c4432, #222b1f);
  color: white;
  min-height: auto;
  padding: 80px 55px;
  text-align: left;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.homebanner h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -2px;
}

.homebanner p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 30px;
  opacity: 0.9;
}

.mockupimage {
  flex: 1;
}

.frontpage img {
  width: 100%;
  max-width: 560px;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  display: block;
  height: auto;
  object-fit: cover;
}

@keyframes frontimageani {
  from {
    transform: translateX(200px);
  }
  to {
    transform: translateX(0);
  }
}

.blokken {
  display: flex;
  gap: 25px;
  margin: 35px auto 0;
  max-width: 1000px;
  padding: 0;
}

.blok {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  min-height: 180px;
  padding: 32px;
  border-radius: 24px;
  flex: 1;
  box-shadow: var(--shadow);
  text-align: left;
  border: 1px solid rgba(60, 68, 50, 0.08);
  transition: 0.3s ease;
}

.blok:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.blok h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.blok p {
  line-height: 1.6;
  opacity: 0.8;
}

.intro,
.diensten-preview,
.portfolio-preview,
.werkwijze,
.cta,
.prijs,
.voor-wie {
  width: 90%;
  max-width: 1100px;
  margin: 55px auto;
  padding: 65px 45px;
  border-radius: 32px;
  text-align: center;
}

.intro,
.werkwijze,
.cta {
  background: linear-gradient(135deg, #3c4432, #222b1f);
  color: white;
  box-shadow: var(--shadow);
}

.diensten-preview,
.portfolio-preview,
.prijs,
.voor-wie {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  box-shadow: var(--shadow);
  border: 1px solid rgba(60, 68, 50, 0.08);
}

.intro h1,
.diensten-preview h1,
.portfolio-preview h1,
.werkwijze h1,
.cta h1,
.prijs h1,
.voor-wie h1 {
  font-size: 42px;
  margin-top: 0;
  letter-spacing: -1px;
}

.intro p,
.diensten-preview p,
.portfolio-preview p,
.werkwijze p,
.cta p,
.prijs p,
.voor-wie p {
  font-size: 17px;
  line-height: 1.7;
}

footer {
  color: white;
  margin: 90px 10px 10px 10px;
  padding-bottom: 20px;
  background-color: rgb(60, 68, 50);
  border-radius: 25px;
  text-align: center;
  padding-top: 25px;
}

.button,
button {
  display: inline-block;
  background: white;
  color: var(--green);
  margin: 10px;
  padding: 15px 26px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.button:hover,
button:hover {
  background-color: var(--light-green);
  transform: translateY(-3px);
}

.secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  box-shadow: none;
}

.icon {
  width: 48px;
  height: 48px;
  background-color: #e7eadf;
  color: rgb(60, 68, 50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  ul {
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .frontpage {
    flex-direction: column;
    margin: 40px auto;
  }

  .homebanner {
    padding: 55px 28px;
    text-align: center;
  }

  .homebanner h2 {
    font-size: 38px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .blokken {
    flex-direction: column;
  }

  .intro,
  .diensten-preview,
  .portfolio-preview,
  .werkwijze,
  .cta,
  .prijs,
  .voor-wie {
    width: auto;
    margin: 28px 15px;
    padding: 45px 24px;
  }
}

.portfolio-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.label {
  font-weight: bold;
  color: rgb(60, 68, 50);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.herobanner {
  background-color: rgb(60, 68, 50);
  color: white;

  max-width: 800px;
  min-height: 420px;
  margin: 80px auto 0;
  padding: 30px 40px;
  text-align: center;
  border-radius: 25px;
  animation: homebannerani 2s ease forwards;
}

.herobanner h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.herobanner p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 25px;
}

.contactinfo {
  background-color: rgb(60, 68, 50);
  color: white;
  min-height: 250px;
  max-width: 800px;
  margin: 40px auto 0;
  margin-top: 40px;
  padding: 30px 40px;
  text-align: center;
  border-radius: 25px;
  animation: frontimageani 2s ease forwards;
}

.herobanner input,
textarea {
  border-radius: 10px;
  border: none;
  font-family: Arial, sans-serif;
}

.portfolio-page {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}

.project-card {
  background-color: white;
  color: #1f241b;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 25px;
  display: flex;
  gap: 35px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.project-card img {
  width: 45%;
  border-radius: 20px;
}

.project-card h2 {
  margin-top: 0;
  color: rgb(60, 68, 50);
}

.checklist {
  background: none;
  margin: 0;
  padding-left: 20px;
  border-radius: 0;
  display: block;
  color: #1f241b;
}

.checklist li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .project-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-card img {
    width: 100%;
  }
}

.contact-container {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  gap: 30px;
}

.contact-card {
  flex: 1;
  background-color: white;
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
  margin-top: 0;
  color: rgb(60, 68, 50);
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card input,
.contact-card textarea {
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.label-light {
  color: #e7eadf;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero-stats {
  display: flex;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 18px;
  min-width: 120px;
}

.hero-stats strong {
  display: block;
  font-size: 26px;
}

.hero-stats span {
  font-size: 14px;
  opacity: 0.8;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.portfolio-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.portfolio-content {
  padding: 28px;
}

.portfolio-content a {
  color: rgb(60, 68, 50);
  font-weight: 700;
  text-decoration: none;
}

.before-after {
  width: 90%;
  max-width: 1100px;
  margin: 55px auto;
  padding: 65px 45px;
  border-radius: 32px;
  background: white;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 35px;
}

.old-site,
.new-site {
  padding: 35px;
  border-radius: 24px;
  text-align: left;
}

.old-site {
  background: #f1f1f1;
  opacity: 0.75;
}

.new-site {
  background: linear-gradient(135deg, #3c4432, #222b1f);
  color: white;
}

.dark-button {
  background-color: rgb(60, 68, 50);
  color: white;
}

.dark-button:hover {
  background-color: rgb(42, 48, 35);
}

@media (max-width: 768px) {
  .portfolio-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    justify-content: center;
  }
}
