/* treat php-file as css in Netbeans:
<style>
/**/

/*-----------Variables-----------------*/
:root {
  --rootBackgroundColor  : #F5F5DC;
  --bodyBackgroundColor  : #F5F5DC;
  --rootFontFamily       : Roboto, Open Sans, Lato;
  --rootFontSize         : 16px;
  --rootLineHeight       : auto;
  
  --bodyMargin           : 0px auto 0px auto;
  --bodyWidth            : 800px;
  --bodyTextColor        : #333333;
  --bodyTextAlign        : left;;
  
  --headerHeight         : auto;
  --headerPadding        : 10px 0px 10px 0px;
  --headerMargin         : auto;
  --headerBorderTop      : auto;
  --headerBorderBottom   : auto;
  --headerTextColor      : #003366;
  --headerFontFamily     : Roboto, Open Sans, Lato;
  --headerFontSize       : 1.33rem;
  --headerLineHeight     : 1.125rem;
  --headerDisplay        : flex;
  --headerTextAlign      : center;
  --headerPosition       : relative;

  --headerH1FontSize     : auto;

  /*--headerLeftLinkBackgroundImage  : url(../images/icDay2025-logo.png);*/
  --headerLeftLinkBackgroundImage  : url(url(../images/icDay2025-logo.png));
  --headerLeftBackgroundRepeat     : no-repeat;
  --headerLeftBackgroundSize       : contain;
  --headerLeftDisplay              : block;
  --headerLeftHeight               : auto;
  --headerLeftWidth                : 1000px;
  --headerLeftFontFamily           : ;
  --headerLeftFontSize             : auto;
  --headerLeftContent              : ;
  
  --headerLeftHoverBackgroundImage : auto;
  
  --headerMiddleFlexbasis          : auto;
  --headerMiddleFontSize           : 2.5vw;;
  
  --topNavTextColor                : #1C3D5A;
  --topNavBackgroundColor          : auto;
  --topNavFontFamily               : Roboto, Open Sans, Lato;
  --topNavFontSize                 : 0.9375rem;
  --topNavLetterSpacing            : 1px;
  --topNavTextTransform            : uppercase;
  
  --topNavLinkFontSize             : 0.9375rem;

  --bottomNavHeight                : 40px;
  --bottomNavBorderTop             : 1px solid;
  --bottomNavBorderBottom          : ;
  
  --bottomNavTextColor             : auto;
  --bottomNavBackgroundColor       : auto;
  --bottomNavFontFamily            : auto;
  --bottomNavFontSize              : auto;
  --bottomNavLetterSpacing         : auto;
  --bottomNavTextTransform         : uppercase;
  
  --bottomNavLinkFontSize          : auto;

  --articleTextColor               : ;
  --articleFontFamily              : Roboto, Open Sans, Lato;
  --articleFontSize                : 18px;
  --articleH1TextColor             : #003366;
  --articleH1FontFamily            : Merriweather, Roboto, Open Sans, Lato;
  --articleH1FontSize              : 36px;
  --articleH2TextColor             : #003366;
  --articleH2FontFamily            : Roboto, Open Sans, Lato;
  --articleH2FontSize              : 24px;
  
  --buttonTextColor               : #1C3D5A;
  --buttonBackgroundColor         : #A3D8F4;
  --buttonBorder                  : 2px solid;
  --buttonBorderRadius            : 8px;
  --buttonFontFamily              : ;
  --buttonFontWeight              : bold;
  --buttonPadding                 : 6px 14px;
  --buttonTextAlign               : center;
  --buttonTextDecoration          : none;
  --buttonDisplay                 : inline-block;

  --buttonHoverTextColor          : #A3D8F4;
  --buttonHoverBackgroundColor    : #003366;
  
  --socialMediaFloat              : auto;
  --socialMediaDisplay            : flex;
  --socialMediaBorderRadius       : 3px;

  --socialMediumFloat             : auto;
  --socialMediumDisplay           : flex;
  --socialMediaJustifyContent     : space-between;
  --socialMediumBoxSizing         : border-box;
  --socialMediumWidth             : 40px;
  --socialMediumHeight            : 40px;
  
  --logoLandscapeWidth            : 150px;
  --logoPortraitHeight            : 80px;
  
  
  --headerRightDisplay : none;    
  --headerRightDisplayMobile : none;    
  --headerHeightMobile          : auto;
  /*--headerHeightMobile          : ;*/
  --headerRightDisplayMobile    : block;;
  --showMenuRightMobile         : ;
  --headerRightFontSizeMobile   : 5vh;;
  --subMenuItemWidthMobile      : 100%;;
  
  --socialMediumWidthMobile     : 30px;
  --socialMediumHeightMobile    : 30px;

  --logoLandscapeWidthMobile    : 100px;
  --logoPortraitHeightMobile    : 53px;

  --socialMediaDisplayMobile    : inline;
}

 @font-face {
        font-family: Roboto;
        src: url(Roboto-Regular.ttf);
      }
 @font-face {
        font-family: Open Sans;
        src: url(Open Sans-Regular.ttf);
      }
 @font-face {
        font-family: Lato;
        src: url(Lato-Regular.ttf);
      }
 @font-face {
        font-family: Merriweather;
        src: url(Merriweather-Regular.ttf);
      }
 @font-face {
        font-family: Pacifico;
        src: url(Pacifico-Regular.ttf);
      }
 @font-face {
        font-family: Quicksand;
        src: url(Quicksand-Regular.ttf);
      }

