/** 
 * main.css
 * 
 * 1. General HTML tags
 * 2. Masthead area
 * 3. Main content and sidebar
 * 4. Footer
 * 5. Media queries for responsive layout
 * 6. Accessibility helpers
 * 
 */

/*********************************************************************
 * 1. General HTML tags
 *
 */

* {
	box-sizing: border-box; 
}

body {
	padding: 5%;
	max-width: 1600px; 
	margin: 0 auto; 
}

body, td, input[type=text], textarea {
	/*font-family: 'Quattrocento', serif;*/
	font-family: 'Montserrat', sans-serif;
	font-size: 105%; 
	line-height: 1.8em;
	color: #444; 
}

img {
	max-width: 100%; 
}

h2 {
	border-top: 1px solid #eee; 
	padding-top: 1em;
	font-weight: normal;
}

h3 {
	border-top: 1px solid #eee; 
	padding-top: 1em;
	color: #777; 
}

a {
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #ccc; 
}
	a:hover,
	.nav a:hover {
		color: #000;
		border-color: #aaa; 
	}

blockquote {
	margin-left: 0;
	padding-left: 1.5em;
	padding-right: 2em; 
	border-left: 4px solid #ddd; 
	font-style: italic; 
	color: #777; 
}

pre, code {
	background: #eee; 
	border: 1px solid #ddd; 
}

pre {
	font-size: 14px; 
	line-height: 1.4em;
	padding: 1em;
	border-left: 4px solid #ddd; 
}

.site-title-subtitle-container {
	width: 100%;
	max-width: 300px;
	margin-bottom: 20px;
	text-align: left;
}

.site-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 66px;
	font-weight: 900;
	color: black;
	font-style: italic;
	line-height: 1.0;
	letter-spacing: -2px;
	text-align: left;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.site-title-line {
	display: block;
	text-align: center;
	margin: 0 auto;
}

.site-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: black;
	text-align: right;
	margin-bottom: 20px;
	letter-spacing: -1px;
	white-space: nowrap;
	display: block;
}

/*********************************************************************
 * 2. Masthead area
 *
 */
 
 /* Hamburger-menu styling */
.hamburger {
    display: none; /* Verborgen op desktop */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 30px;
    height: 25px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Hamburger-menu balken */
.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
    background-color: #000;
    border-radius: 4px;
    position: relative;
    width: 30px;
    height: 2px;
    transition: background-color 0s 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    width: 30px;
    height: 2px;
    transition: transform 0.15s ease;
}

.hamburger-inner::before {
    top: -8px;
    left: 0;
}

.hamburger-inner::after {
    bottom: -8px;
    left: 0;
}

/* Hamburger-menu actief (kruis) */
.hamburger.is-active .hamburger-inner {
    background-color: transparent;
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Topnav op mobiel */
@media (max-width: 768px) {
    /* Hamburger-menu knop */
    .hamburger {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }

    /* Topnav op mobiel */
    .topnav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
        border-left: 3px solid black;
        display: flex;
        flex-direction: column;
    }

    .topnav.active {
        transform: translateX(0);
    }

    /* Container voor menu-items */
    .topnav-items-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        width: 100%;
    }

    /* Menu-items */
    .topnav li {
        text-align: right;
        margin-bottom: 15px;
        padding: 0;
        border: none;
        background: transparent;
        width: 100%;
    }

    /* Stijl voor links in hamburger-menu */
    .topnav a {
        font-family: 'Montserrat', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: black;
        text-decoration: none;
        line-height: 1.8;
        transition: color 0.2s;
        border: none !important;
        background: transparent !important;
        padding: 0;
    }
    
    .topnav a:focus {
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
    }

    /* Actief item: vet en onderlijnd */
    .topnav .current a {
        font-weight: 900;
        border-bottom: 2px solid black !important;
        padding-bottom: 2px;
        display: block;
        margin-left: 10%
    }
	/* Taalkeuze container onderaan */
	.language-container {
	    width: 100%;
	    text-align: right;
	    padding: 10px 20px 10px 0;
	    margin-top: auto;
	}

	/* Taalkeuze lijst */
	.language-container .languages {
	    display: inline-flex;
	    justify-content: flex-end;
	    padding: 0;
	    margin: 0;
	    list-style: none;
	    font-size: 80%;
	    white-space: nowrap;
	}

	/* Taalkeuze items */
	.language-container .languages li {
	    display: inline;
	    width: auto !important;
	    margin: 0 0 0 -0.1em;
	    padding: 0;
	}

	/* Taalkeuze links */
	.language-container .languages a {
	    padding: 0 0.5em;
	    border: none;
	    display: inline;
	    font-size: inherit;
	    font-weight: normal;
	    color: #333;
	    text-decoration: none;
	    margin-left: auto;
	    border-left: 1px solid #ccc !important;
	}

	.languages li:first-child a {
	    border: none !important; 
	    padding-left: 0;
	}

	/* Actieve taal */
	.language-container .languages li.current a {
	    font-weight: bold;
	}

}



