@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');

h2, h4, h5, h6, p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

    /* Stijl voor de slideshow-container */
    .slideshow-container {
        position: relative;
        max-width: 100%;
        max-height: 70vh; /* Beperk de hoogte tot 70% van de schermhoogte */
        overflow: hidden;
        margin: auto;
        border-radius: 10px;
    }

    .slide {
        position: relative;
    }

    /* Stijl voor overlaytekst */
    .overlay1 {
        font-family: 'Major Mono Display', monospace;
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -20%);
        font-size: 160%;
        color: white;
    }
    .overlay2 {
        font-family: 'Major Mono Display', monospace;
        position: absolute;
        top: 85%;
        left: 50%;
        transform: translate(-50%, -20%);
        font-size: 140%;
        color: white;
    }


    /* Stijl voor afbeeldingen binnen de slideshow */
    .mySlides {
        margin: auto;
        width: auto;
        height: 70vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        background-position: center;
        border-radius: 10px;
    }


    /* Stijl voor de knoppen */
    .w3-button {
        font-size: 35px;
        color: white;
        background-color: transparent;
        border: none;
        cursor: pointer;
        position: absolute;
        top: 50%; /* Plaats de knoppen in het midden van de afbeelding verticaal */
        transform: translateY(-50%);
    }

    /* Stijl voor de rechterknop */
    .w3-display-right {
        right: 10%; /* Plaats de rechterknop aan de rechterkant van de afbeelding */
    }
    .w3-display-left {
        left: 10%; /* Plaats de rechterknop aan de rechterkant van de afbeelding */
    }

   /* Voeg deze media query toe om de stijlen aan te passen voor kleinere schermen */
@media (max-width: 768px) {
    .overlay1 {
        font-size: 14px; /* Pas de lettergrootte aan voor kleinere schermen */
        top: 50%; /* Pas de verticale positie aan */
        transform: translate(-50%, 100%);
        width: 100%;
        text-align: center;
        margin-bottom: 10%;
    }
    .overlay2
    {
        font-size: 14px; /* Pas de lettergrootte aan voor kleinere schermen */
        top: 50%; /* Pas de verticale positie aan */
        transform: translate(-50%, 210%);
        width: 70%;
        text-align: center;
        margin-bottom: 10%;
    }
    
    .mySlides {
        height: 50vh; /* Pas de hoogte van de afbeeldingen aan */
        left: -75%;
    }
}


/* navbar */

/* Basisstijl voor de navigatiebalk */
/* Basisstijl voor de navigatiebalk */
.navbar {
    margin: 20px;
}

/* Stijl voor de lijst van navigatie-items */
.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    opacity: 1;
}

/* Stijl voor elk navigatie-item */
.nav-item {
    margin: 0 10px;
    padding-top: 10px;
}

/* Stijl voor de koppelingen in de navigatie-items */
.nav-item a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    color: #cf0008;
    font-family: 'Major Mono Display', monospace;
    font-size: auto;
}

/* Stijl voor de koppelingen bij hover (wanneer de muis eroverheen beweegt) */
.nav-item a:hover {
    text-decoration: underline;
}

.nav-item.active a {
    font-size: large;
    text-decoration: underline;
}

/* Stijl voor het menu-icoon */
.menu-icon {
    display: none; /* Verberg het icoon standaard */
    cursor: pointer;
}

/* Stijl voor de drie horizontale streepjes in het icoon */
.bar {
    width: 25px;
    height: 3px;
    background-color: #cf0008;
    margin: 6px 0;
}

/* Voeg deze CSS-regel toe om het menu weer te geven wanneer het icoon wordt aangeklikt */
.nav-list.active {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    margin-top: 30px;
    margin-left: 10px;
    width: 100%;
    padding: 20px;
    padding-bottom: 50px;
}

/* Voeg deze CSS-regel toe om het hamburger-icoon weer te geven op kleinere schermen */
@media (max-width: 768px) {
    .menu-icon {
        display: block; /* Toon het icoon op kleinere schermen */
    }

    .nav-list {
        display: none; /* Verberg de lijst met navigatie-items standaard op kleinere schermen */
    }

    

}




