
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(.45,.2,.25,1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  --gold: #C7A24B;        /* Goud uit logo */
  --offwhite: #F4F1EC;    /* Zachte ivoorwit */
  --midnight: #191E28;    /* Diep donkerblauw/zwart */
  --deepblue: #222836;    /* Lichtere navy */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--midnight);
  color: var(--offwhite);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* HEADER */
header {
  background: var(--midnight);
  color: var(--gold);
  padding: 24px 0 12px 0;
  box-shadow: 0 2px 24px rgba(25,30,40,0.10);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 80px;  /* Maak het logo echt groot */
  border-radius: 1.2rem;
  background: var(--offwhite);
  box-shadow: 0 4px 32px rgba(199,162,75,0.14);
  padding: 8px;
  border: 2.5px solid var(--gold);
  margin-right: 10px;
}

.logo-text {
  color: var(--gold);
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  margin-top: 4px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--offwhite);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cta {
  background: var(--gold);
  color: var(--midnight);
  border: none;
  border-radius: 2rem;
  padding: 10px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.03rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(199,162,75,0.12);
  transition: background 0.2s, color 0.2s;
  margin-left: 18px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
}
.cta:hover {
  background: var(--offwhite);
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: 0 0 18px 0 var(--gold), 0 2px 16px rgba(199,162,75,0.12);
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}

/* MAIN LAYOUT */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 16px 0 16px;
}

section {
  margin-bottom: 62px;
  background: transparent;
  border-radius: 1.5rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 1px;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; margin-bottom: 0.8em; }
h3 { font-size: 1.35rem; margin-bottom: 0.5em; color: var(--offwhite); }
h4 { color: var(--gold); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(115deg, var(--midnight) 64%, var(--deepblue) 100%);
  padding: 56px 40px 56px 32px;
  border-radius: 2.2rem;
  box-shadow: 0 4px 40px rgba(25,30,40,0.12);
  margin-bottom: 74px;
  border: 1.5px solid var(--deepblue);
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  color: var(--gold);
  font-size: 3.1rem;
  margin-bottom: 0.1em;
}

.hero-text p {
  font-size: 1.13rem;
  color: var(--offwhite);
}

.hero-image {
  text-align: center;
}

.hero-image img {
  width: 340px;
  max-width: 100%;
  border-radius: 1.6rem;
  box-shadow: 0 6px 38px rgba(199,162,75,0.10);
  background: var(--offwhite);
}

.section-title {
  color: var(--gold);
  margin-bottom: 22px;
  letter-spacing: 0.7px;
}

/* DIENSTEN */
.diensten-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 42px;
  margin-bottom: 20px;
}

.dienst-card {
  background: var(--deepblue);
  border: 1.5px solid var(--gold);
  border-radius: 1.6rem;
  box-shadow: 0 2px 18px rgba(199,162,75,0.07);
  padding: 28px 22px;
  transition: box-shadow 0.2s, border 0.2s;
}

.dienst-card h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}

.dienst-card ul {
  padding-left: 18px;
  margin-top: 0.3em;
  margin-bottom: 0;
  color: var(--offwhite);
}

.dienst-card ul li {
  margin-bottom: 0.35em;
}

/* KLANTENLIST */
.klanten-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
  font-size: 1.07rem;
}

.klanten-list li {
  background: var(--gold);
  color: var(--midnight);
  padding: 9px 22px;
  border-radius: 1.2rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(199,162,75,0.07);
}

/* CONTACT */
.contact-info {
  margin-bottom: 18px;
  color: var(--offwhite);
}

.contact-info a {
  color: var(--gold);
  text-decoration: none;
}

.contactform {
  background: var(--deepblue);
  border: 1.5px solid var(--gold);
  border-radius: 1.5rem;
  padding: 32px 20px;
  max-width: 470px;
  box-shadow: 0 4px 28px rgba(199,162,75,0.08);
  color: var(--offwhite);
}

.contactform label {
  display: block;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 5px;
  margin-top: 14px;
}

.contactform input,
.contactform textarea,
.contactform select {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--gold);
  border-radius: 1rem;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: var(--font-sans);
  background: var(--offwhite);
  color: var(--midnight);
}

.contactform textarea {
  min-height: 66px;
}

.contactform ::placeholder {
  color: var(--gold);
  opacity: 1;
  font-weight: 500;
}

.contactform button {
  background: var(--gold);
  color: var(--midnight);
  border: none;
  border-radius: 1.5rem;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 10px rgba(199,162,75,0.10);
  transition: background 0.2s, color 0.2s;
}

.contactform button:hover {
  background: var(--offwhite);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.contact-info strong,
.contact-info a {
  color: var(--gold);
}

.contact-info em {
  color: #888;
}

/* WERKEN BIJ */
.werkenbij-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 62px;
  background: transparent;
}

.werkenbij-content {
  flex: 1 1 340px;
  min-width: 300px;
}

.werkenbij-image {
  flex: 1 1 260px;
  min-width: 240px;
  text-align: center;
}

.werkenbij-image img {
  max-width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(199,162,75,0.10);
  background: var(--offwhite);
  padding: 6px;
}

/* FOOTER */
.footer {
  background: var(--deepblue);
  color: var(--gold);
  padding: 34px 0 20px 0;
  margin-top: 70px;
  text-align: center;
  font-size: 1.09rem;
  letter-spacing: 0.5px;
}
.footer a { color: var(--gold); text-decoration: none; }

/* CTA ROW */
.cta-row {
  margin: 44px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 12px;
  }
  .werkenbij-section { flex-direction: column; gap: 26px; }
  .logo-img { height: 64px; }
}
@media (max-width: 600px) {
  main { padding: 18px 2vw; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.4rem; }
  .nav { flex-direction: column; gap: 16px; }
  .logo-img { height: 56px; }
  .hero-image img { width: 100%; }
  .diensten-list { grid-template-columns: 1fr; }
  .werkenbij-image img { width: 100%; }
  .footer { font-size: 0.99rem; }
}

/* Fade-in pageload (staat al bij jou!) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(.45,.2,.25,1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA-knop luxe animatie (subtiele glow bij hover) */
.cta:hover {
  background: var(--offwhite);
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: 0 0 18px 0 var(--gold), 0 2px 16px rgba(199,162,75,0.12);
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}

/* Logo animatie bij hover (scale & rotate) */
.logo-img {
  transition: transform 0.24s cubic-bezier(.56,.03,.31,1.27), box-shadow 0.22s;
}
.logo-img:hover {
  transform: scale(1.09) rotate(-2deg);
  box-shadow: 0 8px 36px 0 var(--gold), 0 2px 24px rgba(199,162,75,0.15);
}

/* Dienst-card animatie (zoom en schaduw bij hover) */
.dienst-card {
  transition: transform 0.21s cubic-bezier(.41,.2,.55,1.02), box-shadow 0.21s;
}
.dienst-card:hover {
  transform: scale(1.04) translateY(-7px);
  box-shadow: 0 4px 36px 0 var(--gold), 0 4px 28px rgba(199,162,75,0.16);
  border-color: var(--gold);
}
