/* Algemene stijlen */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
}

.preview-images {
    display: flex;
    gap: 8px; /* Ruimte tussen de afbeeldingen */
    margin-top: 10px; /* Ruimte boven de afbeeldingen */
    justify-content: center; /* Centreert de afbeeldingen */
}

.preview-images img {
    width: 50px;
    height: auto;
    border-radius: 5px;
}

/* Navbar-stijlen */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}


.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.name-highlight {
    color: #6A0DAD;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-item:hover, .nav-item.active {
    color: #6A0DAD;
}

.nav-item.active {
    border: 2px solid #6A0DAD;
    border-radius: 5px;
}

.contact-link {
    padding: 0.5rem 1.5rem;
    background-color: #6A0DAD;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-link:hover {
    background-color: #5500cc;
}

/* Hero-sectie */
.hero-section {
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.content {
    max-width: 600px;
    flex: 1;
}

.sander-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.image-container {
    margin-top: 30px;
    flex-shrink: 0;
    margin-left: 0; /* Remove margin-left */
    position: relative;
    animation: floatAnimation 6s ease-in-out infinite;
}

.profile-photo {
    left: 0; /* Remove left positioning */
    margin-top: 30px;
    width: 350px;
    height: auto;
    border-radius: 60px;
    border: 3px solid #6A0DAD;
    position: relative;
    z-index: 2;
    /* Coole schaduw en glow effecten */
    box-shadow: 
        0 0 30px rgba(106, 0, 255, 0.3),  /* Paarse glow */
        0 0 60px rgba(0, 0, 0, 0.3),      /* Donkere schaduw */
        15px 15px 30px rgba(0, 0, 0, 0.4), /* Directionele schaduw */
        inset 0 0 30px rgba(106, 0, 255, 0.2); /* Innerlijke glow */
    transition: all 0.3s ease;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
    margin: 10px 0;
}

h2 .highlight {
    color: #6A0DAD;
}

h3 {
    font-size: 24px;
    color: #AAA;
    margin: 10px 0;
}

h4 {
    font-size: 20px;
    color: #fff;
    margin: 10px 0;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #6A0DAD }
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin: 20px 0;
}

.buttons {
    margin-top: 20px;
}

.btn {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    display: inline-block;
}

.download-btn {
    background-color: #6A0DAD;
    border: 2px solid #6A0DAD;
    transition: background-color 0.3s, color 0.3s;
}

.download-btn:hover {
    background-color: transparent;
    color: #ffffff;
}

.more-btn {
    background-color: transparent;
    border: 2px solid white;
    transition: background-color 0.3s, color 0.3s;
}

.more-btn:hover {
    background-color: white;
    color: #121212;
}


.image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 110px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #6A0DAD, transparent);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

.image-container::after {

    content: '';
    position: absolute;
    bottom: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(-45deg, rgba(106, 0, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite alternate;
}

.image-container:hover .profile-photo {
    left: 110px;
    transform: scale(1.02);
    box-shadow: 
        0 0 40px rgba(106, 0, 255, 0.4),
        0 0 80px rgba(0, 0, 0, 0.4),
        20px 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(106, 0, 255, 0.3);
}

/* Animaties */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}



/* Sociale media links */
.social-icon {
    margin-top: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: radial-gradient(circle at center, 
        rgba(100,100,100,0.8) 0%,
        rgba(70,70,70,0.8) 30%,
        rgba(40,40,40,0.9) 60%,
        rgba(20,20,20,1) 100%
    );
    border-radius: 16px;
    box-shadow: 
        inset 0 2px 4px rgba(255,255,255,0.1),
        inset 0 -2px 4px rgba(0,0,0,0.2),
        0 0 1px rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0) 50%
    );
    border-radius: inherit;
}

.social-icon:hover {
    transform: scale(1.05);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
}

.social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 15px; Ruimte tussen tekst en iconen */
}




.icon-container {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Ruimte tussen afbeelding en social media */
}
/* Container voor de afbeelding en social media */

.social-icons-container {
    display: flex;
  
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: baseline;
    gap: 20px;
}



/* GitHub - Grijs */
.github-icon {
    background: rgba(40, 40, 40, 0.9);
}

/* Instagram - Gradient */
.instagram-icon {
    background: rgba(40, 40, 40, 0.9);
    position: relative;
    overflow: hidden;
}

/* Twitter/X - Zwart */
.twitter-icon {
   
}

.icon-container img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

/* Hover effecten */
.github-icon:hover {
    transform: translateY(-5px);
   
}

.instagram-icon:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0.9;
}

.twitter-icon:hover {
    transform: translateY(-5px);
    
}

/* About/Services Section */
.about-section {
    padding: 100px 5%;
    text-align: center;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.section-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    line-height: 1.3;
}

/* Services Slider */
.services-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    min-width: 300px;
    flex-shrink: 0;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: scale(0.85);
    opacity: 0.5;
}

.service-card.active {
    transform: scale(1);
    opacity: 1;
    border: 2px solid #6A0DAD;
    box-shadow: 0 0 20px rgba(106, 0, 255, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(106, 0, 255, 0.5));
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

/* Slider Controls */
.slider-controls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background: rgba(106, 0, 255, 0.1);
    border: 1px solid #6A0DAD;
    color: #6A0DAD;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.prev-btn:hover, .next-btn:hover {
    background: #6A0DAD;
    color: white;
}

