/* Variables */
:root {
    --primary-color: #F97316;
    --secondary-color: #38bdf8;
    --accent-color: #3490dc;
    --text-color: #27272a;
    --text-light: #71717a;
    --bg-color: #ffffff;
    --bg-light: #f4f4f5;
    --border-color: #e4e4e7;
    --gradient-1: linear-gradient(135deg, #F97316, #fb923c);
    --gradient-2: linear-gradient(135deg, #38bdf8, #0ea5e9);
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    transition: transform 0.1s ease;
}

@media (min-width: 769px) {
    .cursor-dot,
    .cursor-outline {
        opacity: 1;
    }
}

/* Page Loader */
#page-loader {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-content {
    width: 200px;
}

.loader-progress-bar {
    width: 100%;
    height: 4px;
    background-color: #f4f4f5;
    border-radius: 2px;
    overflow: hidden;
    margin: 8px 0;
}

.loader-progress-fill {
    height: 100%;
    background: var(--gradient-1);
    width: 0;
    transition: width 0.5s ease;
}

/* Header & Navigation */
#header {
    background-color: transparent;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-icon {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

#mobile-menu {
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-link {
    display: inline-block;
    position: relative;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-1);
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: all 0.3s ease;
    z-index: -1;
    opacity: 0.2;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--text-color);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.badge-animated {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-2 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Scroll Down Animation */
.scroll-down {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 60px;
    position: relative;
}

.wheel {
    background-color: currentColor;
    width: 4px;
    height: 8px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    animation: scrollWheel 2s ease infinite;
}

.scroll-text {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.scroll-arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-light);
    border-bottom: 2px solid var(--text-light);
    transform: rotate(45deg);
    animation: scrollArrow 2s infinite;
    margin-left: 5px;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero Image Animation */
.hero-image-container {
    position: relative;
    height: 580px;
    width: 100%;
}

.hero-image {
    position: relative;
    width: 80%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card-1,
.hero-floating-card-2 {
    position: absolute;
    background-color: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite alternate;
}

.hero-floating-card-1 {
    top: 15%;
    left: 0;
    animation-delay: 0.5s;
}

.hero-floating-card-2 {
    bottom: 20%;
    right: 0;
    animation-delay: 1s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero-decoration-1,
.hero-decoration-2 {
    position: absolute;
    border-radius: 30px;
    z-index: 1;
}

.hero-decoration-1 {
    width: 60%;
    height: 80%;
    top: -5%;
    right: 0;
    background-color: #f8fafc;
}

.hero-decoration-2 {
    width: 60%;
    height: 70%;
    bottom: -5%;
    left: 0;
    background-color: rgba(241, 245, 249, 0.7);
}

.hero-bg-shapes .shape-1,
.hero-bg-shapes .shape-2,
.hero-bg-shapes .shape-3 {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}

.hero-bg-shapes .shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    top: -150px;
    right: -100px;
    animation: pulse 15s infinite alternate;
}

.hero-bg-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.1));
    bottom: -80px;
    left: 10%;
    transform: rotate(45deg);
    animation: pulse 20s infinite alternate-reverse;
}

.hero-bg-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(249, 115, 22, 0.1);
    top: 40%;
    left: -75px;
    border-radius: 40px;
    animation: float 10s infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* About Section */
.about-image-container {
    position: relative;
    padding-top: 120%;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-decoration-1,
.about-decoration-2 {
    position: absolute;
    border-radius: 30px;
    z-index: 1;
}

.about-decoration-1 {
    width: 60%;
    height: 70%;
    top: 10%;
    right: 0;
    background-color: rgba(249, 115, 22, 0.1);
}

.about-decoration-2 {
    width: 70%;
    height: 60%;
    bottom: 0;
    right: 10%;
    background-color: rgba(56, 189, 248, 0.1);
}

.about-card {
    position: absolute;
    bottom: 5%;
    right: 0;
    background-color: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.about-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.about-info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Skills Section */
.section-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    top: -150px;
    right: -100px;
}

.shape-square {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(56, 189, 248, 0.05));
    bottom: -100px;
    left: -100px;
    transform: rotate(45deg);
}

