/* style.css – vriendelijk & speels voor Isis Pennings-Bosch */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Open+Sans:wght@400;600;700&display=swap');

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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f4f8 100%);
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
}

.hero {
    background: linear-gradient(120deg, 
        #c39aff 0%,      /* zacht lila */
        #9d7be8 40%, 
        #7c5bc7 70%, 
        #6a4fb3 100%);
    padding: 50px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(124, 91, 199, 0.25);
    position: relative;
    overflow: hidden;
}

/* Dezelfde speelse zweef-icoontjes, maar nu in zachte witte gloed op paars */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(255,255,255,0.25) 8px, transparent 8px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.2) 6px, transparent 6px),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.28)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 12h3v8h14v-8h3L12 2z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.22)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19'%3E%3C/path%3E%3Cpath d='M8 19h12'%3E%3C/path%3E%3Cpath d='M8 15h8'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M12 8v4l3 3'%3E%3C/path%3E%3C/svg%3E");
    background-size: 80px 80px, 60px 60px, 70px 70px, 50px 50px;
    background-position: 10% 20%, 85% 70%, 15% 75%, 80% 15%;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: floatIcons 38s linear infinite;
    opacity: 0.75;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 9px solid #c39aff;
    box-shadow: 0 12px 30px rgba(124, 91, 199, 0.35);
    float: left;
    margin: 10px 25px 20px 0;
    transform: rotate(4deg);
    transition: transform 0.4s ease;
}

.profile-photo:hover {
    transform: rotate(-3deg) scale(1.05);
}

/* Mobiel: iets kleiner en recht */
@media (max-width: 768px) {
    .profile-photo {
        width: 130px;
        height: 130px;
        left: 20px;
        border-width: 7px;
    }
    .profile-photo {
        width: 140px;
        height: 140px;
        float: none;
        display: block;
        margin: 0 auto 20px;
        transform: rotate(3deg);
    }
}

@keyframes floatIcons {
    0%   { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, -40px) rotate(12deg); }
}

/* Tekst blijft perfect leesbaar op paars */
.name {
    font-family: 'Fredoka One', cursive;
    font-size: 4.5rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.4);
}

/* Mobiel iets compacter */
@media (max-width: 768px) {
    .hero { padding: 40px 15px; }
    .name { font-size: 3.2rem; }
}

/* Container & Grid */
.container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Secties */
.left-column, .right-column {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.left-column:hover, .right-column:hover {
    transform: translateY(-8px);
}

/* Koppen */
h2 {
    font-family: 'Fredoka One', cursive;
    color: #2193b0;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 6px;
    background: linear-gradient(90deg, #6dd5ed, #2193b0);
    border-radius: 3px;
}

/* Tekst & lijsten */
p, li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #34495e;
}

ul.education-list {
    list-style: none;
}

ul.education-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #27ae60;        /* nice fresh green */
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 15px;
    line-height: 26px !important;
    text-align: center;
    box-shadow: 0 2px 6px rgba(39, 174, 96, 0.3);
}

/* Optional: also make the left border of each list item match the green */
ul.education-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    background: #f8fff9;
    padding: 15px 15px 15px 45px;
    border-radius: 12px;
    border-left: 5px solid #27ae60;   /* changed from blue to green */
}

/* Links */
a {
    color: #2193b0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

a:hover {
    color: #6dd5ed;
    text-decoration: underline;
}

/* Contact sterk */
strong {
    color: #2c3e50;
}

/* Kleine extraatjes */
.left-column {
    border-top: 8px solid #ff9a9e;
}

.right-column {
    border-top: 8px solid #a18cd1;
}

/* Responsiveness extra */
@media (max-width: 500px) {
    .hero { padding: 60px 15px; }
    .name { font-size: 2.8rem; }
    .left-column, .right-column { padding: 25px; }
}