/* Projects Section */
.projects-section {
    padding: 100px 5%;
    background-color: #121212;
    min-height: 100vh;
}

.outline-text {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    color: transparent;
    font-size: 7rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    text-align: center;
}

.cool-text {
    font-size: 5rem;
    color: rgba(138, 43, 226, 0.85); /* Faint text color in a brighter purple */
    text-shadow: 0 0 15px rgba(148, 0, 211, 0.3), 0 0 30px rgba(186, 85, 211, 0.2), 0 0 45px rgba(255, 255, 255, 0.1); /* Subtle glow in purple shades */    
    filter: blur(1px); /* Blur effect */
    transition: filter 0.5s ease-in-out, color 0.5s ease-in-out;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    color: transparent;
    font-size: 7rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
    text-align: center;
}

.cool-text:hover {
    filter: blur(0); /* Removes blur on hover */
    color: rgba(255, 255, 255, 0.496); /* Full opacity on hover */
}


.sub-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-card {
    background: rgba(20, 20, 35, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.project-image, .project-placeholder {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

.project-placeholder {
    background: rgba(30, 30, 45, 0.8);
}

.project-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.project-title {
    margin: 0;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto; /* Aligns the button container to the right */
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto; /* Aligns the button container to the right */
}

.view-details {
    margin-bottom: 5px; /* Adjust as needed */
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-git-squared {
    font-size: 10px; 
}
.project-title.green {
    color: #00FF85;
}

.project-title.red {
    color: #eb0808;
}

.project-title.blue {
    color: #5c72ca;
}

.project-title.yellow {
    color: #FFB800;
}

.project-title.purple {
    color: #9b11df;
}

.view-details {
    background: #6A0DAD;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.view-details:hover {
    background: #5500cc;
}

/* Project CTA Section */
.project-cta {
    margin-top: 4rem;
    text-align: center;
}

.project-cta p {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.cta-buttons a {
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.more-projects {
    color: #2D5BFF;
}

.email-me {
    color: white;
    background: #6A0DAD;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-me::before {
    content: "✉";
    font-size: 1.2rem;
}

.email-me:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Hire Section */
.hire-section {
    padding: 100px 5%;
    background-color: #121212;
    min-height: 100vh;
}

.qualities-container {
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
}

.quality-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(106, 0, 255, 0.1);
    border: 2px solid #6A0DAD;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    color: #6A0DAD;
    font-size: 2rem;
}

.quality-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quality-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}


/* Tools Section */
.tools-section {
    background-color: #121212;
    padding: 4rem 2rem;
    text-align: center;
}

.tools-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.tool-icon {
    width: 100px;
    height: 100px;
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.tool-icon:hover {
    transform: translateY(-10px);
}

.tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    background-color: #1b1a1a;
    padding: 4rem 2rem;
    color: white;
}

.get-in-touch {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 80px;  /* Stel een vaste breedte in, pas dit aan voor de gewenste grootte */
    height: 80px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.contact-icon img {
    max-width: 100%; /* Beperk de breedte van de afbeelding */
    max-height: 100%; /* Beperk de hoogte van de afbeelding */
    object-fit: contain; /* Zorg dat de afbeelding binnen de container blijft */
}


.contact-text span {
    color: #666;
    font-size: 0.9rem;
}

.contact-text p {
    color: white;
    margin-top: 0.3rem;
}

.about-me-section {
    background-color: #121212;
    padding: 100px 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease;
}

.about-content.active {
    opacity: 1;
    transform: translateX(0);
}

.intro-text {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.intro-text .highlight {
    color: #6A0DAD;
    font-weight: bold;
}

.text-block {
    color: #999;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}


.info-dot {
    width: 8px;
    height: 8px;
    background-color: #6A0DAD;
    border-radius: 50%;
}

.info-label {
    flex-direction: column;
    color:#6A0DAD;
    font-weight: 500;
}

.info-text {
    color: white;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}



.info-item .label {
    display: block;
    color: #6A0DAD;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center; /* Zorg ervoor dat labels gecentreerd zijn */
}

.info-item .value {
    color: #fff;
    font-size: 1.1rem;
    text-align: center; /* Zorg ervoor dat waardes gecentreerd zijn */
}

.about-image {
    flex: 1;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease;
}

.about-image.active {
    opacity: 1;
    transform: translateX(0);
}

.image-frame {
    position: relative;
    width: 400px;
    height: 500px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.frame-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #6A0DAD;
    border-radius: 20px;
    z-index: 1;
}


/* Animation for frame decoration */
@keyframes frameFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.frame-decoration {
    animation: frameFloat 3s ease-in-out infinite;
}






/* Fade-in animatie voor secties */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    visibility: hidden;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Slide-in animatie voor elementen */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.slide-in-left.active, 
.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Page transition animatie */
.page-transition {
    animation: pageTransition 1s ease;
}



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

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Hover effect voor navbar items */
.nav-item {
    position: relative;
    overflow: hidden;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--not-white-title-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-item:hover::after {
    transform: translateX(0);
}

/* Basis reveal animatie */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Optioneel: verschillende reveal richtingen */
.reveal-left {
    transform: translateX(-100px);
}

.reveal-right {
    transform: translateX(100px);
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}