/* footer */

/* Geef de footer een achtergrondkleur en plaats deze onderaan de pagina */
/* Voeg een border-radius toe aan de footer en de footer-items om de randen rond te maken */
/* Voeg een border-radius toe aan de footer en de footer-items om de randen rond te maken */
footer {
    background-color: #cf0008;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-radius: 10px; /* Voeg een border-radius toe om de randen rond te maken */
}

.footer-container {
    display: flex;
    flex-wrap: wrap; /* Laat items naar de volgende regel gaan als dat nodig is */
    justify-content: center; /* Centreer items horizontaal */
    align-items: center; /* Centreer items verticaal */
    width: 50%;
    margin: 0 auto; /* Centreer de container op de pagina */
}

.footer-item {
    font-family: Verdana, Geneva, Tahoma, sans-serif;;
    font-size: 15px;
    text-align: center;
    border-radius: 10px; /* Voeg een border-radius toe om de randen rond te maken */
    padding: 10px; /* Voeg wat ruimte rond elk item toe */
    margin: 20px; /* Voeg wat ruimte tussen de items toe */
}

/* Voeg wat extra ruimte toe tussen de 2 kleine pictogrammen */
.footer-item.small-icon {
    margin: 15px 5px; /* Voeg wat ruimte toe tussen de kleine pictogrammen (verticaal en horizontaal) */
}

/* Stijl voor de iconen (pas indien nodig grootte aan) */
.footer-item img {
    width: 50px; /* Pas de breedte van de iconen aan zoals nodig */
    height: auto; /* Behoud de juiste hoogteverhoudingen */
}

/* Stijl voor de woorden */
.footer-item p {
    margin-top: 5px;
    /* Voeg wat ruimte toe tussen het pictogram en het woord */
}
.footer-item a {
    margin-top: 5px;
    text-decoration:underline;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;;
    font-size: 15px;
}

/* Voeg deze CSS toe aan je bestaande stylesheet */

/* Verberg het informatiepunt standaard */
.fb-img
{
    margin-right: 0;
    width: 20px;
    height: 20px;
}

.info-popup {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Laat het informatiepunt zien bij hover op het container-element */
.fb-container:hover .info-popup {
    display: block;
}





/* over ons */

.overons_h1 {
    font-size: 32px;
    font-family: 'Major Mono Display', monospace;
    text-align: center; 
    margin-bottom: 20px;
    margin-top: 40px;
}

.overons_h2 {
    margin-top: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
}


.overons_main {
    margin: auto;
    max-width: 70%;
    margin-bottom: 80px;
    padding: 20px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: smaller;
}

.overons_main a {
    text-decoration:underline;
    color: #cf0008;
}

@media (max-width: 768px) {
    
    .overons_main {
        margin: auto;
        max-width: 90%;
        margin-bottom: 80px;
        padding: 20px;
        font-family:Verdana, Geneva, Tahoma, sans-serif;
        font-size: smaller;
    }
    

}



/* afdelingen */

.afdelingen_h1 {
    font-size: 32px;
    font-family: 'Major Mono Display', monospace;
    text-align: center; 
    margin-bottom: 50px;
    margin-top: 40px;
}

.afdelingen_main {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Kolomstijl */
.afdelingen_column {
    flex: 1;
    padding: 20px;
}

/* Stijl voor kopjes van groepen */
.afdelingen_h2 {
    margin-top: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
}

/* Stijl voor individuele groepen */
.afdelingen_group {
    margin-bottom: 20px;
    text-align: center;
}

/* Stijl voor groepsafbeeldingen */
.afdelingen_group img {
    max-width: 100%;
    border-radius: 10px;
    display: block;
    margin: 0 auto; 
}

/* Stijl voor groepsnamen */
.afdelingen_group h3 {
    margin-top: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
}

/* Stijl voor tekst van groepen */
.afdelingen_group p {
    font-size: smaller;
    margin-bottom: 10px;
}

.speelclubimg
{
    height: 50%;
    width: 50%;
}

@media (max-width: 768px) {
    
    .speelclubimg
{
    height: 100%;
    width: 100%;
}

}




/* collapse */

.collapsible {
    position: relative;
    padding-bottom: 1.5em;
    cursor: pointer;
  }
  
  .collapsible .content {
    display: none;
  }
  
  .collapsible.open .content {
    display: block;
  }
  
  .collapsible .toggler {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    text-align: center;
  }
  
  .collapsible .arrow::after {
    content: "\25bc";
    display: inline-block;
    transition: transform 0.3s;
  }
  
  .collapsible.open .arrow::after {
    transform: rotate(180deg);
  }
  


  /* contact */

  .contact_main
  {
    font-size: 16px;
  }

  .contact_h1
  {
    font-size: 32px;
    font-family: 'Major Mono Display', monospace;
    text-align: center; 
    margin-bottom: 50px;
    margin-top: 40px;
  }

  
  .contact_div1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
    max-width: 100%;
}

.contact_div2 {
    text-align: center;
    margin: 0 20px;
}

.contact_div2 img {
    max-width: 100px;
}

.contact_div2 h2 {
    margin: 10px 0;
}

.contact_div2 p {
    margin: 5px 0;
}

.map-container {
    text-align: center;
    width: 80%;
    margin: auto; /* Centreren van de kaart */
    min-height: 300px; 
    margin-bottom: 100px;
    margin-top: 100px;
}

#map {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    
    .map-container {
        text-align: center;
        width: 90%;
        margin: auto; /* Centreren van de kaart */
        min-height: 300px; 
        margin-bottom: 100px;
        margin-top: 100px;
    }

}




