/* Algemene reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #111;
    color: #f0f0f0;
    line-height: 1.6;
}












/* ===== Vars & global scroll offset ===== */
:root{
  --nav-h: 96px;
  --nav-pad-x: 4rem;
}
html{ scroll-padding-top: var(--nav-h); scroll-behavior: smooth; }
section[id], [id]{ scroll-margin-top: var(--nav-h); }
html,body{ margin:0 }
body{ padding-top: var(--nav-h); }

/* ===== NAV (desktop) ===== */
.site-nav{
  position: fixed; top:0; left:0; width:100%;
  display:grid; grid-template-columns:auto 1fr auto; align-items:center;
  column-gap: 1.25rem;
  padding:.75rem var(--nav-pad-x);
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
  border-bottom:2px solid rgba(255,255,255,.1);
  z-index:999;
}
.site-nav .logo img{ height:80px; display:block; filter:brightness(0) invert(1); }

/* Menu desktop (midden) */
.site-nav .menu{
  list-style:none; margin:0; padding:0;
  display:flex; gap:2rem; justify-content:center; align-items:center;
}
.site-nav .menu a{
  color:#fff; text-decoration:none; font-weight:600; font-size:1rem;
  letter-spacing:.05em; transition:opacity .25s ease;
}
.site-nav .menu a:hover{ opacity:.85 }

/* Verberg CONTACT in desktop-rijtje */
.site-nav .menu .menu-contact{ display:none; }

/* Contact knop rechts (desktop) */
.site-nav .contact-btn{
  padding:.6rem 1.5rem; border-radius:999px;
  background: rgba(255,255,255,.1); color:#fff; text-decoration:none;
  border:1px solid rgba(255,255,255,.3); font-size:.9rem; font-weight:700;
  backdrop-filter: blur(6px); transition: all .25s ease;
}
.site-nav .contact-btn:hover{ background: rgba(255,255,255,.2); color:#f5d263; }

/* Hamburger (verborgen op desktop) */
.nav-toggle{
  display:none; width:44px; height:44px; border:0; background:transparent;
  cursor:pointer; align-items:center; justify-content:center; padding:0; outline:none;
  z-index:1001; /* boven overlay */
}
.nav-toggle span{
  display:block; width:24px; height:2px; background:#fff; margin:4px 0;
  transition: transform .25s, opacity .25s;
}

/* ===== Tablet & Mobile ===== */
@media (max-width: 1200px){
  :root{ --nav-pad-x: 2rem; }
}

@media (max-width: 992px){
  :root{ --nav-h: 72px; }
  body{ padding-top: var(--nav-h); }

  /* layout: logo | ruimte | hamburger */
  .site-nav{ grid-template-columns:auto 1fr auto; }
  .nav-toggle{ display:flex; grid-column:3; justify-self:end; }

  /* Desktop CTA verbergen op mobiel */
  .site-nav .contact-btn{ display:none; }

  /* Overlay menu (glassy), items lager gecentreerd */
  .site-nav .menu{
  position: fixed;
  inset: 0;
  z-index: 1000;
  
  /* Donkerdere glassy overlay */
  background: rgba(0,0,0,0.75);     /* was 0.65 */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;

  min-height: 100vh;
  /* iets hoger (van ~25vh naar 15vh) */
  padding: clamp(12vh, 18vh, 20vh) 1.25rem 2rem;
  margin: 0;

  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .25s ease;
  overflow: hidden;
}

  .site-nav.open .menu{
    transform: translateY(0);
    opacity: 1; pointer-events: auto;
  }

  /* Menu-items mobiel */
  .site-nav .menu a{
    font-size: 1.35rem; font-weight: 700; text-align:center; color:#fff;
  }

  /* CONTACT tonen in overlay */
  .site-nav .menu .menu-contact{ display:block; }
}

/* Hamburger -> kruisje animatie */
.site-nav.open .nav-toggle span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.site-nav.open .nav-toggle span:nth-child(2){ opacity:0; }
.site-nav.open .nav-toggle span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Body lock wanneer overlay open is (optioneel) */
.menu-open{ overflow:hidden; }





















/* ---------------- HERO ---------------- */
.hero {
    position: relative;
    height: 100vh; /* <-- zoals jij wil */
    background: url("hero2.png") center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}


.hero-text {
    z-index: 1;
    padding: 2rem;
    backdrop-filter: blur(2px);
    border-radius: 122px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-text .btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.hero-text .btn-primary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #f5d263;
}

/* ---------------- FEATURED SECTION ---------------- */
.featured-section {
    padding: 4rem 2rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1600px;
    width: 100%;
}

/* ---------------- FEATURED CARDS ---------------- */
.featured-card {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 16px;
    overflow: hidden;
    width: 430px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.featured-card:hover {
    transform: translateY(-6px);
}

.image-wrapper {
    height: 220px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 1.5rem;
    text-align: center;
}

.card-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f5d47d;
    text-transform: capitalize;
}

.card-info .price {
    font-size: 1rem;
    color: #eee;
    margin-bottom: 1.5rem;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

/* ---------------- BUTTONS ---------------- */
.btn-black, .btn-outline {
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-black {
    background: #0a0a0a;
    color: #fff;
    border: 1px solid #333;
}

.btn-black:hover {
    background: #1e1e1e;
}

.btn-outline {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: #000;
}

/* ---------------- BADGE ---------------- */
.labels {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.label-new {
    background-color: #d4af37;
    color: #000;
    padding: 4px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 390px) {
  html, body {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow-x: hidden; /* voorkomt horizontale scroll */
  }
  .hero {
    margin: 0 !important;
    width: 100% !important;
  }
}



/* Desktop hover gedrag */
@media (min-width: 1000px) {
  /* Als je hovert: highlight + tekst tonen */
  .dienst-item:hover {
    background: rgba(245, 210, 99, 0.1);
  }

  .dienst-item:hover p {
    display: block; /* tekst meteen tonen */
  }

  /* pijltje niet tonen op desktop */
  .dienst-item::after {
    content: none !important;
  }
}



















/* ---------------- FOOTER ---------------- */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 1rem 0;
}































.about-us-section {
  background-color: #111;  /* donker zwart */
  color: #f0d94e; /* goudkleurige tekst */
  text-align: center;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-us-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #f0d94e;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.about-icons {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.icon-item {
  flex: 0 0 220px; /* Zorg dat elk item dezelfde vaste breedte heeft */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #f0d94e;
  text-align: center;
}

.icon {
  width: 80px;
  height: 80px;
  color: #f0d94e; /* dezelfde kleur als je tekst */
}

.icon-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #f0d94e;
}

.icon-item p {
  font-size: 1rem;
  color: #eee;  /* iets lichter wit voor leesbaarheid */
  margin: 0;
  line-height: 1.4;
}








.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
}
.whatsapp-float img {
  width: 35px;
  height: 35px;
}
.whatsapp-float:hover {
  background-color: #20b955;
}