.topnav, .topnav li {
	list-style: none; 
	padding: 0;
	margin: 0;
}
	.topnav li {
		float: left; 
		margin-right: 1em;
		margin-bottom: 1em;
	}
	.topnav a {
		padding: 0.25em 0.5em;
		text-decoration: none; 
		display: block;
		background: #eee; 
		color: #333; 
		border: 1px solid #eee; 
	}
	.topnav a:hover {
		background: #ddd;
		border-color: #ddd; 
	}
	.topnav li.current a {
		background: #ddd; 
		border-color: #ddd; 
	}
	.topnav li.edit a {
		background: none; 
	}

.languages {
	list-style: none; 
	margin: 0;
	padding: 0; 
	float: right;
	width: auto; 
	font-size: 80%; 
}

	.languages li {
		list-style: none; 
		display: inline-block;
		margin: 0;
		padding: 0;
	}

	.languages a {
		padding: 0 0.5em;
		border: none; 
		display: inline;
		border-left: 1px solid #ccc;
	        background: transparent;
	}
		.languages li.current a {
			font-weight: bold;
			background: transparent;
		}
		.languages li:first-child a {
			border: none; 
			padding-left: 0;
		}


.categories {
	list-style: none; 
	margin: 0;
	padding: 0; 
	/*float: right;*/
	width: auto; 
	font-size: 80%; 
}

	.categories li {
		list-style: none; 
		display: inline-block;
		margin: 0;
		padding: 0;
	}

	.categories a {
		padding: 0 0.5em;
		border: none; 
		display: inline;
		border-left: 1px solid #ccc;
	        background: transparent;
	}
		.categories li.current a {
			font-weight: bold;
			background: transparent;
		}
		.categories li:first-child a {
			border: none; 
			padding-left: 0;
		}


form.search {
	float: right; 
	margin: 0;
	width: 30%; 
	padding-bottom: 1em;
}
	form.search input {
		margin: 0;
		padding: 0.25em 0.5em;
		border: 1px solid #ccc; 
		width: 100%; 
	}

.breadcrumbs {
	font-size: 80%; 
	width: 70%; 
	float: left;
	clear: both; 
	padding-top: 1em; 
}
	.breadcrumbs span:after {
		content: ">";
		color: #999; 
		padding-left: 0.5em;
		padding-right: 0.25em; 
	}

/*********************************************************************
 * 3. Main content and sidebar
 *
 */

#main {
	border-top: 1px solid #eee; 
	padding-top: 1em; 
	margin-top: 1em; 
	clear: both; 
}

#content {
	width: 85%; 
}

#content, #sidebar {
	padding-bottom: 2em; 
}

body.has-sidebar #content {
	width: 65%; 
	float: left;
}

body.has-sidebar #sidebar {
	width: 35%;
	padding-left: 5%; 
	float: left; 
}

.nav {
	margin-left: 0;
	padding-left: 0;
	list-style: none; 
}

.nav .nav {
	padding-left: 1.5em;
	list-style: disc;
}
.nav li {
	margin: 1em 0;
}

.nav-tree li {
	margin-top: 0;
	margin-bottom: 0;
}

.nav a {
	font-weight: bold;
}

.nav-tree li a {
	color: #333; 
}

.nav .current > a {
	color: #333; 
}

.nav h3 {
	margin-bottom: 0
}

.nav .datetime {
    font-size: 0.67em;
    font-weight: bold;
    line-height: 1.3em;
    text-transform: uppercase;
}

#sidebar img + blockquote {
	margin-top: 0; 
}

.align_left {
	/* for images placed in rich text editor */ 
	float: left;
	margin: 0 1em 0.5em 0; 
	position: relative;
	top: 0.5em;
	max-width: 50%; 
}

.align_right {
	/* for images placed in rich text editor */ 
	float: right;
	margin: 0 0 0.5em 1em;
	max-width: 50%; 
}

.align_center {
	/* for images placed in rich text editor */ 
	display: block;
	margin: 1em auto; 
	position: relative;
	top: 0.5em;
}

figure {
	display: table;
	width: 1px;
	margin: 1em 0;
}

figure img {
	display: table-row;
	margin-bottom: 0.5em;
}

figure figcaption {
	display: table-row;
	font-size: smaller;
	color: #777;
	line-height: 1.4em;
}

