/* 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: 250px; /* 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 {
    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 {

  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  margin-bottom: 5px; /* ruimte tussen link en iconen */
}

.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;
}

.project-title.orange {
    color: #FF6F00;
}
.project-title.teal {
    color: #00BFA5;
}

.project-title.pink {
    color: #FF4081;
}

.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: 10rem 18rem;
    text-align: center;
}

.tools-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    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: rgb(255, 255, 255);
}

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

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

.contact-info {
    display: flex;
    flex-direction: row;  /* ✅ Zet items naast elkaar */
    gap: 2rem;
    flex-wrap: wrap;      /* ✅ Laat ze afbreken op kleine schermen */
    justify-content: space-between; /* Verspreid ze netjes */
}


.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: #dbdbdb;
    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);
}

.icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.icon-row {
  margin-top: 100px;
   display: flex;
  gap: 5px;
}

.icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  vertical-align: middle;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Turret+Road:wght@200;300;400;500;700;800&display=swap');

:root {
    --hue-color: 242;

    --skin-color: hsl(342, 92%, 46%);
    --mirage-color: hsl(210, 10%, 23%);
    --title-color: hsl(var(--hue-color), 8%, 95%);
    --text-color: hsl(var(--hue-color), 8%, 85%);
    --body-color: hsl(var(--hue-color), 19%, 5%);
    --box-color: hsl(var(--hue-color), 14%, 10%);
    --scroll-box-color: hsl(var(--hue-color), 12%, 38%);
    --scroll-thumb-color: hsl(var(--hue-color), 12%, 26%);

    --body-font: 'Poppins', sans-serif;
    --signature-font: 'Turret Road', sans-serif;

    --biggest-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;

    --font-medium: 500;
    --font-bold: 600;

    --mb025: .25rem;
    --mb05: .5rem;
    --mb075: .75rem;
    --mb1: 1rem;
    --mb15: 1.5rem;
    --mb2: 2rem;
    --mb25: 2.5rem;
    --mb3: 3rem;

    --z-fixed: 10;
    --z-modal: 100;

}

