@charset "utf-8";
/*─────────────────────────────────────────────────────────────
  GLOBAL RESET & NO HORIZONTAL SCROLL
─────────────────────────────────────────────────────────────*/
html, body {
  margin: 0; padding: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #FAFAF5;
}

/* FONTS */
@font-face {
  font-family: 'Ink Free';
  src: url('/assets/fonts/InkFree.woff2') format('woff2'),
       url('/assets/fonts/InkFree.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* CONTAINER */
:root {
  --container-padding: 5vw;
  --container-max: 1440px;
  --transition-speed: 0.3s;
}
.container {
  width: calc(100% - var(--container-padding)*2);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ULTRA-WIDE */
@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

/* FOOTER */
#site-footer {
  background: #111;
  color: #eee;
  padding-top: 60px;
}
#site-footer a {
  color: #eee;
  text-decoration: none;
  transition: color var(--transition-speed);
}
#site-footer a:hover {
  text-decoration: underline;
}

/* structuur */
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-column {
  flex: 1;
}

/* contact-kolom */
.footer-contact h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.footer-contact address,
.footer-contact p {
  font-style: normal;
  margin-bottom: 1rem;
}

/* midden-kolom */
.footer-center {
  text-align: center;
}
.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: -30px;
  margin-left: -75px;
}
.footer-review img {
  vertical-align: middle;
  height: 1em;
}
.footer-review a {
  color: #e74c3c; /* opvallende linkkleur */
  word-break: break-all;
}

/* links-kolom */
.footer-links h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: right;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  text-align: right;
}
.footer-links ul li {
  margin-bottom: 0.75rem;
}

/* onderste balk */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.875rem;
}
.footer-privacy img {
  vertical-align: middle;
  height: 1em;
  margin-right: 0.5rem;
}

/* PRIVACY & COOKIES PAGE */
#policy-page {
  margin: 80px auto;
  padding-bottom: 80px;
}
#policy-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#policy-page h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
#policy-page p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
#policy-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
#policy-page a {
  color: #007acc;
  text-decoration: none;
  transition: color var(--transition-speed);
}
#policy-page a:hover {
  text-decoration: underline;
}

/* SERVICES */
.services {
  padding: 80px 0;
  text-align: center;
}
.services h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.service-items {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.service-item {
  aspect-ratio: 16/9;        
  max-width: 300px;          
  width: 100%;
  border-radius: 12px;       
  overflow: hidden;          
  position: relative;
}
.service-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         
  object-position: center;
}
.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  padding: 20px;
}
.service-overlay h3 {
  font-family: 'Ink Free', cursive;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.service-overlay p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* CLIENTS */
.clients {
  padding: 80px 0;
  text-align: center;
}
.clients h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.client-logos img {
  max-height: 60px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.client-logos img:hover {
  filter: none;
  opacity: 1;
}

/* REVIEWS */
.reviews {
  padding: 80px 0;
  text-align: center;
}
.reviews h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.review-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  height: 200px;
}
.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.review-slide.active {
  opacity: 1;
}
.review-slide img {
  max-height: 60px;
  margin-bottom: 20px;
}
.review-slide p {
  font-style: italic;
  margin-bottom: 10px;
}
.review-slide .author {
  font-weight: bold;
}
.review-nav {
  margin-top: 20px;
}
.review-nav span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.review-nav span.active {
  background: hotpink;
}

/* WORKFLOW */
.workflow {
  padding: 80px 0;
  text-align: center;
}
.workflow h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.workflow-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.workflow-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed);
}
.workflow-item:hover {
  transform: translateY(-5px);
}
.workflow-item i {
  font-size: 2rem;
  color: hotpink;
  opacity: 0.2;
  transition: opacity var(--transition-speed);
  margin-bottom: 10px;
}
.workflow-item:hover i {
  opacity: 1;
}
.workflow-item h3 {
  font-family: 'Ink Free', cursive;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.workflow-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* PORTFOLIO CASES */
.cases {
  padding: 80px 0;
}
.portfolio-case {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
.portfolio-case.reverse {
  flex-direction: row-reverse;
}
.case-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  display: block;
}
.case-content h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.case-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.case-content h3 {
  font-family: 'Ink Free', cursive;
  font-size: 1.5rem;
  color: hotpink;
  margin-bottom: 1rem;
}
.case-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.case-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.case-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hotpink;
}