/* inschrijven */

.inschrijven_h1
{
    font-size: 32px;
    font-family: 'Major Mono Display', monospace;
    text-align: center; 
    margin-top: 40px;
}


.inschrijven_main {
    max-width: 70%;
    margin: 0 auto;
    padding: 20px;
}

.registration-section {
    padding: 20px;
    margin-bottom: 20px;
}

.registration-section h2 {
    margin-top: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
}

.registration-section p {
    font-size: smaller;
    margin-bottom: 10px;
}

.registration-section a {
    color: #cf0008;
    text-decoration: none;
    font-size: smaller;
    margin-bottom: 10px;
}

.registration-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    
    .inschrijven_main {
        max-width: 90%;
        margin: 0 auto;
        padding: 20px;
    }
    

}





/* leiding */

/* Leiding */

.leiding_h1
{
    font-size: 32px;
    font-family: 'Major Mono Display', monospace;
    text-align: center; 
    margin-top: 40px;
}

.leaders-container {
    display: flex;
    flex-wrap:wrap;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    max-width: 100%;
}

.leaders-container > .groep {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.groep
{
    flex: 1;
    border: 3px solid #ccc; /* Voeg een rand toe voor visuele scheiding */
    border-radius: 10px;
    width: 80%;
    max-width: 100%;
    margin: auto;
    margin-top: 40px;
}

.name
{
    font-size: 18px;
}
.group
{
    font-style: italic;
    font-size: smaller;
}
.email
{
    font-size: small;
}
.phone{

    font-size: small;
}
#pipo
{
    border-color: purple;
}
#speelclub
{
    border-color: yellow;
}
#rakwi
{
    border-color: green;
}
#tito
{
    border-color: red;
}
#tipies
{
    border-left: 3px solid red; /* Linkerhelft van de border is blauw */
    border-top: 3px solid red;
    border-right: 3px solid blue; /* Rechterhelft van de border is oranje */
    border-bottom: 3px solid blue;
}
#kerels
{
    border-color: blue;
}
#tipa {
    border-left: 3px solid blue; /* Linkerhelft van de border is blauw */
    border-top: 3px solid blue;
    border-right: 3px solid orange; /* Rechterhelft van de border is oranje */
    border-bottom: 3px solid orange;
}


#aspi
{
    border-color: orange;
}

.leader {
    max-width: 20%; /* Pas de maximale breedte van de kaders aan naar wens */
    margin: 10px;
    padding: 10px;
    margin: auto;
}

/* .name, .group, .email, .phone {
    font-family: 'Major Mono Display', monospace;
} */