@media screen and (max-width: 1024px) {
    :root {
        --biggest-font-size: 2rem;
        --h1-font-size: 1.5rem;
        --h2-font-size: 1.25rem;
        --h3-font-size: 1.125rem;
        --normal-font-size: .938rem;
        --small-font-size: .813rem;
        --smaller-font-size: .75rem;
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, button, input { font-family: var(--body-font); font-size: var(--normal-font-size); }
    body { background-color: var(--body-color); color: var(--text-color); }
h1, h2, h3 { color: var(--title-color); font-weight: var(--font-bold); }
ul { list-style: none; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; }
    button, input { border: none; outline: none; }
.container { max-width: 1250px; margin-left: auto; margin-right: auto; }
.grid { display: grid; }
.button { 
    display: inline-flex; 
    align-items: center; 
    column-gap: .5rem; 
    background-color: var(--skin-color); 
    color: var(--title-color); 
    padding: 0.75rem 1.4rem; 
    border-radius: .25rem; 
    font-weight: var(--font-medium);
    position: relative;
    z-index: 1;
    transition: .4s;
}
    .button::after { 
        position: absolute; 
        content: ''; 
        left: 0; 
        top: 0; 
        width: 100%; 
        height: 100%; 
        background-color: var(--mirage-color); 
        z-index: -1;
        transform-origin: center; 
        transform: scale(0); 
        border-radius: .25rem;
        transition: .3s; 
    }
        .button:hover::after { transform: scale(1); }
.section { padding: 6.5rem 0 2rem; }
.section-title { text-align: center; font-size: var(--h1-font-size); margin-bottom: var(--mb3); }
    .section-title::before { content: attr(data-heading); display: block; font-size: var(--normal-font-size); font-weight: var(--font-medium); color: var(--skin-color); }
::-webkit-scrollbar { width: 0.6rem; background-color: var(--scroll-box-color); border-radius: .5rem; }
::-webkit-scrollbar-thumb { background-color: var(--scroll-thumb-color); border-radius: .5rem; }

/* Sidebar */

.sidebar { position: fixed; width: 100px; height: 100vh; background-color: var(--body-color); border-right: 1px solid var(--box-color); }
.nav-logo { position: absolute; left: 0; right: 0; top: 1.8rem; width: 40px; height: 40px; border-radius: 50%; background-color: var(--skin-color); text-align: center; margin: auto; }
.nav-logo-text { font-size: 1.125rem; color: var(--title-color); font-weight: var(--font-bold); line-height: 40px; }
.nav-menu { position: fixed; transform: rotate(-90deg) translateX(-100%); transform-origin: left top; width: 100vh; }
.menu { display: flex; }
.nav-list { display: flex; flex-direction: row-reverse; margin: -2px auto 0 auto; }
.nav-link { float: right; height: 100%; line-height: 100px; padding: 0 1rem; color: var(--title-color); font-weight: var(--font-medium); position: relative; transition: .4s; }
.nav-toggle {
    height: 32px;
    width: 36px;
    cursor: pointer;
    position: fixed;
    right: 1.5rem;
    top: 2rem;
    font-size: 1.2rem;
    border-radius: .25rem;
    background-color: var(--skin-color);
    color: var(--title-color);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.nav-close { font-size: 1.5rem; position: absolute; top: 1rem; right: 1.25rem; cursor: pointer; display: none; }
    .nav-link.active-link, .nav-link:hover { color: var(--skin-color); }
        .nav-link.active-link::after, .nav-link:hover::after {
            position: absolute;
            content: '';
            width: 6px;
            height: 6px;
            background-color: var(--skin-color);
            border-radius: 50%;
            bottom: 1.8rem;
            left: 0;
            right: 0;
            margin: auto;
        }
.btn-share { position: absolute; bottom: 1.8rem; left: 0; right: 0; text-align: center; cursor: pointer; }
.social-share { font-size: 1.5rem; }

/* Main - Home */

.main { margin-left: 100px; }
.home { background: url('fotos/sanderrrrrrrrrr.jpg'); background-size: cover; background-position: center center; height: 90vh; }
.home-container { position: relative; height: 100%; align-items: center; }
.home-social { position: absolute; top: 1.8rem; left: 0; display: flex; align-items: center; column-gap: 3.5rem; }
.home-social-follow { font-weight: var(--font-medium); position: relative; }
    .home-social-follow::after { content: ''; position: absolute; width: 1rem; height: 2px; background-color: var(--text-color); right: -45%; top: 50%; }
.home-social-links { display: inline-flex; column-gap: 1rem; }
.home-social-link { font-size: 1.08rem; color: var(--text-color); transition: .4s; }
    .home-social-link:hover { transform: translateY(.25rem); }
.home-img { display: none; }
.home-title { font-size: var(--biggest-font-size); }
.home-subtitle { font-size: var(--h3-font-size); font-weight: var(--font-medium); margin-bottom: var(--mb075); }
.home-description { max-width: 450px; margin-bottom: var(--mb2); }
.my-info { display: flex; column-gap: 1.8rem; position: absolute; left: 0; bottom: 1.8rem; }
.info-item { display: flex; align-items: center; }
.info-title, .info-subtitle { font-size: var(--small-font-size); }
    .info-title { font-weight: var(--font-medium); }
.info-icon { font-size: 1.8rem; color: var(--skin-color); margin-right: var(--mb075); }

/* Main - About */

.about-container { grid-template-columns: repeat(2, 1fr); column-gap: 4rem; align-items: center; }
.about-img { width: 480px; border-radius: .75rem; justify-self: center; }
.about-heading { font-size: var(--h3-font-size); margin-bottom: var(--mb075); }
.about-description { text-align: justify; padding-right: 6rem; margin-bottom: var(--mb2); }
.about-info { display: grid; grid-template-columns: repeat(3, 140px); column-gap: .5rem; margin-bottom: var(--mb3); }
.about-box { text-align: center; border-radius: .25rem; padding: 1rem 1.25rem; background-color: var(--box-color); }
.about-icon { font-size: 1.5rem; color: var(--skin-color); margin-bottom: var(--mb075); }
.about-title { font-size: var(--small-font-size); }
.about-subtitle { font-size: var(--small-font-size); }

/* Main - Qualification */

.qualification-container { column-gap: 3rem; justify-content: center; }
.qualification-title { font-size: var(--h3-font-size); font-weight: var(--font-medium); margin-bottom: var(--mb2); }
.timeline-item { position: relative; margin-bottom: var(--mb25); padding-left: 3rem; }
    .timeline-item:last-child { margin-bottom: 0; }
    .timeline-item::before { content: ''; width: 1px; position: absolute; left: 0.48rem; top: 0; height: 100%; background-color: var(--skin-color); }
.circle-dot { position: absolute; left: 0; top: 0; height: 1rem; width: 1rem; border: 2px solid var(--skin-color); border-radius: 50%; background-color: var(--skin-color); transition: .4s; }
    .timeline-item:hover .circle-dot { background-color: var(--body-color); }
.timeline-title { font-size: var(--normal-font-size); font-weight: var(--font-medium); margin-bottom: var(--mb025); }
.timeline-text { font-size: var(--smaller-font-size); margin-bottom: var(--mb1); }
.timeline-date { display: flex; align-items: center; column-gap: .4rem; font-size: var(--normal-font-size); color: var(--skin-color); }

/* Main - Skills */ 

.skills-container { grid-template-columns: 360px 320px; column-gap: 3rem; justify-content: center; }
.skills-header { display: flex; align-items: center; cursor: pointer; }
    .skills-header:not(:last-child) { margin-bottom: var(--mb25); }
.skills-icon, .skills-arrow { font-size: 2rem; color: var(--skin-color); }
    .skills-icon { margin-right: var(--mb075); }
    .skills-arrow { margin-left: auto; }
        .skills-active .skills-arrow { transform: rotate(-90deg); transition: .4s; }
.skills-title { font-size: var(--h3-font-size); font-weight: var(--font-medium); }
.skills-subtitle { font-size: var(--small-font-size); }
.skills-list { row-gap: 1.8rem; }
.skills-titles { display: flex; justify-content: space-between; margin-bottom: var(--mb05); }
.skills-name { font-size: var(--normal-font-size); font-weight: var(--font-medium); }
.skills-bar, .skills-percentage { height: 5px; border-radius: .25rem; }
    .skills-bar { background-color: var(--box-color); }
    .skills-percentage { display: block; background-color: var(--skin-color); }
.skills [data-content] { display: none; }
    .skills-active[data-content] { display: block; }

/* Main - Work */ 

.work-container { grid-template-columns: repeat(3, 330px); gap: 1.8rem; justify-content: center; padding-top: 1rem; }
.work-filters { display: flex; justify-content: center; align-items: center; column-gap: .75rem; margin-bottom: 2rem; }
.work-item { cursor: pointer; color: var(--title-color); padding: 0.25rem .75rem; font-weight: var(--font-medium); border-radius: .5rem; }
.work-card { background-color: var(--box-color); padding: 1.25rem; border-radius: .5rem; }
.portfolio-item-details { display: none; }
.work-img { border-radius: .5rem; margin-bottom: var(--mb1); }
.work-title { font-size: var(--normal-font-size); font-weight: var(--font-medium); margin-bottom: var(--mb05); }
.work-button { color: var(--skin-color); font-size: var(--small-font-size); display: flex; align-items: center; column-gap: .25rem; cursor: pointer; }
.work-button-icon { font-size: 1rem; transition: .4s; }
    .work-button:hover .work-button-icon { transform: translateX(.25rem); }
.active-work { background-color: var(--skin-color); color: var(--title-color); }

.portfolio-popup { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background-color: rgba(0, 0, 0, .5); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0 1rem;
    opacity: 0;
    visibility: hidden; 
    z-index: var(--z-modal); 
    transition: .4s; 
}
.portfolio-popup.open { opacity: 1; visibility: visible; }
.portfolio-popup-inner { background-color: var(--box-color); width: 900px; border-radius: .5rem; padding: 2.5rem; position: relative; }
.portfolio-popup-content { grid-template-columns: repeat(2, 1fr); align-items: center; column-gap: 3rem; }
.portfolio-popup-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; color: var(--skin-color); cursor: pointer; }
.portfolio-popup-img { border-radius: .5rem; }
.portfolio-popup-subtitle { font-size: var(--smaller-font-size); margin-bottom: var(--mb025); }
.details-title { font-size: var(--h3-font-size); font-weight: var(--font-medium); margin-bottom: var(--mb1); }
.details-description { font-size: var(--small-font-size); margin-bottom: var(--mb2); }
.details-info li { margin-bottom: var(--mb075); text-transform: capitalize; font-size: var(--small-font-size); }
    .details-info li:last-child { margin-bottom: 0; }
    .details-info li span { font-weight: normal; }
    .details-info li a { text-transform: lowercase; color: var(--skin-color); }

/* Main - Services */ 

.services-container { grid-template-columns: repeat(3, 250px); justify-content: center; column-gap: 1.8rem; }
.services-content { position: relative; background-color: var(--box-color); padding: 6rem 0 2rem 2.5rem; border-radius: .25rem; }
.services-icon { display: block; font-size: 1.8rem; color: var(--skin-color); margin-bottom: var(--mb1); }
.services-title { font-size: var(--h3-font-size); margin-bottom: var(--mb1); font-weight: var(--font-medium); }
.services-button { color: var(--skin-color); font-size: var(--small-font-size); display: flex; align-items: center; column-gap: .25rem; cursor: pointer; }
.services-button-icon { font-size: 1rem; transition: .4s; }
    .services-button:hover .services-button-icon { transform: translateX(.25rem); }
.services-modal {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background-color: rgba(0, 0, 0, .5); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0 1rem;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden; 
    transition: .4s;
}
.active-modal { opacity: 1; visibility: visible; }
.services-modal-content { width: 500px; position: relative; background-color: var(--box-color); padding: 4.5rem 2.5rem 2.5rem; border-radius: .5rem; }
.services-modal-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; color: var(--skin-color); cursor: pointer; }
.services-modal-title, .services-modal-description { text-align: center; }
    .services-modal-title { font-size: var(--h3-font-size); font-weight: var(--font-medium); margin-bottom: var(--mb1); }
    .services-modal-description { font-size: var(--small-font-size); padding: 0 3.5rem; margin-bottom: var(--mb2); }
.services-modal-services { row-gap: var(--mb075); }
.services-modal-service { display: flex; align-items: center; column-gap: .5rem; }
.services-modal-icon { color: var(--skin-color); font-size: 1.1rem; }
.services-modal-info { font-size: var(--small-font-size); }

/* Main - Testimonials */

@media screen and (min-width: 992px) {
    .testimonials-container { width: 750px; margin-left: auto !important; margin-right: auto !important; }
}

.testimonial-card { background-color: var(--box-color); padding: 1.8rem 2rem; border-radius: .5rem; margin-bottom: 3rem; }
.testimonial-quote { display: inline-flex; font-size: 1.5rem; color: var(--skin-color); margin-bottom: var(--mb1); }
.testimonial-description { margin-bottom: var(--mb1); font-size: var(--small-font-size); text-align: justify; }
.testimonial-date { font-size: var(--normal-font-size); margin-bottom: var(--mb2); }
.testimonial-profile { display: flex; align-items: center; column-gap: 1rem; }
.testimonial-profile-img { width: 60px; height: 60px; border-radius: 3rem; }
.testimonial-profile-name { font-size: var(--h3-font-size); font-weight: var(--font-medium); color: var(--title-color); }
.testimonial-profile-detail { font-size: var(--small-font-size); display: block; }
.testimonial-profile-data { display: flex; flex-direction: column; row-gap: .4rem; }

/* Swiper */

.swiper-pagination-bullet { background-color: var(--box-color); }
.swiper-pagination-bullet-active { background-color: var(--skin-color); }

/* Main - Contact */

.contact-container { grid-template-columns: 300px 340px; column-gap: 3rem; justify-content: center; align-items: center; }
.contact-info { display: grid; row-gap: 1rem; }
.contact-card { background-color: var(--box-color); padding: 1rem; border-radius: .5rem; text-align: center; }
.contact-card-icon { font-size: 1.8rem; color: var(--title-color); margin-bottom: var(--mb025); }
.contact-card-title, .contact-card-data { font-size: var(--small-font-size); }
    .contact-card-title { font-weight: var(--font-medium); }
    .contact-card-data { display: block; margin-bottom: var(--mb075); }
.contact-button { color: var(--skin-color); font-size: var(--small-font-size); display: flex; align-items: center; justify-content: center; column-gap: .25rem; cursor: pointer; }
.contact-button-icon { font-size: 1rem; transition: .4s; }
    .contact-button:hover .contact-button-icon { transform: translateX(.25rem); }
.input-container { position: relative; margin-top: 1rem; margin-bottom: 1.9rem; }
.input { 
    width: 100%; 
    border: 2px solid var(--text-color); 
    background-color: transparent; 
    padding: 0.6rem 1.2rem; 
    color: var(--title-color); 
    font-weight: var(--font-medium); 
    font-size: var(--normal-font-size); 
    letter-spacing: .5px; 
    border-radius: .5rem;
    outline: none; 
    transition: .4s; 
}
textarea.input { padding: 0.8rem 1.2rem; min-height: 140px; border-radius: .5rem; resize: none; font-family: var(--body-font); }
    .input-container label {
        position: absolute;
        top: 50%;
        left: 1rem;
        transform: translateY(-50%);
        padding: 0 .4rem;
        color: var(--text-color);
        font-size: 1rem;
        font-weight: var(--font-medium);
        pointer-events: none;
        z-index: 15;
        transition: .5s;
    }
        
        .input-container.textarea label { top: 1rem; transform: translateY(0); }
    .input-container span { 
        position: absolute; 
        top: 0; 
        left: 25px; 
        transform: translateY(-50%); 
        font-size: var(--small-font-size); 
        padding: 0 .4rem; 
        pointer-events: none; 
        z-index: var(--z-fixed); 
        color: transparent; 
    }
        .input-container span::before, .input-container span::after { 
            content: '';
            position: absolute;
            width: 10%;
            opacity: 0;
            height: 5px;
            background-color: var(--body-color);
            top: 50%;
            transform: translateY(-50%);
            transition: .4s;
        }
            .input-container span::before { left: 50%; }
            .input-container span::after { right: 50%; }
            .input-container.focus label { top: 0; transform: translateY(-50%); left: 25px; font-size: var(--smaller-font-size); }
                .input-container.focus span::before, .input-container.focus span::after  { width: 50%; opacity: 1; }

/* Footer */

.footer { padding-top: 2rem; }
.footer-container { grid-template-columns: repeat(3, 1fr); column-gap: 1.6rem; }
.footer-bg { background-color: var(--box-color); padding: 3rem 0 3.5rem; }
.footer-title { font-size: var(--h1-font-size); margin-bottom: var(--mb025); }    
.footer-subtitle { font-size: var(--small-font-size); }
.footer-links { display: flex; justify-self: center; column-gap: 2rem; }
    .footer-links:hover { color: var(--skin-color); }
.footer-socials { justify-self: flex-end; }
.footer-social { font-size: 1.25rem; margin-right: var(--mb15); }
    .footer-social:hover { color: var(--skin-color); }
.footer-copy { font-size: var(--smaller-font-size); text-align: center; margin-top: 4.5rem; }
    .footer-copy a { font-family: var(--signature-font); } 
        .footer-copy a:hover { color: var(--skin-color); }
    .footer-title, .footer-subtitle, .footer-links, .footer-social, .footer-copy a { color: var(--title-color); }

/* Media Queries */

@media screen and (max-width: 1408px) {
    .container { margin-left: var(--mb25); margin-right: var(--mb25); }
}

@media screen and (max-width: 1216px) {
    .about-container { column-gap: 2.5rem; }
    .about-description { padding-right: 0; }
    .work-container { grid-template-columns: repeat(2, 330px); gap: 3rem; }
}

@media screen and (max-width: 1024px) {
    .container { margin-left: var(--mb15); margin-right: var(--mb15); }
    .sidebar { width: 100%; z-index: 999; transform: translateX(-100%); }
    .show-sidebar { transform: translateX(0); }
    .nav-logo, .btn-share { display: none; }
    .nav-menu { height: 100%; width: 100%; transform: rotate(0deg) translateX(0); display: flex; justify-content: center; }
    .nav-list { flex-direction: column; height: 100%; justify-content: center; align-items: center; }
    .nav-link { padding: 1rem 0; line-height: 1.5; }
        .nav-link.active-link::after, .nav-link:hover::after { bottom: 0; }
    .nav-close { display: block; }
    .nav-toggle { display: flex; }

    .main { margin-left: 0; }

    .about-container { grid-template-columns: 1fr; row-gap: 2.5rem; }
    .about-img { width: 350px; }
    .about-data { text-align: center; }
    .about-info { justify-content: center; }
    .about-box { padding: 0.75rem .5rem; }
    .about-description { padding: 0 4rem; text-align: center; }

    .qualification-container { grid-template-columns: repeat(2, 290px); }
    .skills-container { grid-template-columns: 340px 300px; }
    .skills-list { row-gap: 1.7rem; }

    .work-card { padding: 1rem; }
    .work-img { margin-bottom: var(--mb075); }
    .work-title { margin-bottom: var(--mb025); }

    .services-container { grid-template-columns: repeat(3, 220px); }

    .testimonial-card { padding: 1.25rem 1.5rem; }

    .portfolio-item-details { margin-bottom: var(--mb15); }
    .details-info li { margin-bottom: var(--mb05); }
    .details-title { margin-bottom: var(--mb075); }
}

@media screen and (max-width: 768px) {
    .about-img { width: 250px; }
    .qualification-container { grid-template-columns: 290px; row-gap: 3rem; }
    .skills-container { grid-template-columns: 300px; row-gap: 3rem; }
    .work-container { grid-template-columns: 330px; }

    .services-container { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .services-content { padding: 3.5rem .5rem 1.25rem 1.5rem; }
    .services-icon { font-size: 1.5rem; }

    .contact-container { grid-template-columns: 360px; row-gap: 3rem; }
    .footer-container { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
    .footer-socials { justify-self: start; }
    .footer-links { flex-direction: column; row-gap: 1.5rem; }
    .footer-bg { padding: 2rem 0 3rem; }
    .footer-copy { margin-top: var(--mb3); }

    .portfolio-popup-inner { width: 420px; padding: 2.8rem 1.5rem 2.5rem; }
    .portfolio-popup-content { grid-template-columns: 1fr; row-gap: 1.6rem; }
    .details-title { font-size: var(--normal-font-size); }
    .portfolio-popup-close { top: .5rem;  }
}

@media screen and (max-width: 576px) {
    .nav-toggle { right: initial; left: 1.5rem; }
    .home { background-image: none; height: initial; align-items: initial; padding: 7rem 0 2rem; }
    .home-container { row-gap: 2rem; }
    .home-img { display: block; width: 250px; justify-self: center; }
    .my-info { display: none; }
    .home-social { left: initial; right: -1rem; flex-direction: column; row-gap: 3.5rem; }
    .home-social-follow { font-size: var(--smaller-font-size); transform: rotate(90deg); }
    .home-social-links { flex-direction: column; row-gap: .25rem; }
    .home-social-link { font-size: var(--normal-font-size); }

    .about-info { grid-template-columns: repeat(3, 1fr); }
    .about-description { padding: 0; }

    .services-modal-content { padding: 4.5rem 1.5rem 2.5rem; }
    .services-modal-description { padding: 0; }

    .work-container, .contact-container { grid-template-columns: 300px; }

    .footer-container { grid-template-columns: 1fr;  }
    .footer-links { justify-self: flex-start; }

}

@media screen and (max-width: 350px) {
    .container { margin-left: var(--mb1); margin-left: var(--mb1); }
    .home-img { width: 200px; }
    .home-title { font-size: var(--h1-font-size); }
    .home-subtitle { font-size: var(--normal-font-size); }
    
    .about-info { grid-template-columns: repeat(2, 1fr); row-gap: .5rem; }
    .work-container, .skills-container, .qualification-container, .contact-container { grid-template-columns: 1fr; }
    .skills-title { font-size: var(--normal-font-size); }
    .work-item { font-size: var(--normal-font-size); }
    .work-filters { column-gap: .25rem; }
    .services-container { grid-template-columns: max-content; }
    .services-content { padding-right: 3.5rem; }
}

