/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

/* Custom Scroll Bar CSS */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #EEA0D4;
    border-radius: 12px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #a76f94;
}


/* navbar styling */
nav{
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 998;
  transition: all 0.3s ease;
  font-family: 'Ubuntu', sans-serif;
}
nav.sticky{
  background: #EEA0D4;
  padding: 13px 0;
}
nav .navbar{
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
nav .navbar .logo a{
  font-weight: 500; 
  font-size: 35px;
  color: #EEA0D4;
}
nav.sticky .navbar .logo a{
  color: #fff;
}
nav .navbar .menu{
  display: flex;
  position: absolute;
  left: 50.48%;
  transform: translateX(-50%);
}
nav .navbar .menu li{
  list-style: none;
  margin: 0 8px;
}
.navbar .menu a{
  font-size: 18px;
  font-weight: 500;
  color: #0E2431;
  padding: 6px 0;
  transition: all 0.4s ease;
}
.navbar .menu a:hover{
  color: #e19dca;
}
nav.sticky .menu a{
  color: #FFF;
}
nav.sticky .menu a:hover{
  color: #0E2431;
}
.navbar .media-icons a{
  color: #EEA0D4;
  font-size: 18px;
  margin  : 0 6px;
  position: relative;
  left: -30px; /* Moves each icon 10px to the left */
  }

nav.sticky .media-icons a{
  color: #FFF;
}
/* cursor */
body {
  cursor: url('path/to/iconmonstr-heart-filled.svg'), auto;

}
.glowing {
  position: fixed;
  width: 100px; 
  height: 100px;
  background: radial-gradient(circle, rgba(255, 120, 217, 0.6) 0%, rgba(246, 150, 183, 0) 80%);
  border-radius: 50%;
  pointer-events: none; 
  transform: translate(15%, 10%); /* Dit centreert het perfect */
  mix-blend-mode: screen; 
  transition: transform 0.05s linear;
}



/* Optional: Smooth transition for cursor position */
body {
  position: relative;
}

/* Profile Image - Responsive */
#ikke {
  height: auto;
  width: 100%;
  max-width: 450px;
  object-fit: cover;
  border-radius: 12px;
}
/* Side Navigation Menu Button CSS */
#intro-text {
  text-align: left; /* Or justify with hyphenation */
  word-spacing: normal;
}

nav .menu-btn,
.navbar .menu .cancel-btn{
  position: absolute;
  color: #fff;
  right: 30px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}
