* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #FF6B6B;
    --color-secondary: #4ECDC4;
    --color-accent: #FFE66D;
    --color-purple: #A8E6CF;
    --color-pink: #FF8B94;
    --color-blue: #95E1D3;
    --color-orange: #FFA07A;
    --color-yellow: #FFD93D;
    --color-text: #2C3E50;
    --color-bg: #FFF9F0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
    animation: float 3s ease-in-out infinite;
}

.header::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    z-index: -1;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: var(--color-purple);
    border-radius: 50%;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: rotate(-1deg) translateY(0px); }
    50% { transform: rotate(-1deg) translateY(-10px); }
}

.name {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.section {
    background: white;
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 4px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.profile-section {
    border-color: var(--color-orange);
    padding: 20px;
}

.profile-wrapper {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.about-section {
    border-color: var(--color-primary);
}

.contact-section {
    border-color: var(--color-secondary);
}

.skills-section {
    border-color: var(--color-accent);
}

.challenges-section {
    border-color: var(--color-purple);
}

.languages-section {
    border-color: var(--color-yellow);
}

.experience-section {
    border-color: var(--color-pink);
}

.overige-section {
    border-color: var(--color-secondary);
}

.education-section {
    border-color: var(--color-blue);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 4px solid;
    position: relative;
}

.profile-section .section-title {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
}

.about-section .section-title {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.contact-section .section-title {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

.skills-section .section-title {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.challenges-section .section-title {
    color: var(--color-purple);
    border-bottom-color: var(--color-purple);
}

.languages-section .section-title {
    color: var(--color-yellow);
    border-bottom-color: var(--color-yellow);
}

.experience-section .section-title {
    color: var(--color-pink);
    border-bottom-color: var(--color-pink);
}

.overige-section .section-title {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

.education-section .section-title {
    color: var(--color-blue);
    border-bottom-color: var(--color-blue);
}

.profile-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.95rem;
}

.detail-label {
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.detail-value {
    color: var(--color-text);
    font-weight: 500;
}

.profile-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    object-position: center bottom;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-orange), var(--color-accent));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.profile-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.skills-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-item span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
}

.skill-bar {
    width: 100%;
    height: 25px;
    background: #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--color-accent);
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-orange));
    border-radius: 15px;
    transition: width 1s ease;
    position: relative;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.3) 10px,
        rgba(255, 255, 255, 0.3) 20px
    );
}

.challenges-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.challenges-list li {
    padding: 15px 20px;
    padding-left: 50px;
    position: relative;
    background: linear-gradient(135deg, #fff, #f8f5ff);
    border-radius: 12px;
    border-left: 4px solid var(--color-purple);
}

.challenge-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.challenge-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.challenges-list li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-purple);
    border-radius: 50%;
}

.languages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.language-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.language-item span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
}

.language-fill {
    background: linear-gradient(90deg, var(--color-yellow), var(--color-orange));
    transition: none;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.experience-item {
    padding: 20px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 15px;
    border-left: 6px solid var(--color-pink);
    position: relative;
}


.exp-header {
    margin-bottom: 15px;
}

.exp-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-pink);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exp-company {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 5px;
    font-size: 1rem;
}

.exp-date {
    display: inline-block;
    padding: 5px 15px;
    background: var(--color-pink);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.exp-duties {
    list-style: none;
    padding-left: 0;
}

.exp-duties li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.exp-duties li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background: var(--color-pink);
    border-radius: 2px;
}

.overige-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overige-item {
    display: flex;
    gap: 15px;
    align-items: baseline;
    font-size: 1rem;
}

.overige-label {
    font-weight: 600;
    color: var(--color-secondary);
    min-width: 100px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.overige-value {
    color: var(--color-text);
    font-weight: 500;
}

.education-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.education-item {
    padding: 20px;
    background: linear-gradient(135deg, #fff, #f0f9ff);
    border-radius: 15px;
    border: 3px solid var(--color-blue);
    position: relative;
}

.edu-degree {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.edu-school {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
}

.decoration {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    animation: floatDecoration 6s ease-in-out infinite;
}

.decoration-1 {
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(45deg);
}

.decoration-2 {
    bottom: 15%;
    left: 3%;
    width: 80px;
    height: 80px;
    background: var(--color-orange);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 1s;
}

.decoration-3 {
    top: 50%;
    right: 2%;
    width: 60px;
    height: 60px;
    background: var(--color-purple);
    border-radius: 50%;
    animation-delay: 2s;
}

.decoration-4 {
    bottom: 30%;
    right: 10%;
    width: 70px;
    height: 70px;
    background: var(--color-pink);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-delay: 1.5s;
}

.decoration-5 {
    top: 25%;
    left: 2%;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 20px;
    transform: rotate(45deg);
    animation-delay: 0.5s;
}

@keyframes floatDecoration {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@media (max-width: 968px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .name {
        font-size: 2.5rem;
    }

    .title {
        font-size: 1.4rem;
    }

    .decoration {
        opacity: 0.4;
    }
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .header {
        padding: 30px 15px;
    }

    .name {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .section {
        padding: 20px;
    }

    .profile-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-name {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .skills-list {
        grid-template-columns: 1fr;
    }
}