/* ----- CSS for all kind of devices -----*/
:root {
  font-family:      var(--rootFontFamily);
  font-size:        var(--rootFontSize);
  line-height:      var(--rootLineHeight);
  background-color: var(--rootBackgroundColor);
}

body {
  margin:           var(--bodyMargin);
  width:            var(--bodyWidth);
  /*text-align:       var(--bodyTextAlign);*/
  color:            var(--bodyTextColor);
  background-color: var(--bodyBackgroundColor);
}

header {
  height:           var(--headerHeight);
  padding:          var(--headerPadding);
  margin:           var(--headerMargin);
  border-top:       var(--headerBorderTop);
  border-bottom:    var(--headerBorderBottom);
  color:            var(--headerTextColor);
  font-family:      var(--headerFontFamily);
  font-size:        var(--headerFontSize);
  line-height:      var(--headerLineHeight);
  display:          var(--headerDisplay);
  text-align:       var(--headerTextAlign);
  position:         var(--headerPosition);
}

#headerLeft {
  height:            var(--headerLeftHeight);
  width:             var(--headerLeftWidth);
  flex:         1 1 0px;
}

header h1 {
  font-size:   var(--headerH1FontSize, 2.25rem);
}

#headerLeft > a {
  background-image:  var(--headerLeftLinkBackgroundImage);
  background-repeat: var(--headerLeftBackgroundRepeat);
  background-size:   var(--headerLeftBackgroundSize);
  display:           var(--headerLeftDisplay);
  height:            var(--headerLeftHeight);
  /*width:             var(--headerLeftWidth, 100px);*/
/*  width: 1000px;
  height: auto;*/
  font-size:         var(--headerLeftFontSize);
}

#headerLeft > a {
/*  height: auto;
  width: auto;*/
}
  
#headerLeft > a:hover {
  background-image:   var(--headerLeftHoverBackgroundImage);
  /*background-image:  url("../images/VGW_header_1000-1.png");*/
}

#headerMiddle {
  /*flex-basis:       500px;*/
  /*-webkit-flex-basis: var(--headerMiddleFlexbasis, 50%);*/
  flex-basis:         var(--headerMiddleFlexbasis);
  margin:             var(--headerMiddleMargin);
  font-size:          var(--headerMiddleFontSize);
  text-align:         var(--headerMiddleTextalign);
  
}

