* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #F5F5F7;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

/* Introduction Section */
.introduction {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.introduction-section {
    position: absolute;
    top: 50%;
    left: 125px;
    transform: translateY(-50%);
    transition: left 0.4s ease-out;
}

.introduction-name,
.introduction-role {
    font-size: 80px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: font-size 0.4s ease-out;
}

.introduction-name {
    color: #1a1a1a;
    animation: textAppear 0.5s ease forwards 0.5s;
}

.introduction-name span {
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: rocketFly 1.5s forwards;
    animation-delay: 1.2s;
    z-index: 2;
}

.introduction-role {
    color: #0081FB;
    animation: textAppear 0.5s ease forwards 0.8s; 
}

.introduction-name::before,
.introduction-role::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #F5F5F7; /* Dark-mode color: #1a1a1a*/
    animation: curtainSweep 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    z-index: 1;
}

.introduction-role::before {
    animation-delay: 0.3s;
}

.reveal-overlay {
    display: none;
}

.rocketEmoji {
    padding-left: 15px;
    font-size: 60px;
}

@keyframes curtainSweep {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

@keyframes textAppear {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes revealSweep {
    0% { transform: scaleX(1); transform-origin: left; }
    100% { transform: scaleX(0); transform-origin: left; }
}

@keyframes rocketFly {
    0% {
        opacity: 0;
        transform: translate(-50px, 80px);
        z-index: -1;
    }
    15% {
        opacity: 0;
        z-index: -1;
    }
    20% {
        opacity: 1;
        z-index: 2;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
        z-index: 2;
    }
}
/* Experience Section */
.experience-section {
  height: 100vh;
  position: relative;
}

.experience-heading {
  padding-top: 100px;
  padding-left: 125px;
  font-size: 80px;
  font-weight: 600;
}

.experience-card-section {
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 15px;
  padding-left: 120px;
}

.experience-card {
  width: 350px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 12px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-card:hover {
  background-color:#d4d4d4;
}

.experience-card-info {
  padding-left: 20px;
}

.experience-card-company {
  font-size: 24px;
  font-weight: 700;
}

.experience-card-role {
  margin-top: 6px;
  font-weight: 500;
  color: #77818e;
  font-size: 16px;
}

.experience-card-date {
  margin-top: 2px;
  font-weight: 500;
  font-size: 16px;
}

.blue-text {
  color:#0081FB;
  font-weight: 500;
  font-size: 16px;
}

.experience-side {
  margin-top: 150px;
  position: absolute;
  top: 100px;
  right: 250px;
  width: 500px;
  height: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;    /* Links uitlijnen */
  justify-content: flex-start;/* Bovenaan uitlijnen */
  padding: 24px;            /* Ruimte rondom de tekst */
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  z-index: 10;
}

.experience-side.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Technologies Section */
.technologies-section {
    height: 100vh;
}

.technologies-heading {
    padding-top: 100px;
    font-size: 80px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
}

.technologies-heading span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s cubic-bezier(.4,0,.2,1),
    transform 0.6s cubic-bezier(.4,0,.2,1);
}

.technologies-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.technologies-heading.visible span {
  opacity: 1;
  transform: translateY(0);
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(305px, 1fr));
    gap: 20px;
    max-width: 1300px;
    margin: 80px auto 0; /* Increased margin-top to 80px */
    padding: 20px;
  }
  
  .technology-item {
    width: 305px;
    height: 80px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1), transform 0.6s cubic-bezier(.4,0,.2,1);
  }
  
  .technology-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .technology-icon {
    width: 56px;
    height: 56px;
    background-color: #D9D9D9;
    margin-left: 11px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .technology-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
  }

  .technology-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: 16px;
    height: 100%;
  }
  
  .technology-title {
    margin: 0;
    padding-top: 16px; /* minder ruimte boven */
    font-size: 18px;
  }
  
  .technology-description {
    margin: 0;
    margin-top: 8px;
    font-size: 14px;
    color: #666;
  }

#html {
  background-color: #FFE5CB; /* lichte oranje */
}
#css {
  background-color: #E5E5FF; /* lichte paars/blauw */
}
#javascript {
  background-color: #FFF9CC; /* lichte geel */
}
#tailwindcss {
  background-color: #D1FAF9; /* lichte cyan */
}
#reactjs {
  background-color: #E0F7FA; /* lichte blauw */
}
#nextjs {
  background-color: #F3F3F3; /* lichtgrijs */
}
#nodejs {
  background-color: #E6F4EA; /* lichte groen */
}
#laravel {
  background-color: #FFE5E5; /* lichte rood/roze */
}
#java {
  background-color: #FFF3E0; /* lichte oranje/beige */
}
#postgresql {
  background-color: #E3EAFD; /* lichte blauw */
}
#git {
  background-color: #FFEDE5; /* lichte oranje */
}
#figma {
  background-color: #F5E9FF; /* lichte paars */
}

/* Responsive Section */
@media screen and (max-width: 1020px) {
    .introduction-section,
    .technologies-section {
        left: 50px;
    }
    
    .introduction-name,
    .introduction-role,
    .rocketEmoji,
    .technologies-heading {
        font-size: 50px;
    }
}

@media screen and (max-width: 550px) {
    .introduction-section,
    .technologies-section {
        left: 25px;
    }
    
    .introduction-name,
    .introduction-role,
    .rocketEmoji,
    .technologies-heading {
        font-size: 36px;
    }
}


