@charset "UTF-8";

/* Algemene en Reset Stijlen */
* {
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    font-size: 11px;
    font-family: Helvetica, Arial, sans-serif;
}

.image-aside img {
    border: none;
}

/* Structuur en Layout */
#container {
    margin: 0 auto;
    width: 950px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content {
    display: flex;
    background: #ffffff;
    color: #434343;
}

.content--index {
    justify-content: space-between;
    margin: 40px 0 0;
}

.left-text, .middle-text-home, .right-text {
    flex: 1;
    margin-right: 40px;
}

.right-text {
    margin-right: 0;
}

.content--pages {
	margin: 30px 0 0 0;
}

/* Specifieke Component Stijlen */
#logo {
    background: url(https://www.color-graphics.nl/mail-images/cg_e-mail_logo.png) no-repeat;
    background-size: contain;
    height: 63px;
    width: 548px;
    margin: 20px 0 10px;
}

#content h3 {
    font-weight: normal;
    font-size: 15px;
    margin-bottom: 10px;
}

#content h3.subheading {
    color: #959595;
}

#content h2 {
    font-weight: normal;
    font-size: 15px;
    margin-bottom: 10px;
}

#content h2.subheading {
    color: #959595;
}




/* H3 op de pagina Sign*/
.h3-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h3-header a {
  text-decoration: none;
  color: #009ee0; /* Pas deze kleur aan aan uw stijl */
  margin-right: 30px; /* Of de hoeveelheid ruimte die u wilt */
}
/* ------------------------------ */




/* lightbox CSS */
.overlay {
  display: none; /* Verborgen totdat een afbeelding wordt geklikt */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Semi-transparante achtergrond */
  overflow: auto; /* Zorgt ervoor dat de inhoud scrollbaar is als deze te groot is */
  transition: opacity 0.5s ease; /* Voegt een fade-effect toe */
  opacity: 0; /* Start onzichtbaar */
}

/* Stijl voor de lightbox-content */
.lightbox-content {
  margin: 5% auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
}

/* Stijl voor de grotere afbeelding */
.lightbox-content img {
  max-height: 100%;
  max-width: 100%;
  margin: auto;
  display: block;
}

/* Sluitknop stijl */
.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

/* Navigatiepijlen stijl */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.image-aside img.lightbox-trigger {
    cursor: pointer; /* Verandert de cursor alleen voor afbeeldingen die een lightbox openen */
}

/* ------------------------------ */




#content p {
    font-size: 11px;
    padding: 10px 0;
    line-height: 15px;
    color: #898989;
}

#content aside.example-list {
    width: 140px;
    height: 400px;
    padding: 20px 30px;
    background: #434343;
    margin: 0 20px 0 0;
}

.description-block {
    flex: 1; 
    margin: 0 20px 0 0;
}

.image-aside {
   	flex: 0;
}

.contactMap {
	margin: 30px;
    display: flex;
    justify-content: flex-end; /* Dit zorgt ervoor dat de inhoud (de afbeelding) naar rechts wordt uitgelijnd. */
}

#container #content aside.blue, #container #content aside.blue a {
    color: #009ee0;
}

#container #content aside.yellow, #container #content aside.yellow a {
    color: #ffdc00;
}

#container #content aside.red, #container #content aside.red a {
    color: #ea69a0;
}

/* Menu CSS */
#menu {
    margin: 20px 0 0 0px;
    background: url(../images/menu_bg.jpg) repeat-x bottom;
    width: 930px;
    height: 36px;
    padding-left: 20px;
}

#menu ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}

#menu ul li {
    margin-right: 1px;
    box-sizing: border-box;
}

#menu ul li:last-child {
    margin-right: 0;
}

#menu ul li a {
    padding: 12px 15px 8px 15px;
    background: linear-gradient(to bottom, #a9a9a9, #808080);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

#menu ul li a.active {
    background: url(../images/active_menu_tab_bg.jpg) repeat-x;
    color: #e2007a;
}


/* Begin Banner CSS */
#banner {
    position: relative;
    height: 196px;
    width: 948px;
    border: 1px solid #b5b5b5;
}

#banner a {
    position: absolute;
    top: 0;
    left: 0;
    display: none;  /* Standaard is de link verborgen */
    z-index: 8;  /* Basis z-index voor alle links */
}

#banner a.active {
    display: block;  /* Alleen de actieve link wordt weergegeven */
    z-index: 10;  /* De actieve link staat bovenaan */
}

#banner a.last-active {
    z-index: 9;  /* De vorige actieve link staat net onder de huidige actieve link */
}