#headerRight {
  font-size:          var(--headerRightFontSize);
  line-height:        var(--headerRightLineHeigth);
  text-align:         var(--headerRightTextAlign);
}

#topNav {
  color:              var(--topNavTextColor);
  background-color:   var(--topNavBackgroundColor);
  font-family:        var(--topNavFontFamily);
  font-size:          var(--topNavFontSize);
  letter-spacing:     var(--topNavLetterSpacing);
  text-transform:     var(--topNavTextTransform);
}

#topNav a {
  font-size:          var(--topNavLinkFontSize);
}

#bottomNav {
  height:             var(--bottomNavHeight);
  border-top:         var(--bottomNavBorderTop);
  color:              var(--bottomNavTextColor);
  background-color:   var(--bottomNavBackgroundColor);
  font-family:        var(--bottomNavFontFamily);
  font-size:          var(--bottomNavFontSize);
  letter-spacing:     var(--bottomNavLetterSpacing);
  text-transform:     var(--bottomNavTextTransform);
}

#bottomNav a {
  font-size:          var(--bottomNavLinkFontSize);
}

/*--- Basic layout of all menu-item links ---*/

.mainMenuItem, 
.subMenuItem {
  display:block;
  text-decoration: none;
  /*font-size: 0.9375rem;*/
/*  letter-spacing: 1px;*/
  /*text-transform: uppercase;*/
  padding: 0 10px 0 10px;
}

.subMenuItem {
  font-style: italic;
  background-color: white;
}

.subMenuItem:hover {
  color: #827A23; /* military green */
  /*background: #19c589;*/
}

/*-- active menu-item --*/
.active {
  /*background-color: lightgrey;*/
  font-weight: bold;
}

article {
  color:              var(--articleTextColor);
  font-family:        var(--articleFontFamily);
  font-size:          var(--articleFontSize);
}
  
article h1 {
  color:              var(--articleH1TextColor);
  font-family:        var(--articleH1FontFamily);
  font-size:          var(--articleH1FontSize);
}

article h2 {
  color:              var(--articleH2TextColor);
  font-family:        var(--articleH2FontFamily);
  font-size:          var(--articleH2FontSize);
}

article button {
  color:              var(--buttonTextColor);
  background-color:   var(--buttonBackgroundColor);
  font-family:        var(--buttonFontFamily);
  font-size:          var(--buttonFontSize);
  font-weight:        var(--buttonFontWeight);
  border:             var(--buttonBorder);
  border-radius:      var(--buttonBorderRadius);
  padding:            var(--buttonPadding);
  text-align:         var(--buttonTextAlign);
  display:            var(--buttonDisplay);
}

article button:hover {
  color:              var(--buttonHoverTextColor);
  background-color:   var(--buttonHoverBackgroundColor);
}

article button a {
  text-decoration:    var(--buttonTextDecoration);
  color:              inherit;
}

footer {
  height:     20px;
  font-size:  0.8rem;
  text-align: right;
  padding:    10px 0px 0px 0px;
  color:      black;
}

/* Style for forms */
textarea {
  /*float:   right;*/
}

.socialMedia {
  float:           var(--socialMediaFloat);
  display:         var(--socialMediaDisplay);
  justify-content: var(--socialMediaJustifyContent);
  border-radius:   var(--socialMediaBorderRadius);
}

/*.socialMedia svg{*/
.socialMedia img {
  /*float:         var(--socialMediumFloat);*/
  /*display:       var(--socialMediumDisplay);*/
  box-sizing:    var(--socialMediumBoxSizing);
  width:         var(--socialMediumWidth);
  height:        var(--socialMediumHeight);
}

.logoLandscape {
  width:         var(--logoLandscapeWidth);
}
.logoPortrait {
  height:        var(--logoPortraitHeight);
}
/*---- end CSS for all kind of devices ----*/