/* WHAT WE DO */
.what-we-do {
  padding: 80px 0;
  text-align: center;
}
.what-we-do h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.what-we-do-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.what-we-do-item {
  background: #f5f7fa;
  border-radius: 12px;
  padding: 20px;
  max-width: 260px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* schuift knop naar beneden */
  width: 260px; 
}
.what-we-do-item:hover {
  transform: translateY(-5px);
}
.what-we-do-item h3 {
  font-family: 'Ink Free', cursive;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.what-we-do-item p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.what-we-do-item .btn
.what-we-do-item .btn-shimmer {
  margin: 0;
  margin-top: auto;
}

/* HOSTING PLANS */
.plans {
  padding: 80px 0;
  text-align: center;
}
.plans h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.plan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.plan-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 260px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

  /* flex-kolom om knoppen onderaan te laten plakken */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* titel, prijs, lijst etc. blijven zoals voorheen */
.plan-item h3 {
  font-family: 'Ink Free', cursive;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.plan-price {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.plan-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
}
.plan-item li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.plan-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hotpink;
}

/* ── KNOPPEN ── */
/* Vang zowel je .btn als .btn-shimmer varianten af */
.plan-item .btn,
.plan-item .btn-shimmer {
  display: block;                       /* full width binnen max */
  width: calc(100% - 2rem);             /* 100% minus padding */
  max-width: 200px;                     /* voorkom té breed */
  margin: 0.5rem auto;                  /* verticaal 0.5rem, horizontaal gecentreerd */
  box-sizing: border-box;
}

/* eerste knop plakt aan bodem */
.plan-item .btn:first-of-type,
.plan-item .btn-shimmer:first-of-type {
  margin-top: auto;
}

/* extra spacing tussen knoppen */
.plan-item .btn + .btn,
.plan-item .btn-shimmer + .btn-shimmer {
  margin-top: 0.75rem;
}

/* zorg dat de onderste knop niet nóg extra margin-bottom krijgt */
.plan-item .btn:last-of-type,
.plan-item .btn-shimmer:last-of-type {
  margin-bottom: 0;
}

/* DETAIL PAGINA HOSTING PAKKETTEN */

.package-details {
  padding: 80px 0;
  text-align: center;
}
.package-details h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  margin: 2rem 0 1rem;
}
.package-details ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: inline-block;
  text-align: left;
}
.package-details ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.package-details ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hotpink;
}

/* CONTACT SECTION */
#contact-page {
  padding: 80px 0;
}
.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}
.contact-intro h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.contact-intro p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}
.contact-intro hr {
  width: 60px;
  border: none;
  height: 3px;
  background: hotpink;
  margin: 0 auto 0;
}

/* FORM FEEDBACK */
.form-errors,
.form-success {
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.form-errors {
  background: #ffe5e5;
  border: 1px solid #ffcccc;
  color: #990000;
}
.form-success {
  background: #e5ffe5;
  border: 1px solid #ccffcc;
  color: #006600;
}

/* FORM */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form .btn {
  display: block;
  width: auto;
  box-sizing: border-box;
  margin: 1rem auto 2rem;
  font-family: 'Ink Free', cursive;
}

/* ORDER HOSTING PAGE */
#order-page {
  padding: 80px 0 120px;
}
.order-form {
  max-width: 600px;
  margin: 0 auto;
}
.order-form h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.order-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.order-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.order-form legend {
  font-family: 'Ink Free', cursive;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.order-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.order-form select,
.order-form input[type="email"],
.order-form input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.order-form .radio-group,
.order-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.order-form small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #555;
}
.btn {
  align-self: center;
  padding: 0.75rem 2rem;
  font-family: 'Ink Free', cursive;
}

