@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/*mediaqueries
480
768
1024
bij 1500 widt 100%*/

* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #000000;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

p {
    font-weight: 400;
    line-height: 1.5;
    color: #AAAAAA;
}


/* index.html */

/* ========== NAVIGATION ========== */
.smart-navbar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  padding: 6px 8px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 9999;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
}

.profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.avatar-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6px;
  height: 6px;
  background: #00ff84;
  border-radius: 50%;
  border: 2px solid #111; /* past bij je navbar achtergrond */
  box-shadow: 0 0 0 0 rgba(0, 255, 132, 0.7);
  animation: pulseDot 5s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 132, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 255, 132, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 132, 0);
  }
}

.divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.profile-link {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.profile-link:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 1;
  z-index: 10;
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s;
}

nav a img {
  width: 20px;
  height: 20px;
  filter: brightness(0.7);
  transition: filter 0.3s;
}

nav a:hover img,
nav a.active img {
  filter: brightness(1);
}

nav a:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: -30px;
  background: #111;
  color: #fff;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 1;
}

#navbar-trigger {
  height: 1px;
  margin-top: -1px; /* zodat hij net boven introhero zit */
}

.whiteicon {
  filter: invert(50%);
  transition: filter 0.3s ease;
}

.whiteiconselected {
  filter: invert(100%);
  transition: filter 0.3s ease;
}

nav a:hover .whiteicon {
  filter: invert(100%) brightness(200%);
}

nav a:hover .whiteiconselected {
  filter: invert(100%) brightness(200%);
}


/* herosection */
.introhero {
    max-width: 700px;
    margin: 96px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: white;
  }
  
  /* ————— LEFT SIDE ————— */
  .intro-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  .intro-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

.mask-wrap {
  overflow: hidden;
  display: inline-block;
}

.mask-line {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
  }
  
  .animate-on-scroll.inview .mask-line {
    animation: slideUp 0.6s ease forwards;
  }
  
  .animate-on-scroll.inview .mask-wrap:nth-child(1) .mask-line { animation-delay: 0s; }
  .animate-on-scroll.inview .mask-wrap:nth-child(2) .mask-line { animation-delay: 0.1s; }
  .animate-on-scroll.inview .mask-wrap:nth-child(3) .mask-line { animation-delay: 0.2s; }
  .animate-on-scroll.inview .mask-wrap:nth-child(4) .mask-line { animation-delay: 0.3s; }
  .animate-on-scroll.inview .mask-wrap:nth-child(5) .mask-line { animation-delay: 0.4s; }
  .animate-on-scroll.inview .mask-wrap:nth-child(6) .mask-line { animation-delay: 0.5s; }
  .animate-on-scroll.inview .mask-wrap:nth-child(7) .mask-line { animation-delay: 0.6s; }
  .animate-on-scroll.inview .mask-wrap:nth-child(8) .mask-line { animation-delay: 0.7s; }

  @keyframes slideUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .intro-text h4 {
    font-size: 16px;
    margin: 0;
  }
  
  .intro-text p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
  }
  
  .location {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #aaa;
  }
  
  .pin-icon {
    width: 14px;
    height: 14px;
    filter: invert(80%);
  }
  
  /* ————— MAIN TEXT ————— */
  .intro-main h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
  }

  .gradient-span {
    background: linear-gradient(90deg, #7f5af0, #00e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    white-space: nowrap;
  }
  
  .intro-main p {
    color: #aaa;
    margin-top: 8px;
    font-size: 16px;
  }
  
  /* ————— CTA BUTTONS ————— */
  .cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  
  .btn-white {
    background: white;
    color: black;
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  
  .btn-white .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .btn-white:hover .arrow {
    transform: translateX(4px);
  }

  .glow-border {
    position: relative;
    display: inline-block;
    border-radius: 999px;
    padding: 2px;
    background: linear-gradient(270deg, #7f5af0, #00e0ff);
    background-size: 400% 400%;
    animation: glowMove 5s ease infinite;
  }
  
  .glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    filter: blur(6px);       /* iets meer blur */
    z-index: -1;
    border-radius: 999px;
    opacity: 0.25;           /* iets meer zichtbaar */
  }
  
  .glow-border a.btn-white {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    background: white;
    color: black;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    z-index: 1;
  }
  
  @keyframes glowMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  .btn-outline {
    position: relative;
    overflow: hidden;
    padding: 12px 20px;
    min-width: 140px;
    height: 44px;
    background: transparent;
    border: 1px solid #aaa;
    border-radius: 999px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .contact-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: #aaa;
    margin-top: 24px;
  }
  
  .contact-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-links a:hover {
    color: white;
  }
  
  .contact-links .pin-icon {
    width: 14px;
    height: 14px;
    filter: invert(80%);
  }

  .location-group {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  /* ————— COPY/BOUNCE TRANSITION ————— */
  .copy-text,
  .copied-text {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s ease;
  }
  
  .copy-text {
    opacity: 1;
    transform: translateY(0);
  }
  
  .copied-text {
    opacity: 0;
    transform: translateY(100%);
  }

@keyframes animatie1 {
    0% {
        transform: translateY(50px);

    }

    100% {
        opacity: 1;
    }
}

/* benefits */
.benefits-section {
    max-width: 700px;
    margin: 96px auto;
    padding: 0 24px;
    color: white;
  }
  
  .benefits-subtitle {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #c0c0c0;
    margin-bottom: 16px;
    font-weight: 500;
  }
  
  .benefits-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
  }
  
  .benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  
  .benefit-card img {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    filter: invert(100%);
  }
  
  .benefit-card p {
    margin: 0;
    font-size: 14px;
    color: #c0c0c0;
  }
  
  .benefit-card strong {
    color: white;
    font-weight: 600;
  }

  .spotlight-card {
    position: relative;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
    padding: 24px;
    transition: background 0.3s;
  }
  
  .spotlight-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(
      circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(126, 27, 246, 0.08),
      transparent 60%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
  }
  
  .spotlight-card:hover::before {
    opacity: 1;
  }

  .services-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
    color: white;
  }
  
  .service-accordion {
    margin-top: 32px;
  }
  
  .accordion-item {
    border-bottom: 1px solid #333;
    padding: 12px 0;
  }
  
  .accordion-header {
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-family: inherit;
  }
  
  .accordion-header .arrow {
    transition: transform 0.3s ease;
  }
  
  .accordion-item.active .accordion-header .arrow {
    transform: rotate(180deg);
  }
  
  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 14px;
    color: #aaa;
    margin-top: 8px;
  }
  
  .accordion-item.active .accordion-body {
    max-height: 200px;
  }

