@font-face {
    font-family: "Kenao";
    src: url(assets/kenao.otf) format("opentype");

}

@font-face {
    font-family: "Playfair";
    src: url(assets/PlayfairDisplay-VariableFont_wght.ttf) format("truetype");
}

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

html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: "Playfair", sans-serif;
}

body {
    background-color: #f0f0f0;
    position: relative;
    max-width: 100vw;

}

body::before {
    content: "";
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 100, 150, 0.5), transparent 50%),
        linear-gradient(356deg, rgb(225, 92, 205) 0%, rgba(244, 243, 196, 1) 100%, transparent 70%),
        radial-gradient(circle at 80% 40%, rgba(244, 243, 196, 0.8), transparent 40%);
    z-index: -1;
    filter: blur(50px);
    transform: translate(-50%, -50%);
    border-radius: 20px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #ffeef8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff8acb, #DB85B4);
    border-radius: 10px;
    border: 2px solid #ffeef8;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff6ab3, #e10087);
}

nav {
    max-width: 960px;
    mask-image: linear-gradient(90deg, rgba(195, 130, 158, 0) 0%, #C3829E 25%, #C3829E 75%, rgba(195, 130, 158, 0) 100%);
    margin: 0 auto;
    padding: 25px 0;
}

nav ul {
    text-align: center;
    background: linear-gradient(90deg, rgba(195, 130, 158, 0) 0%, rgba(195, 130, 158, 0.2) 25%, rgba(195, 130, 158, 0.2) 75%, rgba(195, 130, 158, 0) 100%);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    padding: 18px;
    font-family: "Playfair", sans-serif;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    text-decoration: none;
    display: block;
}

nav ul li a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0 0 1px rgba(255, 255, 255, 0.6);
    background: rgba(195, 130, 158, 0.1);
    color: rgba(122, 0, 75, 0.7);
}

.column {
    float: left;
    width: 33.33%;
    padding: 10px;
    position: relative;
    height: 601px;
    max-height: 601px;
    display: flex;
    flex-direction: column;
}

#column1 {
    justify-content: space-between;
}

#column2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heroinfo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2,
p {
    font-family: "Playfair", sans-serif;
    color: #562135;
}

#midtext,
#CV {
    margin-top: 20px;
}

#midtext {
    font-family: "Playfair", sans-serif;
    color: #333;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

h1 {
    font-family: "Kenao", sans-serif;
    color: #000000;
    text-align: center;
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}

#CV {
    background-color: #1c1c1c;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    text-decoration: none;
}

#CV:hover {
    background-color: #333;
}

#CV:active {
    background-color: #444;
}

#CV:visited {
    text-decoration: none;
}

#circlebranch {
    height: 150px;
    width: 150px;
    align-self: center;

}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.rounded-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: 330px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 175px 175px 0 0;
}

#rb1 {
    background-color: #562135;
}

#rb2 {
    background-color: #C3829E;
}

.rounded-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* <<< Zorgt dat de foto mooi de box vult */
    display: block;
}

#decor-star {
    position: absolute;
    top: -60px;
    right: -130px;
    width: 60px;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
    height: 250px;
    width: auto;
}

#decor-star2 {
    position: absolute;
    top: 298px;
    right: 300px;
    width: 60px;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
    height: 250px;
    width: auto;
}

.arrow-link-under {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    padding-bottom: 15px;
}

.arrow-link-under::after {
    content: '';
    position: absolute;
    left: 200px;
    bottom: 0;
    width: 70px;
    height: 0.5px;
    background-color: black;
}

.arrow-link-under::before {
    content: '➜';
    position: absolute;
    left: 250px;
    bottom: -5px;
    font-size: 1.8em;
    rotate: -45deg;
}

.arrow-link-under2 {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
    padding-bottom: 15px;
}

.arrow-link-under2::after {
    content: '';
    position: absolute;
    left: 200px;
    bottom: 0;
    width: 70px;
    height: 0.5px;
    background-color: black;
}

.arrow-link-under2::before {
    content: '➜';
    position: absolute;
    left: 250px;
    bottom: -5px;
    font-size: 1.8em;
    rotate: -45deg;
    
}

@media screen and (max-width: 596px) {
    #decor-star {
        top: 14px;
        right: -38px;
    }

    #decor-star2 {
        top: 254px;
        right: 168px;
    }
 }


@media screen and (max-width: 600px) {

    
    .column {
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        max-height: 80%;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #column1 {
        justify-content: space-evenly;
    }

    #column2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    #decor-star {
        right: -77px;
    }

    #decor-star2 {
        top: 254px;
        right: 168px;
    }

    #rb2 {
        align-self: center;
    }

    #circlebranch {
        align-self: end;
    }
}

@media screen and (min-width: 425px) and (max-width: 767px) {	
    .arrow-link-under::before {
        
        left: 305px;
    }

    .arrow-link-under::after {
    left: 250px;}
}

@media screen and (min-width: 631px) and (max-width: 900px) {	
    .arrow-link-under2::after {   
 
    left: 111px;
    }
    .column {
        height: 738px;
        max-height: 100vh;
    }

    .arrow-link-under2::before {
        left: 160px;
    }

    #decor-star {
        top: 77px;
    right: -59px;
    }
    #decor-star2 {
        top: 461px;
        right: 152px;

    }

    
}