.social-links {
    text-align: center;
    margin: 0;
    padding: 0;
}
.social-links a {
    display: inline-block;
    text-decoration: none !important;
    border: none;
    padding: 0;
    margin: 0 5px;
}
.social-links a:hover {
    text-decoration: none !important;
    border: none;
    outline: none;
}
.social-links a img {
    border: none;
    outline: none;
}

/*.statements {
	margin-top: 40px;
}
*/

.statement-container {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}

.number {
	font-size: 80px;
	font-weight: 900;
	color: black;
	line-height: 0.8;
	width: 80px;
	text-align: center;
	margin-right: 15px;
	font-family: 'Montserrat', sans-serif;
}

.statement {
	font-size: 24px;
	color: black;
	font-weight: 700;
	flex: 1;
	font-family: 'Montserrat', sans-serif;
}

.separatorline {
	width: 30%;
	height: 2px;
	background-color: black;
	margin-top: 5px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.slideshow-dots .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slideshow-dots .active, 
.slideshow-dots .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.press_summary {
    background-color: #f9f9f9; /* Lichte grijze achtergrond */
    border-left: 4px solid #ddd; /* Linkerrand voor visuele scheiding */
    padding: 1em; /* Ruimte rondom de tekst */
    margin: 1em 0 1em 20px; /* 20px inspringing links voor de rand */
    font-size: 0.9em; /* Iets kleiner dan de standaard tekst */
    line-height: 1.6em; /* Goede regelafstand voor leesbaarheid */
    color: #555; /* Iets donkerder dan de standaard tekstkleur */
    border-radius: 0 4px 4px 0; /* Afgeronde hoeken rechts */
}



/*********************************************************************
 * 4. Footer
 *
 */

#footer {
	clear: both; 
	border-top: 1px solid #eee; 
	font-size: 80%; 
}

/*********************************************************************
 * 5. Media queries for responsive layout
 *
 */

@media only screen and (max-width: 767px) {
	/* mobile layout */ 

	.languages {
		width: 100%; 
		margin-bottom: 1em;
	}
	.topnav {
		float: none;
		clear: both; 
		width: 100%; 
	}
	.breadcrumbs {
		margin-bottom: 1em;
		margin-top: 0;
	}

	body, td, textarea {
		font-size: 100%; 
	}
	body.has-sidebar #content, 
	body.has-sidebar #sidebar {
		float: none;
		width: 100%; 
		padding: 0; 
	}
	form.search {
		float: none; 
		width: 100%; 
		padding-bottom: 0;
	}
	#content {
		width: 100%; 
	}
	#sidebar {
		border-top: 1px solid #eee;
		padding-top: 1em; 
	}
	.align_left, .align_right, .align_center {
		display: block;
		float: none; 
		margin: 1em auto;
		max-width: 100%; 
	}

}

@media only screen and (min-width: 1200px) {
	/* extra-wide desktop layout */ 
	
	body, td, textarea {
		font-size: 115%; 
	}
}

/*********************************************************************
 * 6. Accessibility helpers
 *
 */

/* Hide visually, but remain approachable for screenreader */

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	white-space: nowrap;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	border: 0;
}

/* Show bypass link on hover */

.element-focusable:focus {
	clip: auto;
	overflow: visible;
	height: auto;
}

/* Sample styling for bypass link */

.bypass-to-main:focus {
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #333;
	color: #fff;
}

/*********************************************************************
 * 7. Nextcloud javascript folder browser
 *
 */
  /* Stijl voor de loader */
  .loader {
    border: 4px solid #e0e0e0;
    border-top: 4px solid #444;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
    display: block;
  }

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

  /* Stijl voor de file-items */
  .file-item {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    vertical-align: top;
    max-width: 222px;
    text-align: center;
  }

  /* Stijl voor de bestandsnaam */
  .file-name {
    word-break: break-all;
    margin: 5px 0;
    text-align: center;
    font-size: 0.67em;
    font-weight: bold;
    line-height: 0.7em;
  }

  /* Stijl voor de afbeeldingscontainer */
  .image-container {
    position: relative;
    display: inline-block;
    max-width: 200px;
    max-height: 250px;
    cursor: pointer;
    margin-bottom: 10px;
  }

  /* Stijl voor de afbeelding */
  .image-container img {
    max-width: 200px;
    max-height: 250px;
    transition: filter 0.3s ease;
  }

  /* Stijl voor het download-icoon */
  .download-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  /* Hover-effecten */
  .image-container:hover img {
    filter: brightness(0.7);
  }

  .image-container:hover .download-icon {
    opacity: 1;
  }

