/* --------------------------------
   Basis en Reset
-----------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Kleuren */
  --color-primary: #632d66; /* MysticShadows paars */
  --color-secondary: #18F1D3; /* Solana-achtig aqua */
  --color-accent: #2575fc; /* Blauw accent */
  --color-bg-dark: #121212; /* Donkere achtergrond */
  --color-bg-light: #f4f4f9; /* Lichte achtergrond */
  --color-bg-grey: #2a2b3d; /* Donkergrijs voor nav */
  --color-text-dark: #333;
  --color-text-light: #fff;

  /* Typografie */
  --font-primary: 'Roboto', sans-serif;
  --font-accent: 'Poppins', sans-serif;

  /* Eventuele extra highlight-kleur */
  --color-highlight: #f39c12;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-highlight);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --------------------------------
   Header
-----------------------------------*/
.site-header {
  background: linear-gradient(135deg, #0086ff, #3a1c71, #632d66) !important; /* Blauw leesbare kleur */
  padding: 10px 20px; /* Compactere header */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #3a1c71; /* Subtiele randkleur */
  position: relative;
}
.header-top {
  display: flex;
  align-items: center; /* Alles op dezelfde hoogte */
  justify-content: space-between; /* Verdeel ruimte tussen titel, logo en tekst */
  gap: 20px;
}

.logo {
  max-width: 150px; /* Kleinere weergave van het logo */
  height: auto;
  margin: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
  transform: scale(1.3); /* Zoom-effect bij hover */
  opacity: 1;
}

/* Titel links */
.site-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem; /* Iets kleinere titel */
  font-weight: 700;
  color: #ffffff; /* Helder wit */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
  text-align: left;
}

/* Tekst rechts */
.site-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem; /* Iets kleinere tekst voor de tagline */
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
/* --------------------------------
   Responsieve weergave
-----------------------------------*/
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    max-width: 200px; /* Kleiner logo op mobiele apparaten */
  }

  .site-title {
    font-size: 1.4rem;
  }

  .site-tagline {
    font-size: 0.8rem;
  }
}
/* --------------------------------
   Navigatie
-----------------------------------*/
.site-nav {
  background: var(--color-bg-grey);
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-nav input[type="checkbox"] {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  color: var(--color-secondary);
  padding: 10px 20px;
  cursor: pointer;
  user-select: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
}

.nav-links > li {
  margin: 0 20px;
  position: relative;
}

/* Submenu */
.submenu {
  display: none;
  background: var(--color-bg-grey);
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 5px;
  list-style: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.submenu li {
  width: 200px;
  padding: 5px;
  text-align: left;
}

.submenu li a {
  padding: 10px;
  display: block;
  color: var(--color-secondary);
  transition: background 0.3s ease;
}

.submenu li a:hover {
  background: var(--color-primary);
  color: #fff;
}

.nav-links > li:hover > .submenu {
  display: block;
}

/* Hoofdlinks */
.nav-links > li > a {
  color: var(--color-secondary);
  font-size: 1.1rem;
  padding: 12px 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 5px;
  display: block;
}

.nav-links > li > a:hover {
  background: linear-gradient(120deg, #9b56b6, var(--color-secondary));
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(24, 241, 211, 0.3);
}

/* Actieve link */
.nav-links li.active > a {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 15px rgba(37, 117, 252, 0.4);
}

/* Hamburger-menu voor kleinere schermen */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    left: -9999px; /* Verberg buiten beeld */
    width: 100%;
    flex-direction: column;
    background: var(--color-bg-grey);
    transition: left 0.4s ease;
    margin: 0;
    padding: 0;
  }
  .nav-links > li {
    margin: 0;
    text-align: center;
    position: relative; /* Zorgt ervoor dat submenu's goed worden gepositioneerd */
  }
  .nav-links > li > a {
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px;
  }
  #menu-toggle:checked + label + .nav-links {
    left: 0;
  }

  /* Submenu stijlen */
  .nav-links .has-submenu > a::after {
    content: " ▼";
    font-size: 12px;
  }

  .nav-links .submenu {
    display: none;
    position: static;
    background: var(--color-bg-grey);
  }

  .nav-links .has-submenu.active .submenu {
    display: block;
  }
}


  /* Op mobiel logo+tekst weer onder elkaar, centreren */
  .header-top {
    flex-direction: column;
    gap: 10px;
  }
  .site-header {
    text-align: center; /* Tekst centreren op mobiel */
  }
  .site-title, .site-tagline {
    margin: 0 auto;
    text-align: center;
  }
}

