@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #FAF7F2; color: #333; font-family: 'Raleway', sans-serif; line-height: 1.7; }
a { color: #00B4CC; text-decoration: none; }
img { max-width: 100%; display: block; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(250,247,242,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-logo img { height: 54px; width: auto; }
.main-nav { display: flex; gap: 2.5rem; }
.main-nav a { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #333; font-weight: 500; transition: color 0.2s; }
.main-nav a:hover, .main-nav a.active { color: #00B4CC; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: #333; margin: 5px 0; }

/* HERO */
.babs-hero {
  background: linear-gradient(135deg, #0A2A4A 0%, #0D3D6B 40%, #0A5A7A 70%, #007A8A 100%);
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 20px 180px; text-align: center;
  border-radius: 0 0 80px 80px;
}
.babs-hero::before {
  content: ""; position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,180,204,0.08) 0%, transparent 70%);
  top: -150px; right: -150px; border-radius: 50%; pointer-events: none;
}
.babs-hero::after {
  content: ""; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 130px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 130'%3E%3Cpath fill='%23FAF7F2' d='M0,65 C240,130 480,0 720,65 C960,130 1200,0 1440,65 L1440,130 L0,130 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover; z-index: 2;
}
.hero-glow {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,200,122,0.08) 0%, transparent 70%);
  bottom: 100px; left: -100px; border-radius: 50%; pointer-events: none;
}
.hero-logo {
  width: 200px; margin-bottom: 40px;
  animation: floatLogo 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0,180,204,0.4));
  position: relative; z-index: 3;
}
@keyframes floatLogo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-tagline { font-size: 12px; letter-spacing: 6px; text-transform: uppercase; color: rgba(0,180,204,0.9); margin-bottom: 20px; position: relative; z-index: 3; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(40px,6vw,70px); color: #fff; line-height: 1.2; margin-bottom: 25px; letter-spacing: 2px; position: relative; z-index: 3; }
.hero-sub { font-weight: 300; font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.9; max-width: 600px; margin: 0 auto 50px; position: relative; z-index: 3; }
.hero-btn { display: inline-block; padding: 16px 48px; border: 1px solid rgba(255,255,255,0.6); color: #fff; letter-spacing: 5px; text-transform: uppercase; font-size: 11px; transition: all 0.4s; position: relative; z-index: 3; }
.hero-btn:hover { background: rgba(0,180,204,0.2); border-color: #00B4CC; color: #00B4CC; }

/* WERK SECTIE */
.werk-sectie { background: #FAF7F2; padding: 100px 20px 130px; text-align: center; position: relative; }
.werk-sectie::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 100%; height: 80px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%230A2A4A' d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom; background-size: cover; }
.sectie-label { font-size: 11px; letter-spacing: 6px; text-transform: uppercase; color: #00B4CC; margin-bottom: 12px; display: block; }
.sectie-titel { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,52px); font-weight: 300; color: #0A2A4A; margin-bottom: 12px; letter-spacing: 2px; }
.sectie-sub { font-size: 15px; color: #999; font-weight: 300; margin-bottom: 50px; letter-spacing: 2px; }
.werk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; max-width: 1100px; margin: 0 auto 50px; padding: 0 20px; }
.werk-item { position: relative; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 20px; transition: transform 0.4s; }
.werk-item:hover { transform: translateY(-8px); }
.blob-wrap { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; position: relative; animation: blobMorph 8s ease-in-out infinite; }
.werk-item:nth-child(1) .blob-wrap { background: #E8C87A; border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; animation-delay: 0s; }
.werk-item:nth-child(2) .blob-wrap { background: #0A2A4A; border-radius: 40% 60% 70% 30%/40% 70% 30% 60%; animation-delay: -2s; }
.werk-item:nth-child(3) .blob-wrap { background: #F5D6C6; border-radius: 70% 30% 50% 50%/30% 50% 50% 70%; animation-delay: -4s; }
.werk-item:nth-child(4) .blob-wrap { background: #C4AB86; border-radius: 30% 70% 40% 60%/50% 40% 60% 50%; animation-delay: -1s; }
.werk-item:nth-child(5) .blob-wrap { background: #C8E6D4; border-radius: 50% 50% 30% 70%/60% 40% 60% 40%; animation-delay: -3s; }
.werk-item:nth-child(6) .blob-wrap { background: #6BB8CC; border-radius: 40% 60% 60% 40%/70% 30% 70% 30%; animation-delay: -5s; }
@keyframes blobMorph { 0%,100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; } 25% { border-radius: 30% 70% 70% 30%/30% 30% 70% 70%; } 50% { border-radius: 50% 50% 30% 70%/50% 70% 30% 50%; } 75% { border-radius: 70% 30% 50% 50%/40% 60% 40% 60%; } }
.blob-wrap img { width: 85%; height: 85%; object-fit: cover; border-radius: inherit; transition: transform 0.6s, filter 0.5s; filter: saturate(0.9); position: relative; z-index: 1; }
.werk-item:hover .blob-wrap img { transform: scale(1.06); filter: saturate(1.25); }
.werk-overlay { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 15px; z-index: 2; }
.werk-item:hover .werk-overlay { opacity: 1; }
.werk-overlay span { color: white; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; background: rgba(10,42,74,0.7); padding: 6px 14px; border-radius: 20px; }
.galerij-btn { display: inline-block; padding: 16px 48px; background: #0A2A4A; color: #fff; letter-spacing: 5px; text-transform: uppercase; font-size: 11px; transition: background 0.3s; }
.galerij-btn:hover { background: #00B4CC; }

/* OVER BABS */
.over-sectie { background: linear-gradient(135deg, #0A2A4A 0%, #0D3D6B 100%); padding: 150px 20px; position: relative; overflow: hidden; }
.over-sectie::before { content: ""; position: absolute; top: -2px; left: 0; width: 100%; height: 100px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FAF7F2' d='M0,50 C360,100 1080,0 1440,50 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top; background-size: cover; z-index: 2; }
.over-sectie::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 100%; height: 100px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23FAF7F2' d='M0,50 C360,0 1080,100 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom; background-size: cover; z-index: 2; }
.over-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 3; }
.over-blob { width: 100%; position: relative; }
.over-blob img { width: 100%; height: auto; object-fit: cover; filter: saturate(1.1); display: block; }
.over-blob::after { content: ""; position: absolute; top: 15px; left: 15px; right: -15px; bottom: -15px; border: 2px solid rgba(0,180,204,0.35); z-index: -1; }
.over-babs-portret { float: right; width: 200px; margin: 0 0 20px 30px; }
.over-babs-portret img { width: 100%; height: auto; display: block; }
.over-tekst .sectie-label { color: #E8C87A; }
.over-tekst .sectie-titel { color: #fff; }
.over-tekst p { font-size: 16px; line-height: 1.9; color: rgba(255,255,255,0.72); margin-bottom: 18px; font-weight: 300; }
.over-btn { display: inline-block; margin-top: 20px; padding: 15px 44px; border: 1px solid rgba(0,180,204,0.5); color: #00B4CC; letter-spacing: 4px; text-transform: uppercase; font-size: 11px; transition: all 0.3s; }
.over-btn:hover { background: rgba(0,180,204,0.12); border-color: #00B4CC; }

/* DIENSTEN */
.diensten-sectie { background: #FAF7F2; padding: 130px 20px; text-align: center; position: relative; }
.diensten-sectie::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 100%; height: 80px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23E8705A' d='M0,30 C480,80 960,0 1440,30 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom; background-size: cover; }
.diensten-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; max-width: 1200px; margin: 60px auto 0; }
.dienst-kaart { background: white; padding: 50px 28px; border-bottom: 3px solid transparent; transition: all 0.4s; text-align: left; }
.dienst-kaart:hover { border-bottom-color: #00B4CC; transform: translateY(-8px); box-shadow: 0 25px 50px rgba(10,42,74,0.1); }
.dienst-icon { font-size: 34px; margin-bottom: 20px; display: block; }
.dienst-naam { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: #0A2A4A; font-weight: 600; margin-bottom: 14px; display: block; }
.dienst-tekst { font-size: 14px; line-height: 1.8; color: #888; font-weight: 300; }

/* QUOTE / CTA */
.quote-sectie { background: linear-gradient(135deg, #E8705A 0%, #D4614C 50%, #C96B52 100%); padding: 130px 20px; text-align: center; position: relative; overflow: hidden; }
.quote-sectie::before { content: ""; position: absolute; top: -2px; left: 0; width: 100%; height: 80px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FAF7F2' d='M0,30 C480,80 960,0 1440,30 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top; background-size: cover; }
.quote-sectie::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 100%; height: 80px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FAF7F2' d='M0,40 C360,0 1080,80 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom; background-size: cover; }
.quote-logo { width: 100px; margin: 0 auto 40px; display: block; filter: brightness(0) invert(1) opacity(0.85); animation: floatLogo 5s ease-in-out infinite; }
.quote-tekst { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,3vw,36px); font-weight: 300; font-style: italic; color: #fff; line-height: 1.6; max-width: 800px; margin: 0 auto 18px; letter-spacing: 1px; }
.quote-sub { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 50px; display: block; }
.contact-btn { display: inline-block; padding: 18px 56px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.6); color: #fff; letter-spacing: 5px; text-transform: uppercase; font-size: 11px; transition: all 0.3s; }
.contact-btn:hover { background: rgba(255,255,255,0.25); }

/* GALERIJ */
.galerij-grid { columns: 3; column-gap: 16px; max-width: 1200px; margin: 3rem auto; padding: 0 20px; }
.galerij-grid figure { break-inside: avoid; margin-bottom: 16px; cursor: pointer; overflow: hidden; }
.galerij-grid figure img { width: 100%; display: block; transition: transform 0.5s, filter 0.4s; filter: saturate(0.9); }
.galerij-grid figure:hover img { transform: scale(1.04); filter: saturate(1.3); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(10,42,74,0.95); z-index: 1000; align-items: center; justify-content: center; }
.lightbox:target { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; color: white; font-size: 2rem; text-decoration: none; opacity: 0.8; }
.lightbox-close:hover { opacity: 1; }

/* PAGE HEADER */
.page-header { background: linear-gradient(135deg, #0A2A4A, #0D3D6B); padding: 6rem 2rem 5rem; position: relative; overflow: hidden; }
.page-header::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 100%; height: 80px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FAF7F2' d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom; background-size: cover; }
.page-header .sectie-label { color: #E8C87A; }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,5vw,4rem); font-weight: 300; color: white; letter-spacing: 3px; margin-top: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.7); margin-top: 1rem; font-size: 1.05rem; max-width: 600px; font-weight: 300; }

/* CONTACT FORM */
.contact-form { max-width: 700px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 14px 18px; border: 1px solid #ddd; background: white; font-family: 'Raleway', sans-serif; font-size: 14px; margin-bottom: 16px; border-radius: 0; transition: border-color 0.2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #00B4CC; outline: none; }
.contact-form textarea { height: 160px; resize: vertical; }
.contact-form button { padding: 16px 56px; background: #0A2A4A; color: white; border: none; letter-spacing: 4px; text-transform: uppercase; font-size: 11px; font-family: 'Raleway', sans-serif; cursor: pointer; transition: background 0.3s; }
.contact-form button:hover { background: #00B4CC; }

/* FOOTER */
footer { background: #0A2A4A; color: rgba(255,255,255,0.5); padding: 3rem 2rem 2rem; text-align: center; }
footer img { height: 50px; margin: 0 auto 1.5rem; filter: brightness(0) invert(1) opacity(0.7); }
footer p { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.5rem; }
footer a { color: #00B4CC; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .werk-grid { grid-template-columns: repeat(2,1fr); }
  .diensten-grid { grid-template-columns: repeat(2,1fr); }
  .over-inner { grid-template-columns: 1fr; gap: 40px; }
  .galerij-grid { columns: 2; }
}
@media (max-width: 600px) {
  .diensten-grid { grid-template-columns: 1fr; }
  .galerij-grid { columns: 1; }
  .main-nav { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: rgba(250,247,242,0.98); padding: 1rem 2rem; border-top: 1px solid #eee; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .site-header { flex-wrap: wrap; position: relative; }
}


/* TAALWISSELAAR */
.lang-switch { display: flex; align-items: center; gap: 0.4rem; margin-left: 1.5rem; }
.lang-switch button { background: none; border: none; cursor: pointer; font-size: 1.4rem; padding: 2px 4px; opacity: 0.45; transition: opacity 0.2s, transform 0.2s; line-height: 1; }
.lang-switch button:hover { opacity: 0.8; transform: scale(1.15); }
.lang-switch button.active { opacity: 1; transform: scale(1.1); }