/* ── ONDERHOUD PAGE - CONTAINER INNER ── */
.maintenance-section .container-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SECTIE PADDING & MARGE ── */
.maintenance-section {
  padding: 4rem 0;
  margin-bottom: 3rem;
}

/* ── LICHTGRIJS ACHTERGROND ── */
.maintenance-alt {
  background-color: #fafaf5;
  text-align: left;
}

/* ── RECHTS UITLIJNEN VOOR 2E BLOK ── */
.align-right .container-inner h2 {
  text-align: right;
}
.align-right .container-inner summary {
  justify-content: flex-end;
}
.align-right .container-inner .content {
  text-align: left;
  max-width: 700px;
  margin: 1rem auto 0 auto;
}

/* ── TITELS ── */
.maintenance-section h2 {
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
  color: hotpink;
  margin-bottom: 1rem;
}

/* ── “Waarom onderhoud” LIJST ── */
.maintenance-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.maintenance-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #333;
  line-height: 1.6;
}
.maintenance-list li i {
  font-size: 1.25rem;
  color: #aaa;
}

/* Hover-effect voor de onderhouds-lijst */
.maintenance-list li {
  transition: color var(--transition-speed);
  cursor: default;
}
.maintenance-list li i {
  transition: color var(--transition-speed);
}

/* Als je met je muis over een item gaat… */
.maintenance-list li:hover {
  color: #d91f60; /* hotpink */
}
.maintenance-list li:hover i {
  color: #d91f60;
}

/* ── OPMERKING ── */
.maintenance-note {
  font-style: italic;
  color: #555;
  margin-top: 1rem;
}

/* ── ACCORDION ── */
.maintenance-accordion details {
  border-top: 1px solid #ddd;
  padding: 1rem 0;
}
.maintenance-accordion details:last-of-type {
  border-bottom: 1px solid #ddd;
}
.maintenance-accordion summary {
  list-style: none;    /* default driehoek weghalen */
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: hotpink;
  cursor: pointer;
  transition: color var(--transition-speed);
}
.maintenance-accordion summary i {
  font-size: 1.25rem;
  color: #aaa;
  transition: color var(--transition-speed);
}
.maintenance-accordion details[open] summary,
.maintenance-accordion summary:hover {
  color: #d91f60;
}
.maintenance-accordion details[open] summary i,
.maintenance-accordion summary:hover i {
  color: #d91f60;
}
.maintenance-accordion .content {
  margin-top: 0.75rem;
  padding-left: 2.5rem;
  color: #555;
  line-height: 1.6;
}

/* ── BASISSTIJL VOOR ALLE SHIMMER-BUTTONS ── */
.btn-shimmer {
  /* Custom properties – kun je inline of per selector overschrijven */
  --btn-border: #FF1493;       /* borderkleur */
  --btn-color: #FFFFFF;        /* tekstkleur vóór hover */
  --btn-color-hover: #ffffff;  /* tekstkleur tijdens hover */

  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: 'Ink Free', cursive;
  font-weight: 600;
  font-size: 1rem;
  color: var(--btn-color);
  text-decoration: none;
  border: 2px solid var(--btn-border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: color 0.3s ease;
  cursor: pointer;
}

/* shimmer-overlay */
.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%
  );
  transition: none;
  pointer-events: none;
  z-index: 1;
}

/* move shimmer on hover */
.btn-shimmer:hover::before {
  left: 100%;
  transition: left 1.2s ease;
}

/* tekstkleur op hover */
.btn-shimmer:hover {
  color: var(--btn-color-hover);
}

/* ── VARIANT 2: alternatieve kleur (bv. paars) ── */
.btn-shimmer-alt {
  /* overschrijf enkel de props */
  --btn-border: #FF1493;
  --btn-color: #000000;
  --btn-color-hover: #FF1493;
	
}