.shape-dots {
    position: absolute;
    width: 200px;
    height: 100px;
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    top: 30%;
    right: 5%;
}

.terminal-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.terminal-tag-alt {
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--secondary-color);
}

.skill-cards-container {
    display: flex;
    flex-direction: column;
}

.skill-card {
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.skill-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.skill-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Syne', sans-serif;
}

.skill-card-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.skill-progress-item {
    margin-bottom: 1rem;
}

.skill-progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--bg-light);
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: width 1.5s ease;
}

/* Education Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    top: 10px;
    left: -10px;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.03);
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    top: 10px;
    right: -10px;
    box-shadow: 5px -5px 5px rgba(0, 0, 0, 0.03);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.5rem;
}

.timeline-institution {
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.timeline-description {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
        box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.03);
    }
}

/* Experience Section */
.tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.experience-list {
    max-width: 700px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    margin-bottom: 2.5rem;
}

.experience-year {
    width: 100px;
    text-align: right;
    padding-right: 1.5rem;
    flex-shrink: 0;
}

.experience-year .year {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.experience-year .status {
    color: var(--text-light);
}

.experience-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1.5rem;
    position: relative;
}

.experience-divider .dot {
    width: 14px;
    height: 14px;
    background-color: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    margin-top: 0.5rem;
    z-index: 2;
}

.experience-divider .line {
    width: 2px;
    flex-grow: 1;
    background-color: var(--border-color);
    margin-top: 0.5rem;
}

.experience-details {
    flex-grow: 1;
    padding-top: 0.5rem;
}

.experience-details h3 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.25rem;
}

.experience-details .company {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.experience-details .description {
    color: var(--text-light);
}

.description-list {
    color: var(--text-light);
    padding-left: 1.25rem;
    list-style-type: disc;
    margin-top: 0.5rem;
}

.description-list li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.shape-circle-alt {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(56, 189, 248, 0.05));
    right: auto;
    left: -100px;
}

.shape-square-alt {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    left: auto;
    right: -100px;
    top: 30%;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--text-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.back-to-top {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    color: var(--primary-color);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Terminal Effect */
.terminal {
    background-color: #000;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.terminal-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.terminal-red {
    background-color: #FF5F56;
}

.terminal-yellow {
    background-color: #FFBD2E;
}

.terminal-green {
    background-color: #27C93F;
}

.terminal-title {
    margin-left: 10px;
    font-size: 14px;
    color: #ddd;
}

.command {
    color: #FF0066;
    margin-right: 8px;
}

.terminal-output {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 16px;
    background-color: #fff;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .experience-item {
        flex-direction: column;
    }

    .experience-year {
        width: auto;
        text-align: left;
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .experience-divider {
        display: none;
    }

    .about-image-container {
        padding-top: 0;
        height: 400px;
        margin-bottom: 2rem;
    }

    .about-image {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .about-decoration-1,
    .about-decoration-2 {
        display: none;
    }

    .about-card {
        position: relative;
        bottom: -20px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
}

/* Developer Skills Aanvullende Stijlen */
.terminal-tag-purple {
    background-color: rgba(168, 85, 247, 0.1);
    color: #9333ea;
}

.terminal pre {
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.code-block-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.code-block-title {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
}

.code-block-content {
    padding: 1rem;
}

.dev-skill-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.dev-skill-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.dev-skill-list li:last-child {
    border-bottom: none;
}

.dev-skill-icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background-color: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 0.75rem;
}

.workflow-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.workflow-item:last-child {
    margin-bottom: 0;
}

.workflow-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.workflow-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsieve aanpassingen */
@media (max-width: 1024px) {
    .terminal {
        margin-bottom: 2rem;
    }
}

/* Hero Code Section */
.hero-code-container {
    position: relative;
    min-height: 500px;
    width: 100%;
    perspective: 1000px;
}

/* Code Blocks */
.code-block {
    position: absolute;
    width: 280px;
    background-color: #1E293B;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform-style: preserve-3d;
    z-index: 3;
}

.code-block-1 {
    top: 10%;
    left: 10%;
    transform: rotateX(5deg) rotateY(-10deg);
    animation: floatBlock 6s ease-in-out infinite;
}

.code-block-2 {
    top: 30%;
    right: 5%;
    transform: rotateX(-3deg) rotateY(8deg);
    animation: floatBlock 5s ease-in-out infinite reverse;
}

.code-block-3 {
    bottom: 5%;
    left: 15%;
    transform: rotateX(2deg) rotateY(-6deg);
    animation: floatBlock 7s ease-in-out infinite 1s;
}

@keyframes floatBlock {
    0%,
    100% {
        transform: translateY(0) rotateX(5deg) rotateY(-10deg);
    }
    50% {
        transform: translateY(-15px) rotateX(5deg) rotateY(-10deg);
    }
}

.code-content {
    position: relative;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    line-height: 1.5;
    max-height: 300px;
    overflow: hidden;
    color: #E2E8F0;
}

.code-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 1), rgba(30, 41, 59, 0));
    z-index: 2;
}

.code-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(30, 41, 59, 1), rgba(30, 41, 59, 0));
    z-index: 2;
}