/*---- Responsive Style for Mobiles ----*/
@media screen and (max-width : 900px) {
  
  body {
    width: 100%;
  }
  
  /*test*/
  header > img {
  /*img {*/
    width: 100%; 
    height: auto; 
  }
  
  header {
    height:        var(--headerHeightMobile);
    text-align:    left;
    line-height:   5px;
    font-size:     0.5rem;
/*    text-align: center;*/
    padding-left:  10px;
  }
  header h1 {
    /*font-size: 1.0rem;*/
  }
  #headerLeft {
    flex:        1 1 0px;
    /*height:      300px;*/
    /*width:       1000px;*/
  }
/*  #headerLeft > a {
  }*/
  
  #headerLeft > a {
/*#headerLeft {*/
  /*background-image:  var(--headerLeftLinkBackgroundImage, url(../images/logogrijs2.jpg));*/
  background-repeat: var(--headerLeftBackgroundRepeat);
  background-size:   var(--headerLeftBackgroundSize);
  display:           var(--headerLeftDisplay);
  /*height:            var(--headerLeftHeight, 50px);*/
  /*width:             var(--headerLeftWidth, 100px);*/
  font-size:         var(--headerLeftFontSize);
}

  #headerLeft:hover {
    
  }
  
  nav {
  /*    height: 0px;*/
  }
  
  #headerMiddle {
   /*flex-basis:         60%;*/
  }

  #headerRight {
    font-size:   var(--headerRightFontSizeMobile);
    line-height: 50px;
    text-align:  right;
    padding:     4rem 0 0 0;
    display:     var(--headerRightDisplayMobile);
  }
  /*Hide checkbox*/
  /*input[type=checkbox] {*/
  #showMenu {
  /*#topNav {*/
    display: none;
  }
  /*Show menu when invisible checkbox is checked*/
  /*input[type=checkbox]:checked ~ #menu {*/
  /*#showMenu:checked ~ #menu {*/
  /*#showFullMenu:checked ~ #topMenu {*/
  /*#showFullMenu:checked ~ #topNav {*/
  #showMenu:checked ~ #topMenu {
    display: block;
  }

  /*Style 'show menu' label button*/
  .showMenu {
    /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
    text-decoration: none;
    /*font-size: 3rem;*/
    /*color: #fff;*/
    /*background: #827A23;*/
    text-align: right;
    /*padding: 0px 10px 20px 0px;*/
    padding: 0px 0px;
    display: block;
  }
  
  #topNav {
/*    padding-bottom: 30px;
    margin-bottom: 30px;*/
    /*display: none;*/
  }

  #topNav .mainMenu {
    display: none;
  }
  
  /* Make dropdown links appear inline */
  .mainMenu {
    list-style-type:none;
    margin:0;
    padding:0;
    position: static;
  }
  #topMenu .mainMenu {
    /*display: none;*/
  }
  /*Create vertical spacing*/
  .mainMenu > li {
    margin-bottom: 1px;
  }
  /*Make all menu links full width*/
  .mainMenu li, .subMenuItem {
    width: var(--subMenuItemWidthMobile, 70%);
    font-size: 0.8rem;
  }
  /*Display 'show menu' link*/
  #topNav .showMenu {
    display: inline-block;
  }

  /*@media screen and (max-width : 1600px) {*/

  /*Create a horizontal list with spacing*/
  .mainMenu li {
    display:      inline-block;
    float:        left;
    margin-right: 1px;
    /*background: #2f3036;*/
    /*background: #EAE9CA;*/
    border-bottom: 1px solid #ddd; /* light grey */
  }
  /*Style for menu links*/
  .mainMenuItem, .subMenuItem {
    height:      50px;
    line-height: 50px;
    /*width:       70%; // TEST 27-01-2020*/
  }
  /*Style for dropdown links*/
  .subMenuItem:hover {
      background: #f3f3f3; /* very light grey */
/*      color: #2f3036;   black */
/*    height: 40px;
    line-height: 40px;*/
  }
  
  /*Hide sub-menu dropdown until they are needed*/
  .subMenu {
    display: none;
  }
  /*Make dropdown links vertical*/
  /*li ul li {*/
  .subMenu li {
    display: inline-block;
    float: none;
  }
  /*Prevent text wrapping*/
  .subMenuItem {  /* not tested*/
/*      width: auto;
      min-width: 100px;
      padding: 0 20px;*/
  }
  /* Display the submenu by hover over the main menu-item or over the submenu itself */
  .mainMenuItem:hover + .subMenu,
  .subMenu:hover {
    display: block;
  }
  
  article {
    padding: 2% 2%;
  }
  
  article img {
    /*align: middle;*/
/*    float: left;
    width: 50%;
    height: auto; */
  }
  
  #bottomNav {
    display: block;  
  }

  footer {
    width:      100%;
    margin:     0;
    /*text-align: right;*/
  }
  
  .socialMedia {
    display:         var(--socialMediaDisplayMobile);
  }

  .socialMedia img {
    width:         var(--socialMediumWidthMobile);
    height:        var(--socialMediumHeightMobile);
  }