/* ── TLD GRID ── */
.tld-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Titel */
.tld-section-title {
  font-family: 'Ink Free', cursive;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* Kaarten */
.tld-card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.tld-card .tld {
  font-size: 1.5rem;      /* iets groter */
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}
.tld-card .price {
  font-size: 1.25rem;     /* iets kleiner */
  color: #666;
}

/* ── DOMAIN CHECK ── */
.domain-check__title {
  font-family:'Ink Free',cursive;
  font-size:2rem;
  color:#d92e73;
  text-align:center;
  margin-bottom:1rem;
}
.domain-form {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0.5rem;
  margin-bottom:1rem;
}
.domain-form input {
  padding:0.75rem 1rem;
  border:1px solid #ccc;
  border-radius:6px;
  min-width:200px;
}
.domain-links {
  text-align:center;
  gap:1rem;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
}
.domain-links a {
  color:#666;
  text-decoration:none;
  transition:color .3s;
}
.domain-links a:hover {
  color:#d92e73;
}
.domain-links i {
  margin-right:0.25rem;
}


/*─────────────────────────────────────────────────────────────
  MOBILE SPECIFIEKE AANPASSINGEN (≤768px)
─────────────────────────────────────────────────────────────*/
@media (max-width:768px) {
  /* footer: kolommen onder elkaar */
  .footer-inner {
    flex-direction:column;
    gap:2rem;
    padding:0 var(--container-padding);
  }
  .footer-bottom-inner {
    flex-direction:column;
    gap:1rem;
    text-align:center;
    padding:0 var(--container-padding);
  }
}

@media (max-width: 768px) {
  /* Stap de kolommen verticaal en centreer ze */
  #site-footer .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* optioneel: wat extra ruimte tussen kolommen */
  }

  /* Centreer alle tekst in elke kolom */
  #site-footer .footer-column {
    text-align: center;
  }
  /* Override voor de link‐lijst (was rechts uitgelijnd) */
  #site-footer .footer-links ul {
    text-align: center;
  }
}

/* ───────────────────────────────
   MOBIELE CORRECTIES
──────────────────────────────── */

@media (max-width: 768px) {

  /* Hero: laat 'm automatisch in hoogte groeien, en positioneer de bg van boven */
  .hero {
    height: auto;            /* geen fixed 100vh meer */
    min-height: 60vh;        /* je bepaalt zelf wat visueel OK is */
    background-position: top center !important;
  }

  /* Zorg dat je hero-content altijd binnen het scherm blijft */
  .hero-content {
    padding: 2rem 1rem;
  }

  /* Formulieren: altijd volle breedte en box-sizing */
  .contact-form input,
  .contact-form textarea {
    width: 100% !important;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
  }


/* ─────────────────────────────────────────────────────────
   HAMBURGER ICON KLEUR (wit op hero, grijs op sticky)
───────────────────────────────────────────────────────── */
.nav-toggle .bar {
  /* default: gebruik de link‐kleur (wit) */
  background: var(--link-color);
  transition: background var(--transition-speed);
}

/* als header gescrolled is wordt --link-color-scrolled #333 */
header#site-header.scrolled .nav-toggle .bar {
  background: var(--link-color-scrolled);
}


/* ─────────────────────────────────────────────
   HAMBURGER: witte bars op desktop/hero, grijs op sticky
───────────────────────────────────────────── */
/* zorg eerst dat je .bar elementen hebt binnen .nav-toggle */
.nav-toggle .bar {
  background: #fff !important;    /* standaard: wit */
}

/* wanneer header.scrolled actief is, maak ‘m grijs */
header#site-header.scrolled .nav-toggle .bar {
  background: #888 !important;    /* of vervang door hotpink: #FF1493 */
}


  /* Hamburger-icon: witte bars tegen donkere hero, grijs na scroll */
  .nav-toggle .bar {
    background: #fff !important;
  }
  header#site-header.scrolled .nav-toggle .bar {
    background: #888 !important; /* of vervang door hotpink: #FF1493 */
  }

  /* Footer: kolommen stapelen en centreren */
  #site-footer .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  #site-footer .footer-column,
  #site-footer .footer-links ul {
    text-align: center;
  }
}

