:root{ --header-bg: url('../images/headers/home.jpg'); }
*{ box-sizing: border-box; }
body{ margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:#eee; background:#0f0f0f; }
a{ color:#ffd84d; text-decoration:none; }
/* Header – enkelvoudige, schone versie */
header{
  background-image: var(--header-bg);
  background-size: cover;
  background-position: center 10%;
  position: relative;
  min-height: 360px;
  padding: 32px 16px 24px;
}

/* Lichtere overlay voor betere zichtbaarheid van de foto */
header::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.42),
    rgba(0,0,0,.28) 40%,
    rgba(0,0,0,.52)
  );
  pointer-events:none;
}
/* Optioneel: dunne witte film om nóg iets op te lichten */
header::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.04); /* 0.08–0.18 naar smaak */
  pointer-events:none;
}

/* Zorg dat content boven de overlays staat */
header > *{ position: relative; z-index: 1; }



h1{ text-align:center; margin:0 0 6px; }
header p{ text-align:center; margin:0 0 10px; color:#d9d9d9; }
.contact-icons{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.contact-icons a{ background:#1a1a1a; border:1px solid rgba(255,216,77,.35); padding:6px 10px; border-radius:999px; }
.lang-switch{ position:absolute; right:12px; top:12px; display:flex; gap:8px; z-index:2; }
.lang-switch a{ color:#9f9f9f; font-size:.9rem; }
.content{ max-width:1100px; margin:16px auto; padding:0 16px; }
.text-banner{ max-width:1100px; margin: 8px auto 0; padding: 0 16px; }
.text-banner .bar{
  background: #111;
  border:1px solid rgba(255,216,77,.35);
  border-radius:12px;
  padding:8px 12px;
  color:#cfcfcf;
  text-align: center; /* ✅ tekst centreren */
}
footer.site-footer{ background:transparent; border:0; padding: 40px 16px; }
.footer-wrap{ max-width:1100px; margin:0 auto; }
.footer-card{ background:#111; border:1px solid rgba(255,216,77,.55); color:#eaeaea; border-radius:18px; padding:20px; text-align:center; box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,216,77,.15); }
.footer-card .sep{ display:block; height:1px; margin:.9rem auto; max-width:520px; background:linear-gradient(90deg, rgba(255,216,77,0), rgba(255,216,77,.35), rgba(255,216,77,0)); opacity:.7; }
.grid-home{ display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:16px; margin-top:12px; }
.card-link{ display:block; background:#111; border:1px solid rgba(255,216,77,.35); border-radius:14px; padding:16px; box-shadow:0 4px 16px rgba(0,0,0,.25); color:inherit; }
.card-link h3{ margin:0 0 .25rem; }
.card-link p{ margin:.25rem 0 0; color:#cfcfcf; }
.text-banner + .content, header + .content{ margin-top: 16px; }

/* PC Builds gallery */
section#pc-builds .image-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 12px;
  align-items:start;
}
section#pc-builds .image-grid figure{
  background:#111;
  border:1px solid rgba(255,216,77,.35);
  border-radius:10px;
  overflow:hidden;
  padding:8px;
}
section#pc-builds .image-grid img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}
section#pc-builds .image-grid figcaption{
  margin-top:8px;
  color:#cfcfcf;
  font-size:.95rem;
}

/* Contact form styling */
.contact-frame form{
  max-width:720px; margin:8px auto 0;
  display:grid; grid-template-columns:1fr; gap:10px;
}
.contact-frame input, .contact-frame select, .contact-frame textarea{
  background:#0f0f0f; border:1px solid rgba(255,216,77,.35);
  color:#eaeaea; border-radius:8px; padding:10px;
}
.contact-frame button{
  background:#1a1a1a; border:1px solid rgba(255,216,77,.55);
  color:#ffd84d; padding:10px 14px; border-radius:10px; cursor:pointer;
}
.contact-frame button:hover{ filter:brightness(1.1); 
}
.contact-intro {
  text-align: center;
}
#contact {
  text-align: center;
}


/* Meer verticale ruimte en prettiger spacing in de header */
header .contact-icons { gap:14px; }
header .contact-icons + .contact-icons { margin-top:14px; }
header h1 { margin-bottom:8px; }
header p  { margin:6px 0 14px; }
header .contact-icons a { padding:8px 14px; }

/* Header: logo links, tekst en knoppen rechts */
.header-flex{
  max-width:1100px;
  margin:0 auto;
  padding:8px 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
}

/* LOGO – verplaatsing werkt nu (px bij beide waarden) */
.brand{
  width:96px;
  height:auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  border-radius:12px;
  transform: translate(0px, -6px); /* 20px rechts, 30px omlaag – pas aan naar smaak */
}

.header-text{ text-align:center; }
.header-text .contact-icons + .contact-icons { margin-top:14px; }

/* Responsief */
@media (max-width: 720px){
  .header-flex{ flex-direction:column; gap:14px; }
  .brand{ width:78px; transform:none; } /* reset op mobiel voor nette stapeling */
}
/* Taal-switch met vlaggen */
.lang-switch{
  position:fixed;
  right:12px;
  top:12px;
  display:flex;
  gap:8px;
  z-index:10;
}

.lang-switch a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border-radius:50%;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,216,77,.35);
  transition:0.15s ease;
}

.lang-switch a:hover{
  transform:translateY(-2px);
  background:rgba(0,0,0,.55);
}

.flag{
  width:50px;
  height:30px;
  border-radius:50%;
}

/* Active language outline */
.lang-switch a.active{
  box-shadow:0 0 0 2px #ffd84d inset;
  pointer-events:none;
  opacity:.85;
}
/* === TICKER (clean) === */
.ticker{
  --height: 42px;
  --speed: 28s;                 /* lager = sneller, hoger = langzamer */
  position: relative;
  width: 100%;                  /* pagina-breed */
  overflow: hidden;             /* verberg buitenrand */
  background: #111;
  border-top: 1px solid rgba(255,216,77,.35);
  border-bottom: 1px solid rgba(255,216,77,.35);
}

.ticker__track{
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  height: var(--height);
  padding: 0 16px;
  will-change: transform;
  animation: ticker-move var(--speed) linear infinite;
}

.ticker__track > span{
  flex: 0 0 auto;
  color:#cfcfcf;
  font-size:.98rem;
}
.ticker__track strong{ color:#ffd84d; }

.ticker:hover .ticker__track{ animation-play-state: paused; }

@keyframes ticker-move{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--distance, 50%))); } /* JS zet --distance */
}

