/* ===============================
   Base Styles
=============================== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #111111;
  color: #cce0ff;
}

a,
.navbar__menu li a {
  color: #66bfff;
  transition: color 0.2s;
}

a:hover,
.navbar__menu li a:hover {
  color: #aad4ff;
}

/* ===============================
   Topbar
=============================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0055cc; /* professioneel blauw */
  color: #fff;
  text-align: center;
  padding: 0.3em 0;
  font-size: 0.95em;
  z-index: 1000;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.8em;
}

.topbar a:hover {
  text-decoration: underline;
}

/* ===============================
   Navbar
=============================== */
.navbar {
  --nav-height: 70px;
  background-color: #111;
  padding: 1em 2em;
  min-height: var(--nav-height);
  box-shadow: 0 2px 5px rgba(0,0,0,0.8);
  position: relative;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

#navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 1;
}

.logo-image {
  height: clamp(100px, 10vw, 120px);
  width: auto;
  margin-right: 12px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

#navbar__logo:hover .logo-image {
  transform: scale(1.05);
}

.navbar__menu {
  list-style: none;
  display: flex;
  gap: 2em;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.navbar__menu li a {
  color: #aad4ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar__menu li a:hover {
  color: #ffffff;
}

.navbar__menu li a.active {
  color: #fff;
  border-bottom: 2px solid #aad4ff;
}

/* Hamburger Button */
.menu-toggle {
  display: none; 
  font-size: 2rem;
  background: none;
  border: none;
  color: #aad4ff;
  cursor: pointer;
}

/* ===============================
   Hero Section
=============================== */
.hero {
  text-align: center;
  background: #000;
  padding: 6em 1em 3em; /* extra ruimte door topbar */
  position: relative;
}

.hero-logo {
  max-width: 350px;
  width: 50%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}

/* ===============================
   Responsive: Mobile
=============================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    order: 2;
  }

  .navbar__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #111;
    z-index: 999;
    padding: 0;
    margin: 0;
  }

  .navbar__menu.show {
    display: flex;
  }

  .navbar__menu li {
    padding: 1em;
    text-align: center;
  }

  .navbar__menu li a {
    display: block;
    width: 100%;
  }
}

/* Extra ruimte voor topbar in mobiel */
body {
  padding-top: 2em; /* voorkomt dat topbar content overlapt */
}


/* ===============================
   Additional mobile tweaks
=============================== */
@media (max-width: 768px) {
  .navbar__menu {
    gap: 1em;
    align-items: flex-start;
  }
  form {
    padding: 0 1em;
  }
}


.hero {
  text-align: center;
  background: #000;
  padding: 5em 1em 3em; /* meer ruimte boven logo voor focus */
  color: #e0e7ff;
  position: relative;
}

.hero-logo {
  display: block;
  margin: 0 auto 0.5em; /* minder onderruimte, minder afleiding van h1 */
  max-width: 300px; /* iets groter voor desktop */
  width: 40%;
  height: auto;
  filter: brightness(0) invert(1);
  animation: logoPop 1.6s ease-out forwards;
}

@keyframes logoPop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

/* Bedrijfsnaam (h1) iets groter en opvallender */
.hero h1 {
  margin-top: 0.3em;
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 2.8em; 
  color: #ffffff;
}

/* Slogan iets groter en beter leesbaar */
.slogan {
  font-size: 1.3em; /* groter dan voorheen */
  font-style: italic;
  color: #ffffff;
  margin-top: 0.3em;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 60%;      /* neemt 60% van de schermbreedte */
    max-width: 300px; /* optioneel, iets groter dan voorheen */
  }
}

/* ===============================
   Sections & Text
=============================== */
.section {
  padding: 3em 1em;
  max-width: 1100px;
  margin: 0 auto;
  color: #cce0ff;
}

.center-text {
  text-align: center;
  font-style: italic;
  font-size: 1.2em;
  color: #99bfff;
}

/* ===============================
   Before-After Photos
=============================== */
.before-after-pair {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-bottom: 2em;
}

.before-after-pair img {
  flex: 1 1 280px;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 15px #003d99;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-pair img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #aad4ff;
}

/* Mobile toggle link */
.toggle-link {
  display: none;
}

@media (max-width: 768px) {
  .toggle-link {
    display: block;
    text-align: center;
    margin-top: 0.5em;
    color: #aad4ff;
    font-weight: 600;
    text-decoration: underline;
  }
  .before-after-pair {
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
  }
  .before-after-pair img.hidden { display: none !important; }
  .before-after-pair img.visible { display: block !important; }
  .image-box img.hidden + p { display: none; }
}