/* ──────────────────────────────────────
   MOBILE OVERRIDE VOOR HOSTING PLANS
   (max-width: 768px)
────────────────────────────────────── */
@media (max-width: 768px) {
  /* container full-width met 1rem padding */
  .container {
    width: 100% !important;
    padding: 0 1rem !important;
    margin: 0 auto !important;
  }

  /* plan-list onder elkaar, gecentreerd */
  .plans .plan-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    padding: 0 !important;
    margin: 0 auto !important;
    justify-content: center !important;
  }

  /* iedere plan-item smaller en exact gecentreerd */
  .plans .plan-item {
    width: calc(100% - 2rem) !important;  /* container-width minus 1rem padding links en rechts */
    margin: 1rem auto !important;
    box-sizing: border-box !important;
  }
}

/* ──────────────────────────────────────
   EXTRA MOBILE FIX VOOR CONTACTFORMULIER
   (max-width: 768px)
────────────────────────────────────── */
@media (max-width: 768px) {
  /* Zorg dat de algemene container in de contact-sectie full-width met padding is */
  #contact-page .container {
    width: 100% !important;
    padding: 0 1rem !important;
    margin: 0 auto !important;
  }

  /* Forceer kolom-layout en padding op je form wrapper */
  .contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* Velden en knop full-width en goed shrinkbaar in flex */
  .contact-form input,
  .contact-form textarea,
  .contact-form button,
  .contact-form .btn {
    width: 90% !important;
    min-width: 0 !important;       /* heel belangrijk in flex containers */
    box-sizing: border-box !important;
    padding: 0.75rem 1rem !important;
  }

  /* Extra margin rond de verzendknop */
  .contact-form button,
  .contact-form .btn {
    margin: 1rem 0 2rem !important;
  }
}

/* ─────────────────────────────────────────────────────────
   MOBIEL ≤768px: CONSISTENTE ZIJDESPACING EN PORTFOLIO STACK
─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* 1) Zorg dat .container écht gelijkmatig 1rem padding links/rechts heeft */
  .container {
    width: 100% !important;
    padding: 0 1rem !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* 2) Portfolio-cases stapelen in kolom, zodat niets meer off-screen gaat */
  .portfolio-case {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  .portfolio-case .case-image,
  .portfolio-case .case-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  /* 3) Algemeen: voorkom horizontale scroll */
  html, body {
    overflow-x: hidden !important;
  }
}

/* beetje ruimte geven op smalle schermen */
@media (max-width: 768px) {
  .domain-form input,
  .domain-form button {
    width: 100% !important;
    max-width: none !important;
    margin: 0.5rem 0 !important;
    box-sizing: border-box;
  }
  .domain-links {
    flex-direction: column;
    align-items: start;
  }
  .domain-links a {
    display: inline-block;
    margin-bottom: 0.5rem;
  }
}

/* ─── Content‐block styling ──────────────────────────────────────────── */
.content-block {
  max-width: 800px;
  margin: 2rem auto;
  font-family: var(--ff-sans);
  line-height: 1.6;
}
.content-block h2,
.content-block h3 {
  font-family: var(--ff-heading);
  margin-top: 1.5rem;
}