@media (prefers-reduced-motion: reduce){
  .ticker__track{ animation: none; }
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border: 2px solid rgba(255,216,77,.5);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,.7);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.2rem;
  color: #ffd84d;
  cursor: pointer;
  font-weight: bold;
}
.lightbox .close:hover { color: #fff; cursor: pointer; }

/* Hover scaling */
.lightbox-gallery figure img {
  cursor: zoom-in;
  transition: transform .25s ease;
}
.lightbox-gallery figure img:hover {
  transform: scale(1.04);
}
.lightbox.open{
  display: flex;
}

/* Titel gecentreerd + geel lijntje */
.section-title{
  text-align:center;
  color:#ffd84d;
  margin: 4px 0 10px;
}
.section-title::after{
  content:"";
  display:block;
  width:140px;
  height:3px;
  margin:8px auto 0;
  background: linear-gradient(90deg, rgba(255,216,77,0), #ffd84d, rgba(255,216,77,0));
  opacity:.9;
  border-radius:3px;
}

/* Tekstblok gecentreerd met prettige leesbreedte */
.about-prose{
  max-width: 980px;          /* breedte van de alinea’s */
  margin: 0 auto;            /* centreert in de pagina */
  line-height: 1.65;
  font-size: 1rem;
  color: #eaeaea;
}

/* Foto links met ronde vorm en gele ring; tekst loopt eromheen */
.about-photo{
  float: left;
  width: 220px;              /* pas evt. aan (180–260) */
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffd84d;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  margin: 6px 20px 10px 0;

  /* mooie tekstomloop rond de cirkel */
  shape-outside: circle(50%);
  clip-path: circle(50%);
}

/* Ruimte tussen alinea’s iets compacter */
.about-prose p{ margin: 0 0 .9rem; }

/* Responsief: foto boven de tekst met centreer */
@media (max-width: 720px){
  .about-photo{
    float:none;
    display:block;
    margin: 0 auto 12px;
    shape-outside: auto;
    clip-path: none;          /* mag blijven als je wilt, maar auto is rustiger */
    border-width: 2px;
    width: 160px;
  }
}
/* Kaarten met achtergrondafbeelding */
.card-bg{
  position: relative;
  isolation: isolate;                 /* eigen stacking context */
  color: #fff;                        /* lichte tekst op foto */
  min-height: 160px;                  /* meer “tile”-gevoel */
  overflow: hidden;
}

.card-bg::before{
  content: "";
  position: absolute; inset: 0;
  background: var(--bg) center/cover no-repeat, #111; /* fallback */
  z-index: -2;
  transform: scale(1.04);
  transition: transform .35s ease, filter .35s ease;
}

.card-bg::after{
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  /* donkere overlay voor leesbaarheid */
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
  /* als je liever boven donker/onder lichter:
     background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25)); */
}

.card-bg h3, .card-bg p{
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
}

.card-bg:hover::before{
  transform: scale(1.08);             /* subtiele zoom on hover */
  filter: brightness(1.02);
}
/* Testimonials */
.testimonials h2{
  text-align:center;
  margin-bottom:10px;
  color:#ffd84d;
}
.testimonials h2::after{
  content:"";
  display:block;
  width:140px; height:3px; margin:8px auto 0;
  background:linear-gradient(90deg, rgba(255,216,77,0), #ffd84d, rgba(255,216,77,0));
  border-radius:3px; opacity:.9;
}

.reviews-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:16px; margin-top:12px;
}
.review-card{
  background:#111; color:#eaeaea;
  border:1px solid rgba(255,216,77,.35);
  border-radius:14px; padding:14px;
  box-shadow:0 4px 16px rgba(0,0,0,.25);
}

.review-head{
  display:flex; align-items:center; gap:10px; margin-bottom:8px;
}
.avatar{
  width:42px; height:42px; flex:0 0 42px;
  border-radius:50%;
  border:2px solid #ffd84d;
  object-fit:cover;
  display:flex; align-items:center; justify-content:center;
  background:#0f0f0f; color:#ffd84d; font-weight:700;
}
/* Stars */
.stars{
  --s: 18px;                 /* star size */
  line-height:1; display:inline-block; position:relative; margin-top:3px;
}
.stars::before, .stars::after{
  content:"★★★★★";
  letter-spacing:2px; font-size:var(--s);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
.stars::before{ color:#555; }                 /* achtergrond sterren */
.stars::after{
  color:#ffd84d; position:absolute; left:0; top:0;
  width: calc(var(--val, 5) / 5 * 100%); overflow:hidden;
}

/* Body & footer */
.review-card blockquote{ margin:0 0 .7rem; color:#ddd; }
.review-foot{ font-size:.9rem; color:#bdbdbd; }
.reviews-cta{ text-align:center; margin-top:10px; }
.about-list {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
/*tekst home page met bolletje en gecentreerd*/
.about-list p {
  margin: 8px 0;
  color: #eaeaea;
  font-size: 1.02rem;
}

.about-list .dot {
  color: #ffd84d;
  padding: 0 6px;
  font-weight: bold;
}
/*ruimte tussen de scties*/
.content {
  padding: 30px 16px;
  margin: 15px auto;
}
section.content + section.content::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,216,77,.4), transparent);
  margin: 40px 0;
}
/*PAGINA BREEDE AFBEELDING*/
/* 1) Site-brede achtergrondafbeelding */
:root{
  --site-bg: url('../images/backgrounds/home.webp'); /* pas pad/naam aan */
}

html, body{
  height: 100%;
}

body{
  /* afbeelding over de hele site */
  background: var(--site-bg) center / cover no-repeat fixed #0f0f0f;
  /* 'fixed' geeft een subtiel parallax-gevoel; wil je dat niet, haal 'fixed' weg */
  position: relative;
}

/* 2) Donkere overlay voor leesbaarheid */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 50% 10%, rgba(0,0,0,.35), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.65));
  pointer-events: none;
  z-index: -1;
}

/* 3) Kaarten/tegels iets ondoorzichtig maken voor contrast */
.card-link,
.footer-card,
section#pc-builds .image-grid figure,
.text-banner .bar,
.review-card,
.contact-frame input,
.contact-frame select,
.contact-frame textarea {
  background-color: rgba(17,17,17,.92); /* was #111; net wat transparanter */
  backdrop-filter: saturate(110%) blur(0.5px);
}
/* Header met eigen achtergrond (NIET transparant) */
header{
  background-image: var(--header-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 360px;
  padding: 32px 16px 24px;
}

header > *{ position: relative; z-index: 1; }


/* zorg dat header-content vóór overlay staat */
header > *{ position:relative; z-index:1; 
}
/* Center logo + title */
.title-center{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* Logo centreren en mooie grootte */
.brand{
  width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  border-radius: 12px;
}
.brand{
  margin-top: -10px; /* laat het iets 'poppen' in het beeld */
}
.gallery-cta {
  text-align: center;
  margin: 28px 0 10px;
}

.gold-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,216,77,.55);
  color: #ffd84d;
  font-weight: 600;
  text-decoration: none;
  background: rgba(17,17,17,.85);
  box-shadow: 0 4px 18px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,216,77,.25);
  transition: all .2s ease;
}

