/* ALGEMEEN */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f4f4;
  color: #1c2a44;
  line-height: 1.6;
}

h1, h2, h3 {
  margin: 0 0 15px;
}

/* ANIMATIES */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }
.fade-in.delay-3 { animation-delay: 0.9s; }
.fade-in.delay-4 { animation-delay: 1.2s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADER en LOGO */
.centered-header {
  background: #1c2a44;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}

.logo-wrapper {
  display: inline-block;
}

.center-logo {
  height: 300px;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.center-logo:hover {
  transform: scale(1.05);
}

.logo-tekst {
  margin-top: 25px;
  color: white;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 5px;
}

/* NAVIGATIE */
.main-nav {
  background: #122033;
  padding: 30px 0;
  text-align: center;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav li {
  display: inline;
  margin: 0 30px;
  font-size: 1.2rem;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  display: inline-block;
  padding: 10px 15px;
  transition: transform 0.2s ease, color 0.3s ease;
}

.main-nav a:hover {
  transform: scale(1.5);
  color: #a3d4ff;
}

/* HERO met PARALLAX */
.hero {
  position: relative;
  background: url('hero-bg.jpg') center/cover fixed no-repeat;
  background-attachment: fixed; /* Dit zorgt voor meebewegen */
  color: white;
  text-align: center;
  padding: 120px 20px;
  border-radius: 12px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.hero h2, .hero p, .hero .cta-button {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero .cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background: #ffb703;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.hero .cta-button:hover {
  background: #ffcb47;
  transform: translateY(-2px);
}

/* DIENSTEN */
.diensten {
  padding: 60px 20px;
  background: white;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.diensten-blokken {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.dienst {
  background: #eef2f7;
  padding: 25px;
  border-radius: 12px;
  width: 280px;
}

.dienst a {
  text-decoration: none;
  color: #122033;
  display: block;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.dienst a:hover {
  background-color: #f5faff;
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* OVER ONS */
.over-ons {
  padding: 60px 20px;
  background: #1c2a44;
  color: white;
  text-align: center;
  border-radius: 12px;
}

/* CONTACT */
.contact {
  padding: 60px 20px;
  background: white;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

form#whatsappForm {
  display: flex;
  flex-direction: column;
  width: 300px;
}

form#whatsappForm input,
form#whatsappForm textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

form#whatsappForm button {
  background: #1c2a44;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

form#whatsappForm button:hover {
  background: #122033;
}


.contact-info {
  max-width: 300px;
  text-align: left;
}

/* FOOTER */
footer {
  background: #122033;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 12px 12px 0 0;
}
