/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #7ce2fe;
  --color-primary-dark: #3bbce8;
  --color-text: #1a1a1a;
  --color-muted: #555;
  --color-bg: #fdf9f6;
  --color-bg-alt: #f3ede8;
  --color-white: #ffffff;


  --font-heading: 'Bricolage Grotesque', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Mulish', sans-serif;
  
 /*  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif; */

  --radius: 8px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 0.6rem;
}

.section-desc {
  max-width: 680px;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

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

.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text);
}

.btn-secondary {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn-group.centered {
  justify-content: center;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #ece6df;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 68px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.main-nav a:hover {
  color: var(--color-text);
}

.header-inner .btn {
  margin-left: 1rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

/* ── Hero ── */
.hero {
  min-height: 92vh;
  background-size: cover;
  background-position: 50% 45%;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.12) 70%
  );
}

.hero-content {
  position: relative;
  color: var(--color-white);
  max-width: 680px;
}

.hero-content .kicker {
  color: var(--color-primary);
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 520px;
}

.hero-content .btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}

/* ── Sections ── */
.section {
  padding: 20px 0;
}

.section:nth-child(even) {
  background: var(--color-bg-alt);
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-card img {
  height: 200px;
}

.feature-card h3,
.feature-card p {
  padding: 0 1.25rem;
}

.feature-card h3 {
  padding-top: 1rem;
}

.feature-card p {
  padding-bottom: 1.25rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-grid img {
  height: 240px;
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* ── About ── */
.about .container p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonial-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.testimonial-card strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-card span {
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* ── CTA ── */
.cta {
  background: var(--color-primary) !important;
}

.cta h2,
.cta p,
.cta .kicker {
  color: var(--color-text);
}

.cta .btn-secondary {
  border-color: var(--color-text);
}

/* ── Footer ── */
.site-footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a,
.footer-social a {
  font-size: 0.88rem;
  color: #aaa;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-social a:hover {
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .main-nav,
  .header-inner .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #ece6df;
    padding: 1rem 24px;
    gap: 1rem;
    z-index: 99;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
background:#ffffff;
/* background:#25D366; whatsapp groen */
/* background:#3bbce8; blauw */
width:50px;
height:50px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:10px;
}

.whatsapp-float a{
color:white;
text-decoration:none;
}


.geen-spam {
    unicode-bidi: bidi-override;
    direction: rtl;
}


/*----------------------*/
/* css uit contact.html */

        /* ── Contact page extras ── */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .contact-info h2 {
            margin-bottom: 1rem;
        }

        .contact-info p {
            color: var(--color-muted);
            margin-bottom: 0.6rem;
            font-size: 0.97rem;
        }

        .contact-info a {
            color: var(--color-primary-dark);
        }

        .contact-form-box {
            background: var(--color-white);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
        }

        .contact-form-box h3 {
            margin-bottom: 0.4rem;
        }

        .contact-form-box p {
            color: var(--color-muted);
            font-size: 0.92rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        .form-group label {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            margin-bottom: 0.35rem;
            color: var(--color-text);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.65rem 0.9rem;
            border: 1.5px solid #ddd;
            border-radius: var(--radius);
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--color-text);
            background: #fafafa;
            transition: border-color var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-primary-dark);
            background: #fff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Honeypot field - hides from humans, catches bots */
        .hidden-field {
            display: none;
        }

        .form-success {
            display: none;
            background: #e8f8e8;
            border: 1px solid #b2d8b2;
            border-radius: var(--radius);
            padding: 1.2rem 1.5rem;
            margin-top: 1rem;
            text-align: center;
        }

        .form-success h4 {
            color: #2a7a2a;
            margin-bottom: 0.3rem;
        }

        .form-success p {
            color: #3a6e3a;
            font-size: 0.9rem;
            margin: 0;
        }

        @media (max-width: 768px) {
            .contact-layout {
                grid-template-columns: 1fr;
            }
        }
		
		
/* ── Telefoon Beveiliging Styling ── */
.phone-masked {
    background: #eee;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--color-muted);
}

.phone-revealed {
    background: transparent;
    font-family: var(--font-body);
/*    font-weight: bold; */
    color: var(--color-primary-dark);
    animation: fadeIn 0.5s ease;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}