/*───────────────────────────────────────────────────────────
  DotPixel Blog & Hero Unieke Styles (prefix dp-)
───────────────────────────────────────────────────────────*/
.dp-hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dp-hero-content {
  text-align: center;
  color: #fff;
  padding: 2rem 1rem;
}
.dp-hero-content h1 {
  font-family: 'Ink Free', cursive;
  font-size: 3rem;
  margin-bottom: .5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
}
.dp-hero-content .dp-subtitle {
  font-family: 'Ink Free', cursive;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.dp-hero-content .dp-intro {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Content block */
.dp-content-block {
  max-width: 800px;
  margin: 2rem auto;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
.dp-content-block h2,
.dp-content-block h3 {
  font-family: 'Ink Free', cursive;
  margin-top: 1.5rem;
}

/* Blog/FAQ preview */
.dp-blog-preview {
  padding: 4rem 1rem;
  background: #FAFAF5;
}
.dp-blog-preview h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
}
.dp-blog-items {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem;
}
.dp-blog-item {
  background: #fff;
  padding: 1rem;
  border-radius: .5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  text-align: center;
}
.dp-blog-item img {
  width: 100%;
  height: auto;
  border-radius: .5rem;
  margin-bottom: .5rem;
}
.dp-blog-item h3 {
  font-family: 'Ink Free', cursive;
  margin: .5rem 0;
}
.dp-blog-item p {
  font-size: .9rem;
  margin-bottom: 1rem;
}
/* unieke knop styling */
.dp-blog-item .dp-btn {
  display: inline-block;
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: .3rem;
  font-family: 'Ink Free', cursive;
  background: #FF1493;
  color: #fff;
  transition: background .3s;
}
.dp-blog-item .dp-btn:hover {
  background: #d91f60;
}

/* ─── Jouw Blog-FAQ sectie ────────────────── */
.blog-preview {
  padding: 4rem 1rem;
  background: var(--clr-bg-alt);
}
.blog-preview h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Ink Free', cursive;
  font-size: 2rem;
}
.blog-items {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.blog-item {
  background: #fff;
  padding: 1rem;
  border-radius: .5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  text-align: center;
}
.blog-item img {
  width: 100%;
  height: auto;
  border-radius: .5rem;
  margin-bottom: .5rem;
}
.blog-item h3 {
  font-family: 'Ink Free', cursive;
  margin: .5rem 0;
}
.blog-item p {
  font-size: .9rem;
  margin-bottom: 1rem;
}

/* Maak alle in-content afbeeldingen afgerond */
.dp-content-block img,
.blog-item img,
.tinymce-content img {
  border-radius: 0.5rem; /* pas de hoekstraal naar smaak aan */
  overflow: hidden;
  display: inline-block;
}

/* ------------------------------ */
/* Blog filter dropdown styling  */
/* ------------------------------ */

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.fp-cat-dropdown {
  position: relative;
  display: inline-block;
}

.fp-cat-toggle {
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 0.25rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  font-family: 'Ink Free', sans-serif;
}

.fp-cat-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0.25rem 0 0;
  padding: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  list-style: none;
  z-index: 100;
  min-width: 12rem;
}

.fp-cat-dropdown.open .fp-cat-menu {
  display: block;
}

.fp-cat-menu li {
  margin: 0;
  padding: 0;
}

.fp-cat-menu li > a {
  display: block;
  padding: 0.4rem 0.8rem;
  text-decoration: none;
  font-family: 'Ink Free', sans-serif;
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
  transition: background-color 0.2s;
}

/* parent categorie = groen */
.fp-cat-menu > li.fp-cat-parent > a {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.fp-cat-menu > li.fp-cat-parent > a:hover {
  background-color: #c3e6cb;
}

/* subcategorie = geel, ingesprongen */
.fp-cat-menu li ul {
  margin: 0.25rem 0 0 1rem;
}
.fp-cat-menu li ul > li.fp-cat-child > a {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}
.fp-cat-menu li ul > li.fp-cat-child > a:hover {
  background-color: #ffe8a1;
}

/* ruimtetje en centrering onder de Lees meer knop */
.dp-category-wrapper {
  text-align: center;
  margin-top: 0.75rem;
}

/* de badge‐knoppen */
.dp-category-badge {
  display: inline-block;
  margin: 0 0.25rem;
  padding: 0.3rem 0.8rem;
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: 0.25rem;
  font-family: 'Ink Free', sans-serif;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background-color 0.2s;
}

.dp-category-badge:hover {
  background-color: #ffe8a1;
}

/* optioneel onderscheid parent/sub */
.dp-category-badge--parent {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}
.dp-category-badge--parent:hover {
  background-color: #c3e6cb;
}
/* child behoudt standaard geel styling */