.code-tag {
    color: #F97316;
}

.code-attr {
    color: #38BDF8;
}

.code-string {
    color: #A3E635;
}

.code-comment {
    color: #94A3B8;
}

.code-selector {
    color: #F97316;
}

.code-property {
    color: #38BDF8;
}

.code-value {
    color: #A3E635;
}

.code-keyword {
    color: #F472B6;
}

.code-function {
    color: #38BDF8;
}

/* Tech Icons */
.tech-icons {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.25rem;
    animation: fadeFloatIn 1.5s ease-out forwards, floatIcon 3s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
    top: var(--top);
    left: var(--left);
}

@keyframes fadeFloatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tech-icon:nth-child(1) i {
    color: #E34F26;
}

/* HTML5 */
.tech-icon:nth-child(2) i {
    color: #1572B6;
}

/* CSS3 */
.tech-icon:nth-child(3) i {
    color: #F7DF1E;
}

/* JavaScript */
.tech-icon:nth-child(4) i {
    color: #61DAFB;
}

/* React */
.tech-icon:nth-child(5) i {
    color: #777BB4;
}

/* PHP */
.tech-icon:nth-child(6) i {
    color: #FF2D20;
}

/* Laravel */
.tech-icon:nth-child(7) i {
    color: #F24E1E;
}

/* Figma */

/* Design Elements */
.design-element {
    position: absolute;
    z-index: 1;
    opacity: 0.5;
}

.design-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: pulseDot 3s ease-in-out infinite;
}

.design-dot-1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.design-dot-2 {
    top: 60%;
    right: 30%;
    animation-delay: 0.5s;
}

.design-dot-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1s;
}

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

.design-line {
    height: 2px;
    background-color: var(--secondary-color);
    opacity: 0.3;
    transform-origin: left center;
}

.design-line-1 {
    width: 100px;
    top: 25%;
    left: 20%;
    transform: rotate(45deg);
    animation: growLine 4s ease-in-out infinite;
}

.design-line-2 {
    width: 150px;
    bottom: 30%;
    right: 10%;
    transform: rotate(-30deg);
    animation: growLine 4s ease-in-out infinite 1s;
}

@keyframes growLine {
    0%,
    100% {
        width: 100px;
        opacity: 0.3;
    }
    50% {
        width: 150px;
        opacity: 0.5;
    }
}

.design-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(56, 189, 248, 0.2);
    top: 30%;
    left: 40%;
    animation: rotateSlow 20s linear infinite;
}

.design-square {
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(249, 115, 22, 0.2);
    bottom: 20%;
    left: 10%;
    animation: rotateSlow 15s linear infinite reverse;
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-code-container {
        min-height: 400px;
        transform: scale(0.8);
        margin-top: -30px;
    }

    .code-block {
        width: 240px;
    }

    .code-block-2 {
        right: -10%;
    }
}