/* --------------------------------
   Intro
-----------------------------------*/
.intro {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  padding: 50px 20px;
  text-align: center;
}

.intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #34495e;
}
.intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 10px auto;
}

/* --------------------------------
   Diensten
-----------------------------------*/
.services {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 50px 20px;
}

.services h2 {
  font-size: 2.5rem;
  color: #34495e;
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background: linear-gradient(145deg, #ffffff, #eef2f3);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: left;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(145deg, #eef2f3, #ffffff);
}

.service-item h3 {
  color: #2575fc;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.service-item p,
.service-item ul {
  color: #555;
}

.service-item ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.btn-link {
  display: inline-block;
  font-weight: 600;
  color: var(--color-accent);
  background: #fff;
  border: 2px solid var(--color-accent);
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.05);
}

/* --------------------------------
   Waarom MysticShadows
-----------------------------------*/
.why-mysticshadows {
  background: #f4f4f9;
  padding: 50px 20px;
  text-align: center;
}

.why-mysticshadows h2 {
  font-size: 2.5rem;
  color: #34495e;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.why-mysticshadows p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Fade-in animatie (Waarom MysticShadows) */
.why-mysticshadows h2, .why-mysticshadows p {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------
   Testimonials
-----------------------------------*/
.testimonials {
  padding: 50px 20px;
  background: #222;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #f2f2f2;
  margin-bottom: 20px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-item {
  background: #333;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-item p {
  font-style: italic;
  color: #bbb;
  margin-bottom: 10px;
}

.testimonial-item h4 {
  color: var(--color-secondary);
}

/* --------------------------------
   Footer
-----------------------------------*/
.footer {
  background: linear-gradient(145deg, #632d66, #0086ff);
  color: #fff;
  text-align: center;
  padding: 30px 0;
  font-size: 1rem;
}

/* --------------------------------
   Over Mij-sectie (gradient + card-look)
-----------------------------------*/
.about-me {
  background: linear-gradient(135deg, #ffffff 0%, #fafafe 50%, #eef2f3 100%);
  padding: 60px 20px;
  text-align: center;
}

.about-me .section-title {
  font-size: 2.3rem;
  color: var(--color-primary);
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
}

/* "Card-stijl" voor de content */
.about-me-content {
  background: #fff;
  color: #333;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.7;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* Inleidende tekst in teal (ipv oranje) */
.intro-text {
  font-style: italic;
  color: var(--color-highlight);
  margin-bottom: 20px;
}

/* Fade-in animatie (eventueel per <p> in .about-me-content) */
.about-me-content p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  margin-bottom: 20px;
}
.about-me-content p:nth-of-type(1) {
  animation-delay: 0.2s;
}
.about-me-content p:nth-of-type(2) {
  animation-delay: 0.3s;
}
.about-me-content p:nth-of-type(3) {
  animation-delay: 0.4s;
}
.about-me-content p:nth-of-type(4) {
  animation-delay: 0.5s;
}
.about-me-content p:nth-of-type(5) {
  animation-delay: 0.6s;
}

/* --------------------------------
   .crypto-info sectie
-----------------------------------*/
.crypto-info {
  background: #fff;
  color: #333;
  padding: 50px 20px;
}

.crypto-info .container {
  max-width: 1200px;
  margin: 0 auto;
}

.crypto-info article {
  margin-bottom: 40px;
}

.crypto-info h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin-bottom: 15px;
}

.crypto-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}



/* --------------------------------
   Header met originele kleuren
-----------------------------------*/
.site-header {
  background: linear-gradient(135deg, #00c6ff, #0072ff, #590fb7); /* Originele kleuren */
  padding: 10px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1000;
}

.site-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  text-align: left;
}

/* Rechtertekst met animatie */
.site-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  margin: 0;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  animation: pulse 2s infinite; /* Toegevoegd animatie-effect */
}

@keyframes pulse {
  0%, 100% {
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    transform: scale(1);
  }
  50% {
    text-shadow: 2px 2px 12px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
  }
}

/* --------------------------------
   Menu met originele kleuren
-----------------------------------*/
.site-nav {
  background: rgba(0, 70, 140, 0.95); /* Lichtere en helderdere kleuren */
  padding: 8px 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  position: relative;
  margin-top: 5px;
}

.nav-links > li > a {
  color: var(--color-secondary);
  font-size: 1rem;
  padding: 8px 12px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-links > li > a:hover {
  background: rgba(37, 117, 252, 0.3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
}

/* Responsieve menu-aanpassingen */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    margin-top: 10px; /* Extra ruimte voor mobiel */
  }

  .nav-links > li {
    text-align: center;
  }
}