/* Zorg ervoor dat de kaders er mooi uitzien met voldoende ruimte tussen hen */
@media (max-width: 768px) {
    .leader {
        max-width: 100%; /* Voor kleinere schermen, laat kaders 100% breed zijn */
    }
    .leaders-container > .groep {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact_div1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 50px;
        max-width: 100%;
    }
    .inschrijven_main {
        max-width: 90%;
        margin: 0 auto;
        padding: 20px;
    }
}

  



/* homepage */

.home_main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Hierdoor worden de elementen onder elkaar weergegeven bij een klein scherm */
    justify-content: space-between; 
}

.home_container {
    flex: 1; /* Hierdoor neemt de home_container de beschikbare ruimte in beslag */
    max-width: 100%; /* Je kunt de maximale breedte aanpassen */
}

.home_centered img {
    width: 15%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.home_content {
    max-width: 80%;
    margin: auto;
    padding-left: 10%;
    padding-right: 10%;
}

.home_section {
    margin-bottom: 50px;
}

.home_section h2 {
    margin-top: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
}

.home_section p {
    font-size: smaller;
    margin-bottom: 10px;
}

.home_event {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    margin-top: 20px;
    max-width: 100%;
}

.home_section a {
    color: #cf0008;
}

.fb-page {
    margin-right: 20px; /* Plaats de fb-page helemaal aan de rechterkant van het scherm */
    margin-top: 20px; /* Voeg wat ruimte toe aan de bovenkant van de fb-page */
}

/* Zorg ervoor dat de fb-page niet de hoogte van de home_container overschrijdt */
.fb-page iframe {
    max-height: 70vh; /* Beperk de hoogte tot 70% van de schermhoogte */
}

/* Media-query om de fb-page onder de home_container te verplaatsen bij een kleiner scherm */
@media (max-width: 1100px) {
    .fb-page {
        width: 100%;
        margin: auto;
        text-align: center;
    }
    .home_content {
        max-width: 95%;
        margin: auto;
        padding-left: 10%;
        padding-right: 8%;
    }
    .home_centered img {
        width: 35%;
        height: auto;
        display: block;
        margin: 20px auto;
    }
}



/* Voeg deze CSS-regels toe om het dropdownmenu te stijlen */
.nav-item.dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff; /* Achtergrondkleur van het dropdownmenu */
    min-width: 160px; /* Breedte van het dropdownmenu */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Schaduw voor het dropdownmenu */
    z-index: 1;
  }
  
  /* Stijl voor de links binnen het dropdownmenu */
  .dropdown-content a {
    color: #cf0008; /* Tekstkleur */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Verander de linkkleur bij hover in het dropdownmenu */
  .dropdown-content a:hover {
    background-color: #f2f2f2; /* Achtergrondkleur bij hover */
  }
  
  /* Toon het dropdownmenu wanneer je over 'informatief' gaat */
  .nav-item.dropdown:hover .dropdown-content {
    display: block;
  }




  /* VB */

  .vb_main
  {
        margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 80px;
        padding: 20px;
        font-family:Verdana, Geneva, Tahoma, sans-serif;
        font-size: smaller;
  }

  .content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 50px auto;
}


  /* alcohol */

  .alcohol_main
  {
    margin-left: 15%;
        margin-right: 15%;
        margin-bottom: 80px;
        padding: 20px;
        font-family:Verdana, Geneva, Tahoma, sans-serif;
        font-size: smaller;
  }

  @media (max-width: 768px) {
    .contact_h1 {
        text-align: center; /* Plaats de tekst in het midden van de pagina */
        font-size: 24px; /* Pas de lettergrootte aan voor kleinere schermen */
    }

    .vb_main
    {
          margin:auto;
          max-width:90%;
          margin-bottom: 80px;
          padding: 20px;
          font-family:Verdana, Geneva, Tahoma, sans-serif;
          font-size: smaller;
    }
}
  


  /* kalender */

  /* Stijl voor de hele kalendercontainer */
  .main {
    display: flex;
    justify-content: center; /* Hiermee centreer je de inhoud horizontaal in de viewport */
    align-items: center; /* Hiermee centreer je de inhoud verticaal in de viewport */
    height: auto; /* Hiermee vul je de volledige viewport in hoogte */
    margin: 0; /* Verwijder de standaardmarges van de body */
  }
  
  .kalender_main {
    width: 70%; /* Stel de gewenste breedte in */
    margin-top: auto; /* Centreer de inhoud van de main tag */
    margin-bottom: auto;
  }
  
  .styled-calendar-container {
    width: 100%;
    border: none;
    overflow: hidden;
    margin-bottom: 50px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .kalender_main {
        width: 94%; /* Stel de gewenste breedte in */
        margin-top: auto; /* Centreer de inhoud van de main tag */
        margin-bottom: auto;
      }
}

  
/* geschiedenis */

