@charset "UTF-8";

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

body {
    font-family: "Josefin Sans", "Gill Sans", Helvetica, Arial, sans-serif;
    font-size: 1em;
    background: #f9f9f9;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

a, a:visited {
    color: inherit;
    text-decoration: none;
}
.tp	{
	padding: 5em;
}
	/* Voeg dit toe in css/style.css */
.special-font {
   font-family: 'Waiting for the Sunrise', cursive ;  /* Of een ander Typekit-lettertype */
    font-weight: bold; /* Optioneel */
	
}


.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
}

/* Flexbox Containers */
.sidebar, .tab-container, .tab-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sidebar {
    flex: 1;
    max-width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-container {
    flex-grow: 1;
}


/* Category tab styling */
.category-tab {
    background-color: #e0e0e0;
    color: #333;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.category-tab:hover,
.category-tab.active {
    background-color: #b3b3b3;
    color: #fff;
}

/* Content display area */


/* Project tabs styling */
.project-container {
    display: flex;
    justify-content: space-between;
    gap: 0em; /* Geen ruimte tussen tabs voor strak uiterlijk */
    margin-bottom: 2em;
    background-color: #f0f0f0;
    border-radius: 2em 2em 0 0;
    overflow: hidden;
	flex-direction: row; 
	flex-wrap: wrap;
}

.project-item {
    flex: 1;
    background-color: #dcdcdc;
    color: #333;
    padding: 0.5em 0;
    text-align: center;
	border-radius: 2em 2em 0 0;
    cursor: pointer;
    border-bottom: 0.1em solid #f0f0f0;
    transition: background-color 0.3s, color 0.3s;

    /* Afronding van de bovenhoeken van de eerste en laatste tabs */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Hover-effect en actieve tab */
.project-item:hover {
    background-color: #b3b3b3;
    color: #fff;
}

.project-item.active {
    background-color: #8c8c8c;
    color: #fff;
    border-bottom: 2px solid #fff;
}

/* Styling voor projectdetails */
.project-details h2 {
    color: #333;
    margin-bottom: 10px;
}

.project-details p {
    color: #666;
}

header {
    position: fixed;
    padding: 1em 1em 1em 1em;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Navigatie */
.site-logo, .navi {
    position: relative;
	float: left;
    display: block;
}

.site-logo {
    width: 4em;
}

.site-logo img {
    width: 100%;
}

.navi {
	position: relative;
	float: left;
	z-index: 4000;
	top: 0;
	left: 0;
	display: block !important;
	width: 80%;
	padding: 0.11em 0.11em 0.1em 0.1em;
	opacity: .95;
	background: none;
}

.navi ul {
    list-style-type: none;
    margin: 0;
    text-align: right;
}

.navi ul li {
    display: inline-block;
    margin-bottom: 0.75em;
    margin-left: 1em;
}

.navi ul li a {
    font-size: .85em;
    padding-bottom: .2em;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #FFFFFF;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.navi ul li a:hover {
   	outline: none;
    color: #C287FF;
    border-bottom: 1px solid white;
}

.navi ul li a:active {
	outline: none;
    color: grey;
}

/* Typografie */
h3 {
    margin-bottom: 15px;
	font-size: 1.2em;
}

h2 {
	font-size: 2em;
}

h1 {
	font-size: 5em;
}

/* Buttons */
.button, .button2 {
    padding: 1em 1em;
    text-align: center;
    font-size: 1em;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 12em;
}

.button {
    background-color: rgba(62, 0, 1, 1.00);
    color: white;
    border: 2px solid rgba(255, 255, 255, 1.00);
}

.button:hover {
    background-color: white;
    color: rgba(62, 0, 1, 1.00);
}

.button2 {
    background-color: white;
    color: rgba(62, 0, 1, 1.00);
    border: 2px solid rgba(62, 0, 1, 1.00);
}

.button2:hover {
    background-color: rgba(62, 0, 1, 1.00);
    color: white;
}

/* Tab and Category Styles */
.category-tab, .project-item, .tab-button {
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 8px;
}

.category-tab:hover, .category-tab.active, .project-item:hover, .project-item.active {
    background-color: #b3b3b3;
    color: #fff;
}

.project-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

/* Center and Footer */
.center, footer {
    color: white;
    text-align: center;
    font-size: 0.8em;
}

footer {
  	margin-top: -1em;
  	text-align: center;
	background: #C287FF;
	color: white;
	font-size: 0.8em;
	height: 2em;
}

/* Text Intro Sections */
.textintro, .textintrocv {
    color: white;
    background: rgba(62, 0, 1, 1.00);
    padding: 3em;
    font-size: 1em;
    width: 90%;
}

.textintro2 {
    color: black;
    background: white;
    width: 90%;
    padding: 2em;
}

.textintrocv2 {
    color: black;
    background: rgba(255, 255, 255, 1.00);
    padding: 2em;
    width: 75%;
}

		.blog-preview {
			border: 1px solid gray;
			margin-bottom: 10px;
			padding: 10px;
		}
		.keywords {
			display: inline-block;
			margin-right: 10px;
		}

/* CSS-regels voor blog previews */
.blog-preview {
    text-align: left; /* Lijn de tekst in de blogpreview links uit */
}

/* CSS-regels voor blogtitels */
.blog-preview h3 {
    font-family: "Josefin Sans", "Gill Sans", Helvetica; /* Vervang door jouw gewenste lettertype */
    margin: 0; /* Verwijder de marges om de titel netjes aan de linkerkant uit te lijnen */
    padding: 10px 0; /* Voeg wat ruimte toe boven en onder de titel voor betere leesbaarheid */
}

/* Verwijder onderlijning van de titels */
.blog-preview h3 a {
    text-decoration: none;
}

/* Wissel pastelkleuren om de vijf blogs */
.blog-preview:nth-child(5n+1) h3 {
    color: #88ccee; /* Meer licht paars */
}

.blog-preview:nth-child(5n+2) h3 {
    color: #9988dd; /* paars mooi */
}

.blog-preview:nth-child(5n+3) h3 {
    color: #6F57CF; /* Paars donkerder*/
}

.blog-preview:nth-child(5n+4) h3 {
    color: #442CA4; /*anders donker paars*/
}

.blog-preview:nth-child(5n+5) h3 {
    color: #297FAA; /* donker blauw */
}

/* Verwijder omlijning behalve de bovenste lijn */
.blog-preview {
    border: none;
    border-top: 1px solid #ccc; /* Behoud alleen de bovenste lijn */
    padding: 5px;
}

.author-date-text {
    font-size: 14px; /* Kleiner lettertype */
    font-style: italic; /* Schuingedrukt */
    color: #666; /* Lichter grijs */
    margin-top: 5px; /* Ruimte boven auteur en datum */
    display: flex; /* Gebruik flexbox om de auteur en datum naast elkaar weer te geven */
    justify-content: flex-end; /* Rechts uitlijnen van de inhoud van .author-date-text */
}

/* Verwijder de margin-right voor de auteur */
.author {
    margin-right: 0; /* Verwijder de marge tussen de auteur en de komma */
}

.date-published {
    font-style: italic; /* Maak de datum cursief */
    margin-left: 5px; /* Voeg een kleine marge toe tussen de komma en de datum */
}

/* Maak de tekst netter */
.main-content p {
    text-align: justify;
    text-indent: 1em;
    line-height: 1.5;
}

/* Maak <h4> vetgedrukt */
h4 {
    font-weight: bold;
	margin-bottom: -1;
	margin-top: 1;

}
        /* Stijl voor datum en auteur op blog.php */
        .blog-author-date-text {
            text-align: left;
            font-size: 14px;
            font-style: italic;
            color: #555; /* Kies de gewenste kleur */
        }

a {
    text-decoration: none; /* Schakel de onderstreping uit voor alle koppelingen */
}

.centertext{
	text-align: center
}

/* Basisstijl voor de checkbox-container */
.checkbox-container {
    display: block;
    align-items: center;
    font-size: 1em;
    cursor: pointer;
    margin-bottom: .5em;
    user-select: none;
}

/* Verberg de standaard checkbox */
.checkbox-container input[type="checkbox"] {
    display: block;
}

/* Stijl voor het visuele gedeelte van de checkbox */
.checkbox-container .checkmark {
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: background-color 0.3s ease;
}

/* De gekleurde achtergrond bij selectie */
.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background-color: #007bff;
}

/* Een "vinkje" toevoegen */
.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark:after {
    display: block;
}

/* Vinkje-stijl */
.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
  /* Verberg de echte checkboxes */
.checkbox-container input[type="checkbox"] {
    display: block;
}

/* Zorg ervoor dat de knoppen onder elkaar staan */
.checkbox-container label {
    display: block; /* Verandert de weergave naar een blok, zodat de knoppen onder elkaar staan */
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    background-color: #ccc;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

/* Verander de stijl wanneer een knop actief is */
.checkbox-container label.active {
    background-color: #333;
    color: #fff;
}

/* Stijl voor zoekveld */
.styled-search {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.3s, border-color 0.3s;
}

/* Zoekveld focus styling */
.styled-search:focus {
    border-color: #333;
    box-shadow: 0 0 5px rgba(51, 51, 51, 0.3);
}

/* Knoppen stijl */
.button2, .button {
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.button2 {
    background-color: #333;
    color: #fff;
}

.button {
    background-color: #ccc;
    color: #333;
}

.category-tab, .checkbox-button {
    color: black; /* witte tekstkleur */
    border: none; /* geen rand */
    text-align: center; /* tekstuitlijning naar links */
    display: block; /* blokweergave om de volledige breedte te vullen */
    width: 100%; /* volledige breedte van de container */
    cursor: pointer; /* pointer cursor voor interactie */
    box-sizing: border-box; /* zorgt ervoor dat padding wordt meegerekend */
    overflow: hidden; /* verberg tekst die buiten de knoppen valt */
    white-space: nowrap; /* voorkomt dat de tekst over meerdere regels wordt gebroken */
    text-overflow: ellipsis; /* voegt een ellipsis toe als de tekst te lang is */
}

      /* Verberg de echte checkboxes */
        .checkbox-container input[type="checkbox"] {
            display: none;
        }

        /* Stijl de labels als knoppen */
        .checkbox-container label {
            display: inline-block;
            padding: 10px 0.1em;
            margin: 5px;
            background-color: #ccc;
            color: #333;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        /* Actieve staat voor de geselecteerde knoppen */
        .checkbox-container label.active {
            background-color: #333;
            color: #fff;
        }
#contact-form label {
    font-size: 1em;
    font-weight: lighter;
    display: block;
    margin: .1em 0 .1em;
}

#contact-form input,
#contact-form textarea {
    width: 75%;
    margin-bottom: 1em;
    border-radius: 1em;
}
#contact-form input,
#contact-form textarea {
    padding: 10px;
    font-size: 1.1em;
    border-radius: 25px;
    border: 2px solid #C287FF;
    width: 100%;
    box-sizing: border-box; /* Zorg ervoor dat padding en margin in de breedte worden meegerekend */
    margin-bottom: 1em;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #C287FF;
    outline: none; /* Zorg ervoor dat het focus-rand netjes is */
}


/* Responsive Sections */
@media (max-width: 600px) {
    header {
        padding: 1em;
    }

    .site-logo {
        width: 3em;
    }

    .navi {
        width: 80%;
    }

    .navi ul li a {
        font-size: .85em;
        padding-bottom: .2em;
    }

    .pftext1, .pftext2, .pftext3 {
        width: 100%;
    }

    .textintro, .textintro2, .textintrocv {
        width: 90%;
    }

}


@media (min-width: 600px) {
    .pftext1, .pftext2, .pftext3 {
        width: 33%;
    }

    .textintro, .textintro2 {
        width: 90%;
    }

    .textintrocv {
        width: 30%;
    }
}



@media (max-width: 600px){

html,
html * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
	
body {
	font-family: "Josefin Sans", "Gill Sans", Helvetica;
	font-size: 1em;
	background: white;
}
img { 
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
a, a:visited {
	color: inherit;
}

.tp	{
	padding: 5em;
}
header {
  position: fixed;
  padding: 1em 1em 1em 1em;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background:rgba(0,0,0,0.2);
}

.headerfoto{
	width: 100%;
	z-index: -1000;
	
	}
	.headerfoto_box{
	max-height: 35em;
	background-image: url("../images/anders-jilden-307322.jpg");
	}

.site-logo {
	position: relative;
	display: block;
	float: left;
	width: 3em;
}
.site-logo img {
	width: 3em;
}

.navi {
	position: relative;
	float: left;
	z-index: 4000;
	top: 0;
	left: 0;
	display: block !important;
	width: 80%;
	padding: 0.11em 0.11em 0.1em 0.1em;
	opacity: .95;
	background: none;
}
.navi ul {
	list-style-type: none;
	margin: 0;
	text-align: right;
}
.navi ul li {
	display: inline-block;
	margin-bottom: .75em;
	margin-left: 1em;
}
.navi ul li a {
	font-size: .85em;
	padding-bottom: .2em;
	text-decoration: none;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #FFFFFF;
	-webkit-transition: color .3s;
	transition: color .3s;
}
.navi ul li a:hover {
	outline: none;
	color: #C287FF;
	border-bottom: 1px solid white;
}
.navi ul li a:active {
		outline: none;
		color: grey;
}

.at {
	display: flex;
	text-align: left;
	z-index: 10;
	position: sticky;
	

}

.textintro {
	color: white;
	background: #C287FF;
  	padding: 3em 1em 3.5em 1em; 
	width: 90%;
	font-size: 1em;
}
.textintro2{
	color: black;
	background: #fff;
  	padding: 2em 1em 3.5em 1em; 
	width: 90%;
	font-size: 1em;
}

.textintrocv {
	color: white;
	background: #C287FF;
	padding: 2em 1em 3.5em 0.5em; 
	width: 30%;
	font-size: 1em;
}

.pftext1 {
	color: white;
    background-image: -webkit-linear-gradient(top left, #C287FF 0%, rgb(0,0,0) 100%);
    background-image: -o-linear-gradient(top left, #C287FF 0%, rgb(0,0,0) 100%);
    background-image: linear-gradient(to bottom right, #C287FF 0%, rgb(0,0,0) 100%);	
	padding: 2em 1em 3.5em 1em; 
	width: 50%;
	font-size: 0.95em;
}

.pftext2 {
	color: black;
	background: white;
	padding: 2em 1em 3.5em 1em; 
	width: 50%;
	font-size: 0.95em;
}

.pftext3 {
	color: white;
    background-image:-moz-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
    background-image: -webkit-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
    background-image: -ms-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);  	
	padding: 2em 1em 3.5em 1em; 
	width: 50%;
	font-size: 0.95em;	
}

.art {
  padding: 8% 0 8% 23.5%;
  background-image:-moz-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
  background-image: -webkit-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
  background-image: -ms-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
  width: 5%;

}
.textintrocv2 {
	color: black;
	background: rgba(255,255,255,1.00);
  	padding: 2em 1.5em 3.5em 1em; 
	width: 75%;
	font-size: 1em;
}

.CVtitle {
	color: #FFFFFF;
	font-size: 1.5em;
}

.art2 {
  padding: 8% 0 8% 23.5%;
  background-image:-moz-linear-gradient( 135deg, rgb(0,0,0) 0%, #C287FF 100%);
  background-image: -webkit-linear-gradient( 135deg, rgb(0,0,0) 0%, #C287FF 100%);
  background-image: -ms-linear-gradient( 135deg, rgb(0,0,0) 0%, #C287FF 100%);
  width: 5%;
}
.button {
    background-color: #C287FF;
	padding: 1em 2em; /* Padding omgezet naar em */   
	text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
	margin: 0.25em 0.125em; /* Margin omgezet naar em */
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    color: white; 
    border: 2px solid rgba(255,255,255,1.00);
	border-radius: 12em;
}
 

.button2 {
    background-color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    color: #C287FF;
    border: 2px solid #C287FF;
	border-radius: 12em;
}

.button:hover {
    background-color: white;
    color: #C287FF;
	}

.button2:hover {
    background-color: #C287FF;
    color: white;
	}

.center {
	background-color: #C287FF;
	;color: white;
	align-content: center;
	align-items: center;
	align-self: center;
	width: 100%;
	text-align: center;
	padding: 1.5em; 
	font-size: 0.95em;
	
}
	.center-contact {
	align-content: left;
	align-items: left;
	align-self: left;
	width: 100%;
	text-align: left;
	padding: 0em; 
}

.Pagepic {
	max-height: 40em;
	max-width: 8em;
	align-content:stretch;
		
}

.artwork {
	  position: relative;
	position: flex;
}


.dot{
  position: absolute;
  z-index: 500;
  top: 12.5em;
  right: 2.5%;
  display: block;
  width: 35%;
  max-width: 10em;
  border-radius: 50%;
  box-shadow: 0.1em -0.1em 2em -1em #fff;
}


}

@media (min-width: 600px){
html,
html * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
	
body {
	font-family: "Josefin Sans", "Gill Sans", Helvetica;
	font-size: 1em;
	background: white;
}
img { 
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
a, a:visited {
	color: inherit;
}

.tp	{
	padding: 5em;
}
header {
  position: fixed;
  padding: 1em 1em 1em 2.5em;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background:rgba(0,0,0,0.2);
}

.headerfoto{
	width: 100%;
	z-index: -1000;
	
	}
	.headerfoto_box{
	max-height: 35em;
	background-image: url("../images/anders-jilden-307322.jpg");
	}

.site-logo {
	position: relative;
	display: block;
	float: left;
	width: 4em;
}
.site-logo img {
	width: 4em;
}

.navi {
	position: relative;
	float: left;
	z-index: 400;
	top: 0;
	left: 0;
	display: block !important;
	width: 80%;
	padding: 1.75em 1em 1em 0em;
	opacity: .95;
	background: none;
}
.navi ul {
	list-style-type: none;
	margin: 0;
	text-align: right;
}
.navi ul li {
	display: inline-block;
	margin-bottom: 0.75em;
	margin-left: 1.5em;
}
.navi ul li a {
	font-size: .85em;
	padding-bottom: .5em;
	text-decoration: none;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: #FFFFFF;
	-webkit-transition: color .3s;
	transition: color .3s;
}
.navi ul li a:hover {
	outline: none;
	color: #C287FF;
	border-bottom: 1px solid white;
}
.navi ul li a:active {
		outline: none;
		color: grey;
}

.at {
	display: flex;
	text-align: left;
	z-index: 10;
	position: sticky;
	

}

.textintro {
	color: white;
	background: #C287FF;
  	padding: 3em 3em 3.5em 3em; 
	width: 90%;
	font-size: 1em;
}

.textintrocv {
	color: white;
	background: #C287FF;
	padding: 2em 1em 3.5em 1em; 
	width: 30%;
	font-size: 1em;
}

.pftext1 {
	color: white;
    background-image: -webkit-linear-gradient(top left, #C287FF 0%, rgb(0,0,0) 100%);
    background-image: -o-linear-gradient(top left, #C287FF 0%, rgb(0,0,0) 100%);
    background-image: linear-gradient(to bottom right, #C287FF 0%, rgb(0,0,0) 100%);	
	padding: 2em 1em 3.5em 1em; 
	width: 33%;
	font-size: 0.95em;
}

.pftext2 {
	color: black;
	background: white;
	padding: 2em 1em 3.5em 1em; 
	width: 34%;
	font-size: 0.95em;
}

.pftext3 {
	color: white;
    background-image:-moz-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
    background-image: -webkit-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
    background-image: -ms-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);  	
	padding: 2em 1em 3.5em 1em; 
	width: 33%;
	font-size: 0.95em;	
}

.art {
  padding: 8% 0 8% 23.5%;
  background-image:-moz-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
  background-image: -webkit-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
  background-image: -ms-linear-gradient( 135deg, #C287FF 0%, rgb(0,0,0) 100%);
  width: 50%;
}

.textintro2 {
	color: black;
	background: rgba(255,255,255,1.00);
  	padding: 3em 3em 3.5em 3em; 
	width: 50%;
	font-size: 1em;
}
.textintrocv2 {
	color: black;
	background: rgba(255,255,255,1.00);
  	padding: 2em 2em 3.5em 2em; 
	width: 75%;
	font-size: 1em;
}

.CVtitle {
	color: #FFFFFF;
	font-size: 1.5em;
}

.art2 {
  padding: 8% 0 8% 23.5%;
  background-image:-moz-linear-gradient( 135deg, rgb(0,0,0) 0%, #C287FF 100%);
  background-image: -webkit-linear-gradient( 135deg, rgb(0,0,0) 0%, #C287FF 100%);
  background-image: -ms-linear-gradient( 135deg, rgb(0,0,0) 0%, #C287FF 100%);
  width: 50%;
}
.button {
    background-color: #C287FF;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    color: white; 
    border: 2px solid rgba(255,255,255,1.00);
	border-radius: 12em;
}
 

.button2 {
    background-color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    color: #C287FF;
    border: 2px solid #C287FF;
	border-radius: 12em;
}

.button:hover {
    background-color: white;
    color: #C287FF;
	}

.button2:hover {
    background-color: #C287FF;
    color: white;
	}

.center {
	background-color: #C287FF;
	;color: white;
	align-content: center;
	align-items: center;
	align-self: center;
	width: 100%;
	text-align: center;
	padding: 1.5em; 
	font-size: 0.95em;
	
}
	.center-contact {
	align-content: center;
	align-items: center;
	align-self: center;
	width: 100%;
	text-align: center;
	padding: 1.5em; 
}



.Pagepic {
	max-height: 40em;
	max-width: 8em;
	align-content:stretch;
		
}

.artwork {
	  position: relative;
	position: flex;
}


.dot{
  position: absolute;
  z-index: 500;
  top: 17.5em;
  right: 2.5%;
  display: block;
  width: 45%;
	max-width: 25em;
	border-radius: 50%;
	box-shadow: 0.1em -0.1em 2em -1em #fff;
}
/* Container voor het linker zijmenu en rechter content */
.container {
  display: flex;
}

.side-menu {
  width: 30%;
  padding: 1em;
  background-color: rgba(62, 0, 1, 0.05);
  color: rgba(62, 0, 1, 1.00);
}

.tab-container {
  flex-grow: 1;
  padding: 1em;
  background-color: white;
}

/* Standaard tabbladen stijlen */
.tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.tab-button {
  flex: 1;
  padding: 0.75em 1em;
  background-color: #f0f0f0;
  color: rgba(62, 0, 1, 1.00);
  cursor: pointer;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-align: center;
  transition: background-color 0.3s;
  border: 1px solid #ddd;
  border-bottom: none;
}

.tab-button:hover {
  background-color: #e2e2e2;
}

/* Actieve tabblad */
.tab-button.active {
  background-color: rgba(62, 0, 1, 0.1);
  color: rgba(62, 0, 1, 1.00);
  font-weight: bold;
}

/* Standaard verborgen content voor niet-actieve tabbladen */
.tab-content {
  display: none;
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: white;
}

.tab-content.active {
  display: block;
}


.centertext{
	text-align: center
}
}
@media (max-width: 600px) {
    .project-container {
        flex-direction: column;
        align-items: center;
    }

    .project-item {
        width: 100%;
        flex: none; /* projecten nemen volledige breedte in op mobiel */
    }
}
@media (max-width: 600px) {
    .buttonreset {
        font-size: 0.8em; /* Schaal de tekstgrootte naar beneden op kleine schermen */
        padding: 0.8em 1.6em; /* Pas padding aan voor kleinere schermen */
    }

}


.textintrocv {
    word-wrap: break-word; /* Breek lange woorden */
    overflow-wrap: break-word; /* Breek lange woorden */
}

.textintrocv h3 {
    font-size: 1.2em; /* Pas de lettergrootte aan voor kleinere schermen */
}


.textintrocv2 {
    word-wrap: break-word; /* Breek lange woorden */
    overflow-wrap: break-word; /* Breek lange woorden */
}

.textintrocv2 h3, .textintrocv2 p, .textintrocv2 h5 {
    font-size: 1em; /* Pas de lettergrootte aan voor kleinere schermen */
}


@media (max-width: 600px) {
	.textintrocv, .textintrocv2 { 
		font-size: 0.9em; /* Verklein de lettergrootte op kleine schermen */ 
		padding-left: 0.5em;
		padding-right: 0.5em;
			
} 
.CVtitle {
   font-family: 'Waiting for the Sunrise', cursive ;  /* Of een ander Typekit-lettertype */
    font-weight: bold; /* Optioneel */
	font-size: 1.4em;
}
	
	.textintrocv h3, .textintrocv2 h3 { 
		font-size: 1em; /* Verklein de koptekstgrootte op kleine schermen */ }
}

.textintrocv, .textintrocv2, .at {
    word-break: keep-all; /* voorkomt dat woorden midden in worden afgebroken */
}
.textintrocv, .textintrocv2, .at{
    hyphens: auto; /* zorgt voor logische woordafbreking */
}

.button, .button2 {
    hyphens: auto; /* zorgt voor logische woordafbreking in knoppen */
}
.textintrocv, .textintrocv2, h3, h5, p {
    hyphens: auto; /* Zorgt voor logische woordafbreking */
}

