body {
  margin: 0;
  font-family: 'Livvic', sans-serif;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  height: 100px;
}

.menu {
  position: relative;
}

.menu-icon {
  display: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.cta-button {
  background-color: #CDB1D4;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  background-image: url('/afbeeldingen/jouw-afbeelding.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.2);
}

.hero-content {
  position: relative;
  color: white;
  padding-left: 5%;
  max-width: 40%;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Diensten Sectie */
.diensten {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.diensten h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #333;
  font-weight: normal;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dienst-blok {
  background-color: white;
  padding: 3rem 2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  position: relative;
  text-align: center;
}

.dienst-icoon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #CDB1D4;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dienst-icoon img {
  width: 80px;
  height: 80px;
}

.dienst-blok h3 {
  margin-top: 2.5rem;
  color: #7e5c93;
  font-size: 1.25rem;
}

.dienst-blok p {
  color: #555;
  margin-bottom: 1rem;
}

.lees-meer {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: #CDB1D4;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.lees-meer:hover {
  background-color: #aa92b4;
}

.over-kraammarkt {
  position: relative;
  color: white;
  padding: 5rem 2rem;
  background: url('/afbeeldingen/achtergrond.png') center center / cover no-repeat;
  z-index: 1;
  overflow: hidden;
}

.over-kraammarkt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.16); 
  z-index: 2;
}

.over-kraammarkt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.over-kraammarkt-tekst {
  flex: 1 1 500px;
}

.over-kraammarkt-tekst h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.over-kraammarkt-tekst p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.over-kraammarkt-afbeelding {
  flex: 1 1 400px;
  text-align: center;
}

.over-kraammarkt-afbeelding img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    padding: 1rem 2rem;
  }

  .menu-icon {
    display: block;
  }

  .over-kraammarkt-container {
    flex-direction: column;
    text-align: center;
  }

  .over-kraammarkt-tekst,
  .over-kraammarkt-afbeelding {
    flex: 1 1 100%;
  }

  .hero-content {
    max-width: 90%;
  }
}