nav .menu-btn{
  color: #EEA0D4;
}
nav.sticky .menu-btn{
  color: #FFF;
}
.navbar .menu .menu-btn{
  color: #fff;
}
#introtext {
    text-align: left; /* Or justify with hyphenation */
    word-spacing: normal;
}
/* home section styling */
.home{
  height: 100vh;
  width: 100%;
  background: url("images/background.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: 'Ubuntu', sans-serif;
}
.home .home-content{
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home .text-one{
  font-size: 25px;
  color: #0E2431;
}
.home .text-two{
  color: #0E2431;
  font-size: 75px;
  font-weight: 600;
  margin-left: -3px;
}
.home .text-three{
  font-size: 40px;
  margin: 5px 0;
  color: #EEA0D4;
}
.home .text-four{
  font-size: 23px;
  margin: 5px 0;
  color: #0E2431;
}
.home {
  position: relative; /* Zorgt ervoor dat de tekst binnen dit blok gepositioneerd wordt */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Zorgt ervoor dat de container de volledige hoogte van het scherm vult */
  text-align: center;
  color: #0E2431; /* Tekstkleur */
}

.home .text-line {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid rgba(255, 255, 255, 0.75); /* Typemachine-effect */
  display: block;
  font-size: 2rem; /* Pas dit aan naar jouw gewenste grootte */
  margin: 10px 0; /* Ruimte tussen de regels */
}

.home .text-line:nth-child(1) {
  animation: typewriter-1 2s steps(25) 0s 1 normal both,
             blinkTextCursor 500ms steps(22) infinite normal;
  font-size: 25px;
  color: #0E2431;
}

.home .text-line:nth-child(2) {
  animation: typewriter-2 0.5s steps(85) 6.5s 1 normal both,
             blinkTextCursor 500ms steps(50) infinite normal;
  color: #0E2431;
  font-size: 75px;
  font-weight: 600;
  margin-left: -3px;
}

.home .text-line:nth-child(3) {
  animation: typewriter-3 2s steps(45) 7s 1 normal both,
             blinkTextCursor 500ms steps(22) infinite normal;
  font-size: 40px;
  margin: 5px 0;
  color: #EEA0D4;
}


/* Position the button right below the text lines */
.home {
  position: relative; /* Ensures proper positioning */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
  text-align: center;
  color: #0E2431; /* Text color */
}

.home .text-line {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid rgba(255, 255, 255, 0.75); /* Typing effect */
  display: block;
  font-size: 2rem; /* Adjust to your preferred size */
  margin: 10px 0; /* Space between lines */
}

.home .text-line:nth-child(1) {
  animation: typewriter-1 1s steps(25) 0s 1 normal both,
             blinkTextCursor 500ms steps(22) infinite normal;
  font-size: 25px;
  color: #0E2431;
}

.home .text-line:nth-child(2) {
  animation: typewriter-2 1s steps(30) 1.2s normal both,
             blinkTextCursor 500ms steps(22) infinite normal;
  color: #0E2431;
  font-size: 75px;
  font-weight: 600;
  margin-left: -3px;
}

.home .text-line:nth-child(3) {
  animation: typewriter-3 1s steps(20)2s 1 normal both,
             blinkTextCursor 500ms steps(22) infinite normal;
  font-size: 30px;
  margin: 5px 0;
  color: #EEA0D4;
}

.home .text-line:nth-child(4) {
  animation: typewriter-4 1s steps(15) 3s 1 normal both,
             blinkTextCursor 500ms steps(22) infinite normal;
  font-size: 23px;
  margin: 5px 0;
  color: #0E2431;
}

/* Position the button under the fourth line */
.home .button {
  margin-top: 15px; /* Space between line 4 and the button */
}

.home .button button {
  outline: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 500;
  background: #EEA0D4;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.home .button button:hover {
  background: #EEA0D4; /* Darker blue on hover */
  border-color: #fff;
}

/* Letter by letter animations for each line */
@keyframes typewriter-1 {
  from {
    width: 0;
  }
  to {
    width: 25ch; /* Adjust to the length of text-line 1 */
  }
}

@keyframes typewriter-2 {
  from {
    width: 0;
  }
  to {
    width: 30ch; /* Adjust to the length of text-line 2 */
  }
}

@keyframes typewriter-3 {
  from {
    width: 0;
  }
  to {
    width: 30ch; /* Adjust to the length of text-line 3 */
  }
}

@keyframes typewriter-4 {
  from {
    width: 0;
  }
  to {
    width: 30ch; /* Adjust to the length of text-line 4 */
  }
}

@keyframes blinkTextCursor {
  from {
    border-right-color: rgba(255, 255, 255, 0.75);
  }
  to {
    border-right-color: transparent;
  }
}



.home .button button:hover{
  border-color: #EEA0D4;
  background-color: #fff;
  color: #EEA0D4;
}

/* About Section Styling */
/* Those Elements Where We Have Apply Same CSS,
 I'm Selecting Directly 'Section Tag' and 'Class'  */
section{
  padding-top: 40px;
}
section .content{
  width: 80%;
  margin: 40px auto;
  font-family: 'Poppins', sans-serif;
}
.about .about-details{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section .title{
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
section .title span{
  color: #0E2431;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}
section .title span::before,
section .title span::after{
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: #EEA0D4;
  left: 0;
  bottom: 0;
}
section .title span::after{
  bottom: -7px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}
.about .about-details .left{
  width: 45%;
}
.about .left img{
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.about-details .right{
  width: 55%;
}
section  .topic{
  color: #0E2431;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}
.about-details .right p{
  text-align: justify;
  color: #0E2431;
  word-spacing: normal;
}
section .button{
  margin: 16px 0;
}
section .button button{
  outline: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 25px;
  font-weight: 400;
  background: #EEA0D4;
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}
section .button button:hover{
  border-color: #EEA0D4;
  background-color: #fff;
  color: #EEA0D4;
}
.cvbutton {
  outline: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 25px;
  font-weight: 400;
  background: #EEA0D4;
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}
.cvbutton button {
  border: 2px solid #EEA0D4; /* Zorg dat er een border is */
  background-color: #EEA0D4;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease; /* Zorg voor een soepele hover */
}


.cvbutton:hover{
  border-color: #EEA0D4;
  background-color: #fff;
  color: #EEA0D4;
}

  

 /* My Skills CSS */
 .skills{
   background: #ffffff;
 }
 .skills .content{
   padding: 40px 0;
 }
 .skills .skills-details{
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 .skills-details .text{
   width: 50%;
 }
 .skills-details p{
   color: #0E2431;
   text-align: justify;
 }
.skills .skills-details .experience{
  display: flex;
  align-items: center;
  margin: 0 10px;
}
.skills-details .experience .num{
  color: #0E2431;
  font-size: 80px;
}
.skills-details .experience .exp{
  color: #0E2431;
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
  margin: 0 6px;
}
.skills-details .boxes{
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.skills-details .box{
  flex: 1 1 120px;
  max-width: 200px;
  min-width: 100px;
  margin: 15px 0;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.skills-details .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.skills-details .boxes .topic{
  font-size: clamp(24px, 5vw, 60px); /* Responsive font size */
  color: #EEA0D4;
}
.skills-details .boxes .per{
  font-size: clamp(24px, 5vw, 60px); /* Responsive font size */
  color: #EEA0D4;
}
#skillstext {
  font-weight: normal; /* Verwijdert de vetgedrukte stijl */
  text-align: left; 
  word-spacing: normal;
  font-style: normal;
}


/* My Services CSS */
/* Services Section - Consistent Box Styling */
.services .boxes1,
.services .boxes2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.services .boxes1 .box,
.services .boxes2 .box {
  flex: 1 1 300px; /* Flexible sizing with min-width */
  max-width: 400px; /* Maximum width for large screens */
  min-width: 250px; /* Prevent boxes from getting too small */
  margin: 10px 0;
  text-align: center;
  border-radius: 12px;
  padding: 30px 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
  cursor: default;
  transition: all 0.4s ease;
}

.services .boxes1 .box:hover,
.services .boxes2 .box:hover {
  background: #EEA0D4;
  color: #fff;
}

.services .boxes1 .box .icon,
.services .boxes2 .box .icon {
  height: 50px;
  width: 50px;
  background: #EEA0D4;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  margin: 0 auto 10px auto;
  transition: all 0.4s ease;
}

.services .boxes1 .box:hover .icon,
.services .boxes2 .box:hover .icon {
  background-color: #fff;
  color: #EEA0D4;
}

.services .boxes1 .box:hover .topic,
.services .boxes1 .box:hover p,
.services .boxes2 .box:hover .topic,
.services .boxes2 .box:hover p {
  color: #fff;
  transition: all 0.4s ease;
}

/* Contact Me CSS */
.contact{
  background: #ffffff;
}
.contact .content{
  margin: 0 auto;
  padding: 30px 0;
}
.contact .text{
  width: 80%;
  text-align: center;
  margin: auto;
}
.contact .button {
  margin-top: 50px;
}

/* Footer CSS */
footer{
  background: #EEA0D4;
  padding: 15px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
footer .text span{
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}
footer .text span a{
  font-weight: 500;
  color: #FFF;
}
footer .text span a:hover{
  text-decoration: underline;
}
/* Scroll TO Top Button CSS */
.scroll-button a{
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  background: #f1a4d9;
  padding: 7px 12px;;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15);
  display: none;
} 

/* Responsive Media Query */
@media (max-width: 1190px) {
  section .content{
    width: 85%;
  }
}
@media (max-width: 1000px) {
  .about .about-details{
    justify-content: center;
    flex-direction: column;
  }
  .about .about-details .left{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .about-details .right{
    width: 90%;
    margin: 40px 0;
  }
  /* Fixed selector to match HTML structure */
  .services .boxes1 .box,
  .services .boxes2 .box{
    margin: 20px 0;
    width: calc(100% / 2 - 20px);
  }
}
@media (max-width: 900px) {
  .about .left img{
    height: 350px;
    width: 350px;
  }
}

/* de css voor de topics */
.clickable-link {
  color: black; /* Standaard kleur */
  text-decoration: none; /* Verwijdert de onderstreping */
  transition: color 0.3s ease; /* Voegt een vloeiende overgang toe */
}

.clickable-link:hover {
  color: white; /* Kleur bij hover (optioneel) */
}

.clickable-link:active {
  color: white; /* Kleur bij klikken */
}

/* Mobile Navigation and Layout */
@media (max-width: 750px) {
  nav .navbar {
    width: 90%;
  }
  
  nav .navbar .menu {
    position: fixed;
    top: 0;
    left: -100%; /* Start offscreen */
    background: #0E2431;
    height: 100vh;
    width: 75%; /* Cover most of screen but not all */
    padding-top: 60px;
    flex-direction: column;
    align-items: center; /* Center align items for better readability */
    transition: all 0.5s ease;
    z-index: 1000;
  }
  
  .navbar.active .menu {
    left: 0; /* Slide in from left */
    background-color: #a76f94;
  }
  
  nav .navbar .menu a {
    font-size: 18px; /* More readable size */
    display: block;
    color: #fff;
    margin: 15px 0;
    padding: 5px 15px;
  }
  
  nav.sticky .menu a:hover {
    color: #a66390;
  }
  
  nav .navbar .media-icons {
    display: none;
  }
  
  nav .menu-btn,
  .navbar .menu .cancel-btn {
    display: block;
    z-index: 1001;
  }
  
  /* Adjust text sizes for mobile */
  .home .text-line:nth-child(1) {
    font-size: clamp(16px, 5vw, 25px);
  }
  
  .home .text-line:nth-child(2) {
    font-size: clamp(30px, 10vw, 65px);
  }
  
  .home .text-line:nth-child(3) {
    font-size: clamp(20px, 7vw, 35px);
  }
  
  /* Skills section on mobile */
  .skills .skills-details {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .skills-details .text {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .skills-details .boxes {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  /* Fix box sizing for services on mobile */
  .services .boxes1 .box,
  .services .boxes2 .box {
    margin-bottom: 30px;
  }
  
  .contact .text {
    margin-top: 30px;
    width: 95%;
  }
}

/* Small screens */
@media (max-width: 500px) {
  /* Text sizing for better readability */
  .home .text-line:nth-child(1) {
    font-size: clamp(14px, 4vw, 18px);
  }
  
  .home .text-line:nth-child(2) {
    font-size: clamp(24px, 8vw, 40px);
  }
  
  .home .text-line:nth-child(3) {
    font-size: clamp(18px, 5vw, 24px);
  }
  
  /* Section adjustments */
  section .title span {
    font-size: 26px;
  }
  
  /* Box adjustments for better mobile display */
  .services .boxes1 .box,
  .services .boxes2 .box {
    min-width: 200px;
  }
  
  /* Image sizing */
  .about .left img {
    height: auto;
    width: 100%;
    max-width: 300px;
  }
}

/* Very small screens */
@media (max-width: 400px) {
  /* Further text size adjustments */
  .home .text-line:nth-child(1) {
    font-size: clamp(12px, 4vw, 16px);
  }
  
  .home .text-line:nth-child(2) {
    font-size: clamp(20px, 7vw, 30px);
  }
  
  .home .text-line:nth-child(3) {
    font-size: clamp(15px, 4vw, 20px);
  }
  
  /* Section modifications */
  section {
    padding-top: 30px;
  }
  
  section .content {
    width: 95%;
    margin: 25px auto;
  }
  
  /* Buttons sizing */
  .btn,
  .home .button button,
  section .button button,
  .cvbutton {
    width: 12em;
    height: 3.5em;
    font-size: 14px;
  }
  
  /* Box adjustments */
  .services .boxes1 .box,
  .services .boxes2 .box {
    padding: 20px 10px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #EEA0D4;
  --text-color: #0E2431;
  --bg-color: #F0F8FF;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Responsive Typography */
html {
  font-size: 16px;
}

@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 18px;
  }
  
}

/* Sections */
section {
  width: 100%;
  padding: 4rem 0;
}

.content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Flexbox Layouts */
.about .about-details,
.skills .skills-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .about .about-details,
  .skills .skills-details {
    flex-direction: column;
  }
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive Navigation */
nav .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
}

@media (max-width: 768px) {
  nav .navbar .menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  nav .navbar .menu-btn {
    display: block;
  }
}

/* Responsive Boxes */
.services .boxes,
.skills .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services .boxes .box,
.skills .boxes .box {
  flex-basis: calc(33.333% - 2rem);
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .services .boxes .box,
  .skills .boxes .box {
    flex-basis: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .services .boxes .box,
  .skills .boxes .box {
    flex-basis: 100%;
  }
}

/* Home Section */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home .home-content {
  width: 90%;
  max-width: 800px;
}

.home .text-two {
  font-size: clamp(2rem, 8vw, 5rem);
}

/* Typography Responsiveness */
@media (max-width: 480px) {
  .home .text-one { font-size: 1rem; }
  .home .text-two { font-size: 1.5rem; }
  .home .text-three { font-size: 1.8rem; }
  .home .text-four { font-size: 0.2rem; }
}

@media (max-width: 768px) {
  nav .navbar .menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #0E2431;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    z-index: 1000;
  }

  nav .navbar .menu.active {
    left: 40%;
  }

  nav .navbar .menu li {
    margin: 20px 0;
    right: 30px;
  }

  nav .navbar .menu a {
    font-size: 14px;
    color: white;
  }

  nav .menu-btn,
  nav .navbar .menu .cancel-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
    color: #fff;
    font-size: 24px;
  }
}

/* Skills Section Responsive */
.skills .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.skills .boxes .box {
  flex-basis: calc(33.33% - 15px);
  text-align: center;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .skills .boxes .box {
      flex-basis: calc(20% - 15px);
  }
}

@media (max-width: 480px) {
  .skills .boxes .box {
      flex-basis: 100%;
  }
}
.home .text-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .home .text-line {
    font-size: 1rem;
    text-align: center;
  }

  .home .text-line:nth-child(2) {
    font-size: 1.6rem;
  }

  .home .button button {
    font-size: 1.5rem;
    padding: 8px 16px;
  }
}

@media (max-width: 200px) {
  .home .text-line {
    font-size: 0.1rem;
  }

  .home .text-line:nth-child(2) {
    font-size: 3rem;
  }
  .home .text-line:nth-child(3) {
    font-size: 1rem;
  }
}

/* Nieuwe button styling */
.btn {
  border: none;
  width: 15em;
  height: 4em;
  border-radius: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #ffc2e3;
  cursor: pointer;
  transition: all 450ms ease-in-out;
  margin-top: 5px;
}

.sparkle {
  fill: #AAAAAA;
  transition: all 800ms ease;
}

.text {
  font-weight: normal;
  color: #919191;
  font-size: medium;
}

.btn:hover {
  background: linear-gradient(0deg,#faa3dd,#c782b0);
  box-shadow: inset 0px 1px 0px 0px rgba(248, 248, 248, 0.4),
              inset 0px -4px 0px 0px rgba(189, 189, 189, 0.2),
              0px 0px 0px 4px rgba(255, 255, 255, 0.2),
              0px 0px 180px 0px #ba7aa4;
  transform: translateY(-2px);
}

.btn:hover .text {
  color: white;
}

.btn:hover .sparkle {
  fill: white;
  transform: scale(1.2);
}

/* Toepassing op bestaande knoppen */
.home .button button,
section .button button,
.cvbutton {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 14em;
  height: 4em;
  border-radius: 3em;
  background: #ffc2e3;
  cursor: pointer;
  transition: all 450ms ease-in-out;
  font-weight: 200;
  color: #ffffff;
  font-size: medium;
  text-align: center;
  left: 20px;
  margin: auto;
}

.home .button button:hover,
section .button button:hover,
.cvbutton:hover {
  background: linear-gradient(0deg,#faa3dd,#c782b0);
  box-shadow: inset 0px 1px 0px 0px rgba(248, 248, 248, 0.4),
              inset 0px -4px 0px 0px rgba(189, 189, 189, 0.2),
              0px 0px 0px 4px rgba(255, 255, 255, 0.2),
              0px 0px 180px 0px #ba7aa4;
  transform: translateY(-2px);
  color: white;
  align-items: center;
}
.home .button button,
section .button button,
.cvbutton {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;  /* Adjusted gap for better spacing between sparkle and text */
  width: 14em;
  height: 4em;
  border-radius: 3em;
  background: #ffc2e3;
  cursor: pointer;
  transition: all 450ms ease-in-out;
  font-weight: 200;
  color: #cbcbcb;
  font-size: medium;
  margin: auto;
  padding: 0 20px;
}

/* Added specific styles for the sparkle and text */
.home .button button .sparkle,
section .button button .sparkle {
  display: flex;
  align-items: center;
  fill: currentColor;
}

.home .button button .text,
section .button button .text {
  display: flex;
  align-items: center;
  width: 50%;
  margin: auto;
}

.home .button button:hover,
section .button button:hover,
.cvbutton:hover {
  background: linear-gradient(0deg,#faa3dd,#c782b0);
  box-shadow: inset 0px 1px 0px 0px rgba(248, 248, 248, 0.4),
              inset 0px -4px 0px 0px rgba(189, 189, 189, 0.2),
              0px 0px 0px 4px rgba(255, 255, 255, 0.2),
              0px 0px 180px 0px #ba7aa4;
  transform: translateY(-2px);
  color: white;
}
.contact-content {
  color: #111111;
}

/* Updated Media Queries */
@media (max-width: 1000px) {
  .services .boxes1 .box,
  .services .boxes2 .box {
    flex: 1 1 280px;
  }
}

@media (max-width: 768px) {
  .services .boxes1 .box,
  .services .boxes2 .box {
    flex: 1 1 100%;
    max-width: 400px;
  }
  
  .skills-details .boxes {
    justify-content: center;
  }
  
  .skills-details .box {
    flex: 0 0 140px;
  }
}
@media (max-width: 480px) {
  .services .boxes1 .box,
  .services .boxes2 .box {
    margin: 10px 0;
    padding: 20px 10px;
  }
  
  .skills-details .box {
    flex: 0 0 120px;
  }
}