.gold-btn:hover {
  border-color: #ffd84d;
  color: #fff;
  box-shadow: 
    0 0 10px rgba(255,216,77,.45),
    0 0 18px rgba(255,216,77,.35),
    inset 0 0 0 1px rgba(255,216,77,.55);
  transform: translateY(-2px);
}
.gallery-cta{ text-align:center; margin:28px 0 10px; }
.gold-btn{
  display:inline-block; padding:12px 22px; border-radius:10px;
  border:1px solid rgba(255,216,77,.55); color:#ffd84d; font-weight:600;
  background:rgba(17,17,17,.85); text-decoration:none;
  box-shadow:0 4px 18px rgba(0,0,0,.4), inset 0 0 0 1px rgba(255,216,77,.25);
  transition:all .2s ease;
}
.gold-btn:hover{
  border-color:#ffd84d; color:#fff;
  box-shadow:0 0 10px rgba(255,216,77,.45), 0 0 18px rgba(255,216,77,.35), inset 0 0 0 1px rgba(255,216,77,.55);
  transform:translateY(-2px);
}
/* PASTE IN YOUR CSS */
:root {
  --link-color: #0ea5e9;      /* cyan-500 vibe */
  --glow-color: rgba(14,165,233,0.55);
  --btn-bg: #0ea5e9;
  --btn-text: #0b1220;
}