/* ===============================
   Scroll Buttons
=============================== */
.scroll-button { display: none; }

@media (max-width: 768px) {
  .before-after-wrapper,
  .photo-scroll-wrapper {
    position: relative;
    overflow-x: auto;
  }

  .before-after-scroll,
  .photo-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 1em;
    padding-bottom: 1em;
    overflow-x: auto;
    scroll-behavior: smooth;
  }

  .before-after-scroll::-webkit-scrollbar,
  .photo-scroll::-webkit-scrollbar {
    display: none;
  }

  .before-after-scroll img,
  .photo-scroll img {
    flex: 0 0 auto;
    width: 70vw;
    max-width: 300px;
  }

  .scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 61, 153, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }

  .scroll-button.left { left: 0; }
  .scroll-button.right { right: 0; }

  .scroll-button:disabled {
    opacity: 0;
    pointer-events: none;
  }
}

@media (min-width: 769px) {
  .photo-scroll-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5em;
  }

  .photo-scroll-wrapper .scroll-button {
    display: inline-flex;
    background: rgba(0, 61, 153, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.5em;
    align-items: center;
    justify-content: center;
    margin: 0 0.5em;
    transition: opacity 0.2s;
  }

  .photo-scroll-wrapper .scroll-button:disabled {
    opacity: 0;
    pointer-events: none;
  }
}

.photo-scroll-wrapper { position: relative; }

/* ===============================
   Image Boxes & Gallery
=============================== */
.image-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .image-box { aspect-ratio: 10 / 16; }
}

.image-box p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  margin: 0;
  text-align: center;
  background: rgba(0, 61, 153, 0.7);
  color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 0.3em 0;
  font-weight: 600;
  font-size: 1em;
  pointer-events: none;
}

.gallery {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 1em;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}

.gallery::-webkit-scrollbar { display: none; }

.gallery .single-photo {
  flex: 0 0 320px;
  max-width: 320px;
  margin-right: 1em;
}

.gallery .single-photo:last-child { margin-right: 0; }

.gallery .single-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 15px #003d99;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 1em 0;
}

.gallery .single-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #aad4ff;
}

@media (max-width: 900px) {
  .gallery {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
  }

  .gallery .single-photo {
    flex: 0 0 auto;
    width: 70%;
    scroll-snap-align: start;
  }
}

/* ===============================
   Lightbox
=============================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 0 30px #003d99;
}

/* ===============================
   Forms
=============================== */
form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
  color: #cce0ff;
}

form label {
  margin-bottom: 0.3em;
  font-weight: 600;
}

form input,
form textarea {
  margin-bottom: 1.2em;
  padding: 0.8em;
  border: 1.5px solid #003d99;
  border-radius: 6px;
  background-color: #000;
  color: #aad4ff;
  font-size: 1em;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #99bfff;
  background-color: #001733;
}

form button {
  padding: 1em;
  background-color: #003d99;
  color: #e0e7ff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #0055cc;
}

/* ===============================
   Footer
=============================== */
.footer {
  text-align: center;
  padding: 1.5em 1em;
  background-color: #111;
  color: #aad4ff;
  font-size: 0.9em;
  border-top: 1px solid #003d99;
}

/* ===============================
   Portfolio & Thumbs
=============================== */
.portrait-photo {
  width: 160px;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.portfolio-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.portfolio-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.portfolio-thumbs .image-box p { display: none; }

#preview-scroll-left,
#preview-scroll-right {
  display: none;
}

@media (max-width: 768px) {
  #preview-scroll-left,
  #preview-scroll-right {
    display: block;
  }
}

/* ===============================
   Customer Reviews
=============================== */
.customer-reviews {
  text-align: center;
  padding: 40px 20px;
  background-color: #111;
  color: #f0f0f0;
}

.customer-reviews h2 {
  margin-bottom: 20px;
  color: #fff;
}

.reviews {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.review {
  background: #1c1c1c;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  font-style: italic;
}

.review span {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: #aaa;
}

.customer-reviews .stars {
  color: gold;
  font-size: 1.1em;
  margin-right: 5px;
}

.customer-reviews .review { margin-bottom: 1.5em; }

.icon {
  margin-right: 6px;   /* space between emoji and text */
}

a {
  display: inline-flex; 
  align-items: center;  /* keeps emoji and text vertically aligned */
  text-decoration: none;
  color: inherit;
}