.geschiedenis_main
{
    margin-left: 10%;
        margin-right: 10%;
        margin-bottom: 80px;
        padding: 20px;
        font-family:Verdana, Geneva, Tahoma, sans-serif;
        font-size: smaller;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact_h1 {
        text-align: center; /* Plaats de tekst in het midden van de pagina */
        font-size: 24px; /* Pas de lettergrootte aan voor kleinere schermen */
    }

    .geschiedenis_main
    {
          margin:auto;
          max-width:90%;
          margin-bottom: 80px;
          padding: 20px;
          font-family:Verdana, Geneva, Tahoma, sans-serif;
          font-size: smaller;
    }
}


  /* 90-jaar */

  .feest_main {
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 80px;
    padding: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: smaller;
    position: relative; /* Maakt het relatief aan de ouder (main) */
}

.feest_h2
{
    font-size: 28px;
    font-family: 'Major Mono Display', monospace;
    text-align: center; 
    margin-bottom: 20px;
    margin-top: 0px;
}

/* Nieuwe stijlen voor de sponsors */
/* Nieuwe stijlen voor de sponsors */
.sponsors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.sponsor {
    width: 200px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 10px; /* Maak de randen af */
    padding: 10px; /* Voeg wat ruimte toe binnen de sponsordiv */
}

.sponsor img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    margin-top: 30px;
}

.sponsor h3 {
    font-size: 12px;
    text-decoration: underline;
    color: black;
}

.sponsor p {
    font-size: 12px;
}

/* Nieuwe stijlen voor de extra-sponsors */
.extra-sponsors {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.extra-sponsors .sponsor {
    width: calc(20% - 20px); /* Verdeel de ruimte over vijf kolommen */
    text-align: center;
    min-width: 175px;
}

.extra-sponsors .sponsor img {
    width: 60%;
    height: auto;
}



/* countdown */

#countdown {
    width: 500px;
    height: 112px;
    text-align: center;
    background: #222;
    background-image: -webkit-linear-gradient(top, white, white, white, white); 
    margin: auto;
    padding: 24px 0;
}


/* Andere CSS-stijlen blijven hetzelfde */

#countdown #tiles{
	position: relative;
	z-index: 1;
}

#countdown #tiles > span{
	width: 92px;
	max-width: 92px;
	font: bold 48px 'Droid Sans', Arial, sans-serif;
	text-align: center;
	color: #111;
	background-color: #ddd;
	background-image: -webkit-linear-gradient(top, rgb(225, 222, 222), #fff); 
	border-top: 1px solid #fff;
	border-radius: 3px;
	box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.7);
	margin: 0 7px;
	padding: 18px 0;
	display: inline-block;
	position: relative;
}

#countdown #tiles > span:before{
	content:"";
	width: 100%;
	height: 13px;
	background: #111;
	display: block;
	padding: 0 3px;
	position: absolute;
	top: 41%; left: -3px;
	z-index: -1;
}

#countdown #tiles > span:after{
	content:"";
	width: 100%;
	height: 1px;
	background: #eee;
	border-top: 1px solid #000;
	display: block;
	position: absolute;
	top: 48%; left: 0;
}

#countdown .labels{
	width: 100%;
	height: 25px;
	text-align: center;
	position: absolute;
	bottom: 8px;
}

#countdown .labels li{
    width: 102px;
    font: bold 15px 'Droid Sans', Arial, sans-serif;
    color: #cf0008; /* Accentkleur toegevoegd */
    text-shadow: 1px 1px 0px #000;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
}

