* {
    margin: 0; 
    padding: 0;
}
@font-face {
    font-family: 'OregonExtraBold';
    src: url('Oregon\ LDO\ ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "sans-serif", "Open Sans";
    overflow-x: hidden;
}
#container {
	width:100%; 
	margin-right:auto;
	margin-left:auto;
}
/* navbar */
#topbar{
    position: relative;
    background-color: black;
}
#navbar {
    box-sizing: border-box;
    color: white;
    background-color: black;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    width: 100%;
    position: absolute  ;
    float: right;
}

#navbar a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 20px;
    transition: background-color 0.3s;
    border-radius: 10px;
}
#navbar a:hover {
    background-color: #0FB2F2;
}

.nav-links {
    display: flex;
    float: right;
    gap: 10px;
}
.menu-icon{
    position: fixed;
    top: 40px;
    right: 50px;
    display: none;
    mix-blend-mode: difference;
    z-index: 1100;
}
.menu-icon div {
    height: 4px;
    background-color: black;
    margin: 5px 0;
    border-radius: 25px;
    transition: 0.3s;
}
.one {
    width: 30px;
}
.two {
    width: 20px;
}
.three {
    width: 25px;
}
.nav:hover div{
    width: 30px;
    /* background-color: #0FB2F2; */
}

/*als zichtbaar    */
.menu-icon.show {
    display: block;
}
.menu-icon:hover + #vertical-navbar,
#vertical-navbar:hover {
    display: flex; /* Zorgt ervoor dat de navbar zichtbaar wordt */
    transform: translateX(0); /* Schuift naar binnen */
}

/* End Nav bar*/


/* uitklap nav bar/*

/* Verticale navigatiebalk */
#vertical-navbar {
    position: fixed;
    top: 0px;
    right: -200px;
    background-color: black;
    height: 100%; /* Volledige schermhoogte */
    width: 200px; /* Breedte van de navigatie */
    display: flex;
    flex-direction: column; /* Links onder elkaar */
    align-items: center;
    padding-top: 100px;
    z-index: 1000;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Links in de verticale navigatiebalk */
#vertical-navbar a {
    color: white;
    text-decoration: none;
    padding: 15px 0;
    font-size: 20px;
    text-align: center;
    width: 100%;
    transition: background-color 0.3s;
}

#vertical-navbar a:hover {
    background-color: #0FB2F2;
}

.menu-icon:hover + #vertical-navbar,
#vertical-navbar:hover {
    right: 0; 
}


/* Logo*/

#text-logo img {
    position: absolute;
    top:50px;
    left: 110px;
    width: 200px;
    height: auto;
}

#symbol-logo img{
    position: relative;
    top: 5px;
    width: 100px;
    max-height: 100px;
    left: 20px;
    mix-blend-mode: difference;
  }
.tag-line {
    top: 80px;
    left: 120px;
    display: flex;
    position: absolute;
    font-family: 'OregonExtraBold', sans-serif;   
    color: #0FB2F2;
}
.tag-line h2 {
    font-size: 20px;
}

/* De 4 principes */
main {
    display: flex;
    margin-top: 100px;
    width: 100%;
}
.principes4 {
    /* background-color: red; */
    min-height: 50vh; 
    width: 80%;
    margin-left: 10%;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.principes4 h2{
    text-align: center;
    color: #0FB2F2;
    font-size: 2.5em;
}
.principes-header {
    padding-top: 20px;
    width: 60%;
    font-size: 22px;
}
.principe1 {
    padding-top: 20px;
    width: 60%;
    font-size: 22px;
}
.principe2 {
    padding-top: 20px;
    width: 60%;
    font-size: 22px;
}
.principe3 {
    padding-top: 20px;
    width: 60%;
    font-size: 22px;
}
.principe4 {
    padding-top: 20px;
    width: 60%;
    font-size: 22px;
}
/* End Logo*/



/* the test */
.article-100-over-mijn-websites {
    height: 100vh; 
    background-color: #F8FAFB;
    display: flex;
}
.article-100-over-mijn-websites2 {
    height: 100vh; 
    background-color: white;
    display: flex;
}
.over-mijn-websites-h2 {
    grid-column: 1 / span 2;
    text-align: left;
    color: #0FB2F2;
}
 .over-mijn-websites {
    display: grid;  
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: auto 1fr; 
    gap: 10px; 
    width: 80%;
    height: 100%;
    margin: 100px auto; 
}
.over-mijn-websites-tekst{
    padding: 0;
    text-align: left;
}
.over-mijn-websites p{
    color: black;
    padding-top: 20px;
}
.custom-bullets {
    list-style: none; /* Verwijdert de standaard bulletpoints */
    padding: 0; /* Optioneel, verwijdert extra ruimte */
}
  
.custom-bullets li {
    background: url('Fotos/bulletpoint.png') no-repeat left top 5px;/*  Gebruik jouw PNG */
    background-size: 16px 16px; /* Zorg dat de afbeelding de juiste grootte heeft */
    padding-left: 24px; /* Creëert ruimte tussen de afbeelding en de tekst */
    line-height: 24px; /* Zorgt voor verticale uitlijning met de bullet */
}
.over-mijn-websites-foto{
    display: flex;
    padding: 0;
    width: auto;
    overflow: hidden;
    max-height:450px;

} 
.over-mijn-websites-foto img {
    object-fit: cover;
    max-width: 95%;
    max-height: auto;
    display: inline-block;
    border-radius: 8px;
}
.over-mijn-websites-logo{
    display: flex;
    padding: 0;
    overflow: hidden;
    height:250px;
    width: auto;
} 

