/* user.css voor ilpa.nl */


/*
Door het grid aan te passen komt bij kleine schermen 'side-l' met het menu boven 'comp'
zie: https://magazine.joomla.org/all-issues/february-2022/joomla-4-cassiopeia-template-a-bunch-of-tips-tricks  */

@supports (display: grid) {
    .site-grid {
        grid-template-areas:
          ". banner banner banner banner ."
          ". top-a top-a top-a top-a ."
          ". top-b top-b top-b top-b ."
          ". side-l side-l side-l side-l ."
          ". comp comp comp comp ."
          ". side-r side-r side-r side-r ."          
          ". bot-a bot-a bot-a bot-a ."
          ". bot-b bot-b bot-b bot-b .";
    }
    @media (min-width: 992px) {
        .site-grid {
            grid-template-areas:
              ". banner banner banner banner ."
              ". top-a top-a top-a top-a ."
              ". top-b top-b top-b top-b ."
              ". side-l comp comp side-r ."
              ". bot-a bot-a bot-a bot-a ."
              ". bot-b bot-b bot-b bot-b ."
        }
    }
}

/* 
Verdeling van de 4 kolommen in het grid en de totale breedte van de website
zie: https://magazine.joomla.org/all-issues/february-2022/joomla-4-cassiopeia-template-a-bunch-of-tips-tricks */

/* static layout: zet de verdeling van de vier kolommen in het grid naar 20-30-30-20% (default is 25 -25-25-25) */
body.wrapper-fluid .site-grid {
  grid-template-columns: [full-start] minmax(0,1fr) [main-start] minmax(0,20%) minmax(0,30%) minmax(0,30%) minmax(0,20%) [main-end] 100px [full-end]
}

/* fluid layout: de default-waardes voor alle vier de kolommen is 19.875rem:       
      grid-template-columns: [full-start] minmax(0,1fr) [main-start] repeat(4,minmax(0,19.875rem)) [main-end] minmax(0,1fr) [full-end]
aangepast: */

@supports (display: grid) {
  @media (min-width: 992px) {
    .site-grid {
      grid-template-columns: [full-start] minmax(1,1fr) [main-start] minmax(0,15rem) minmax(0,25rem) minmax(0,25rem) minmax(0,20rem) [main-end] minmax(1,1fr) [full-end]
    }
  }
}


/*
Aanpassing van achtergrondkleur van de header 
*/
.container-header{
   background-color: #0e79aa;
   background-image: url("/images/headers/niks.jpg");*/
   background-size: cover;*/
   
}







/*menu in sidebar left*/

.container-sidebar-left .mod-menu a {
*/ position: relative;*/
  z-index: 10;
  color: #2d5286;
  font-size: calc(1rem + 0vw);
  background: linear-gradient(180deg, #7d97b2 0%, #b6c6d5 100%);
  padding: 5px 5px 5px 10px;   /*boven, rechts, onder, links */
  width: 200px;
  margin-top: 0px;
  margin-bottom: -12px;
  margin-left: 0px;
  font-weight: bold;
  border: 1px solid #2d5286;
  border-radius: 4px;
}

.container-sidebar-left .mod-menu a:hover {
  color: #eee;
  background: #2d5286; /*blauw*/
}


.container-sidebar-left .mod-menu a:active {
  color: #0F0;
}

.container-sidebar-left .mod-menu a:focus {
  color: #F00;
}

.container-sidebar-left .metismenu-item.active >a{
  color: #ecd509;   /*geel*/
  background: #2d5286   /*blauw*/
}



.eventgallery-back-button {
  background-color: #4CAF50; /* Green */
  border: 1px solid #2d5286;
  border-radius: 4px;
  color: white;
  padding: 0px 32px;*/
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}


.eventgallery-back-button:hover {
  background-color: #ff0000;
  border: 1px solid #ffff00;
  border-radius: 4px;
  color: white;
/*  padding: 15px 32px;*/
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}



















p, .p {
  font-size: calc(0.9rem + 0.0vw);
  color: #2d5286;
}

h1, .h1 {
  font-size: calc(1.3rem + 0.6vw);
  color: #fff;
  background-color: #0e79aa;
  text-indent: .5em;
  border: 1px solid #0e79aa;
  border-radius: 4px;
}

h2, .h2 {
  font-size: calc(1.3rem + 0.6vw);
  color: #e6a66a;
  padding-top: 20px;
}

h3, .h3 {
  font-size: calc(1.0rem + 0.1vw);
  color: #043d66;
}

h4, .h4 {
  font-size: calc(0.8rem + 0.1vw);
  color: #043d66;
}

ul, .ul {
  font-size: calc(0.9rem + 0.0vw);
  color: #043d66;
}

ol, .ol {
  font-size: calc(0.9rem + 0.0vw);
  color: #043d66;
}

.article-info.text-muted {
  font-size: calc(0.7rem);
}

a {
  color: #043d66;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #e32219;
  text-decoration: underline;
}