.logoLandscape {
  width:         var(--logoLandscapeWidthMobile);
}
.logoPortrait {
  height:        var(--logoPortraitHeightMobile);
}

}  /* -- end @media screen and (max-width : 900px) -- */



/*---- Responsive Style for Computers ---*/
@media screen and (min-width : 900px) {


  /** Hide 'show menu' link **/
  .showMenu, #showMenu {
    display: none;
  }
  
  header {
    /*text-align: center;*/
  }
  
  header {
    /*font-size: 3rem;*/
  }
  header h2 {
    /*font-size: 2rem;*/
  }
  header h3 {
    /*font-size: 1.5rem;*/
  }
  
  #headerLeft {
  }
  #headerRight {
    display:     var(--headerRightDisplay);
  }

  #topNav {
    height:        40px;
    margin:        0;
    width:         100%;
    margin:        auto;
    border-bottom: 1px solid var(--bodyTextColor);
  }
  
  
  #bottomNav {
    display: block;
/*    height:        40px;
    margin:        0;
    width:         100%;
    margin:        auto;
    border-top:    1px solid var(--bodyTextColor);*/
    /*border-bottom: 1px solid var(--bodyTextColor);*/
  }
  
  /*Strip the ul of padding and list styling*/
  .mainMenu, .subMenu {
    list-style-type: none;
    margin:          0;
    padding:         0;
    position:        absolute;
    width:           inherit;
  }
  /*Create a horizontal list with spacing*/
  .mainMenu > li {
    display:      inline-block;
    float:        left;
    margin-right: 1px;
  }
  /*Style for menu links*/
  .mainMenuItem, .subMenuItem {
    height:      30px;  /* perhaps not needed */
    line-height: 30px;
  }
  /*Make dropdown links vertical*/
  .subMenu > li {
    display: block;
    float:   none;
  }
  .subMenu {
    display: none;
  }
  /*Display the dropdown on hove*/
  .mainMenuItem:hover + .subMenu,
  .subMenu:hover {
    display:      block;
    border-style: none solid solid solid;
    border-width: 0.1px;
    border-color: #999999; /* grey */
  }
  
  article {
    width:       100%;
    margin:      auto;
    padding-top: 2%;
  }
  
  footer {
    width:       100%;
    margin:      auto;
    /*text-align: right;*/
  }
  
  /* --- go-to-top button for computers --- */
  #goTopButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    /*background-color: red;*/
    background-color: inherit;
    color: red;
    cursor: pointer;
    padding: 10px;
    /*border-radius: 4px;*/
  }

  #goTopButton:hover {
    color: black;
    background-color: lightgrey;
  }

} /* end @media screen and (min-width : 900px) */

</style>