/* 1) Link-stijl */
.glow-link {
  color: var(--link-color);
  text-decoration: none;
  position: relative;
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
  will-change: transform, text-shadow;
}
.glow-link:hover,
.glow-link:focus-visible {
  color: #22d3ee; /* iets lichter */
  text-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
  transform: translateY(-1px); /* subtiel “naar voren” */
  outline: none;
}
.glow-link:focus-visible {
  /* duidelijke focus voor accessibility */
  box-shadow: 0 0 0 3px rgba(34, 211, 238, .35);
  border-radius: 4px;
}

/* 2) Knop-stijl */
.glow-btn {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: .7rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 6px 18px rgba(14,165,233,.25);
  will-change: transform, box-shadow, filter;
}
.glow-btn:hover,
.glow-btn:focus-visible {
  transform: translateY(-2px) scale(1.02);        /* “komt naar voren” */
  box-shadow: 0 10px 28px rgba(14,165,233,.35), 0 0 20px var(--glow-color); /* gloed */
  filter: brightness(1.08);
  outline: none;
}
.glow-btn:active {
  transform: translateY(0) scale(0.995);
}
.glow-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(34,211,238,.35), 0 10px 28px rgba(14,165,233,.35);
}
.np-whatsapp {
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
}

.np-whatsapp-inner {
  max-width: 720px;
  width: 100%;
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  background: transparent;
  color: #f9fafb;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.np-whatsapp-inner h2 {
  font-size: 1.8rem;
  margin: 0 0 1rem;
  letter-spacing: 0.03em;
}

.np-text {
  margin: 0.35rem 0;
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.95;
}

.np-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.8rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  background: #25d366; /* WhatsApp groen */
  color: #053114;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.np-whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  opacity: 0.96;
}

.np-whatsapp-icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.np-meta {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

@media (max-width: 600px) {
  .np-whatsapp-inner {
    padding: 2rem 1.5rem;
  }

  .np-whatsapp-inner h2 {
    font-size: 1.5rem;
  }
}
.wp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #25d366; /* WhatsApp-groen */
  color: #053114;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.wp-float:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0.95;
}

@media (max-width: 600px) {
  .wp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.3rem;
  }
}
.yellow-link {
  color: #f8d84a;     /* jouw gele kleur */
  font-size: 0.75em;  /* klein linkje */
  margin-left: 6px;
  text-decoration: none;
}

.yellow-link:hover {
  text-decoration: underline;
}
