/* footer */
.footer {
    margin: 96px auto;
    padding: 0 24px;
    color: #FFFFFF;
    text-align: left;
    max-width: 700px;
  }

  .footer-heading {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #c0c0c0;
    font-weight: 500;
  }
  
  .footer-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 40px;
  }
  
  .footer-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  
  .footer-links li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #646464;
    font-size: 14px;
  }
  
  .footer-links li img {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    filter: grayscale(100%) brightness(0.4);
  }
  
  .footer-links li span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
  }
  
  .footer-links li .right {
    color: #c0c0c0;
  }

 /* -------------------------- */
/* MEDIAQUERIES */
/* -------------------------- */

@media (max-width: 768px) { 
    .navbar {
      flex-wrap: nowrap;
      gap: 16px;
      width: 100%;
    }
  
    .navbar nav {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      gap: 16px;
      overflow-x: auto;
    }
  
    .navbar nav a {
      flex: 0 0 auto;
    }
  
    .smart-navbar::-webkit-scrollbar,
    .navbar nav::-webkit-scrollbar {
      display: none;
    }
  
    .introhero {
      padding-top: 0;
      margin-top: 48px;
    }
  
    .intro-title,
    .intro-main h1,
    .footer-title {
      font-size: 28px;
      line-height: 1.2;
    }
  
    .producth1,
    .benefits-title {
      font-size: 24px;
      line-height: 1.2;
      margin-right: 0;
    }
  
    .btn-white {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 14px;
        padding: 12px 20px;
      }
    
      .btn-outline {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }
    
      .cta-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
      }
  
    .scroll-indicator,
    .tagsgroup,
    .secondhalf svg {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .profile,
    .divider {
      display: none;
    }

    .navbar {
        gap: 0px;
    }
  
    nav a img {
      width: 20px;
      height: 20px;
    }
  
    .intro-title,
    .intro-main h1,
    .footer-title {
      font-size: 22px;
    }
  
    .producth1,
    .benefits-title {
      font-size: 20px;
    }
  
    .contact-links {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  /* -------------------------- */
  /* BUTTON STYLING */
  /* -------------------------- */
  .btn-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }


  