/*body*/
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f4f4f4;
  color: #2e2e2e;
  margin: 0;
  padding: 0;
}

/*header*/
header {
  background-color: #1a2b4c;
  color: white;
  padding: 0px; 
  margin: 0px 0;
  text-align: left;
  position: relative;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 2.2em;
  padding: 25px 30px 30px 60px;
}

/*navigatie*/
nav {
  background-color: #1a2b4c;
  padding:  30px;
  text-align: center;
}

nav a {
  color: #f4f4f4;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  margin: 0 15px;
  padding: 10px 15px;
}

nav a:hover {
  color: #c77c3c;
}

nav a.active {
  color: #c77c3c; 
}

main {
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}



/*frontpage-afbeelding*/
.afbeelding {
  overflow: hidden;
  margin-bottom: 2em;
}

.afbeelding img {
  width: 100%;
  height: 1000px;
  object-fit: cover;
  display: block;
}


/*inhoudsecties*/
.intro, .content {
  margin-bottom: 2em;
}

.intro h2, .content h2 {
  color: #1a2b4c;
}

.intro p, .content p {
  line-height: 1.7;
  font-size: 1.1em;
}


/*foto's*/
.galerij {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 160px auto 3em auto;
  padding: 0 1em;
}

.foto-kaart {
  background-color: #f0ede9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.foto-kaart:hover {
  transform: scale(1.02);
}

.foto-kaart img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.foto-kaart p {
  padding: 1em;
  font-size: 0.95em;
  line-height: 1.4;
  color: #2d2d2d;
}

/*reacties*/
.reactie {
  background-color: #eae7dc;
  padding: 1em;
  border-left: 5px solid #8b2e2e;
  margin-bottom: 1.5em;
  border-radius: 4px;
  position: relative;
}

form {
  background-color: #f0ede9;
  padding: 1.5em;
  border: 1px solid #ccc;
  margin-bottom: 2em;
  border-radius: 6px;

}

z {
  color: white;
  background-color: #1a2b4c;
  width: 100%;
  margin: 0;
  padding: 10px 1em;
  box-sizing: border-box;
  display: block;
}

form input, form textarea {
  width: 100%;
  margin-bottom: 1em;
  padding: 0.6em;
  border: 1px solid #bbb;
  font-size: 1em;
  border-radius: 4px;
  position: relative;
}

form input[type="submit"] {
  background-color: #8b2e2e;
  color: #f0ede9;
  border: none;
  cursor: pointer;
  padding: 0.7em 1.5em;
  font-weight: bold;
  border-radius: 4px;
  position: relative;
}

form input[type="submit"]:hover {
  position: relative;
  background-color: #6d2323;
}


/*fotopagina*/
.foto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  margin-top: 2em;
}

.foto img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/*footer*/
footer {
  background-color: #1a2b4c;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 3em;
}

/*login*/
.login-form {
  max-width: 350px;
  margin: 60px auto 30px auto;
  padding: 2em 2em 1.5em 2em;
  background: #f0ede9;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.login-form h2 {
  margin-top: 0;
  color: #1a2b4c;
  text-align: center;
}

.login-form label {
  font-weight: bold;
  color: #1a2b4c;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  padding: 0.7em;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 1em;
}

.login-form input[type="submit"] {
  background-color: #8b2e2e;
  color: #fff;
  border: none;
  padding: 0.8em;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.login-form input:hover {
  background-color: #6d2323;
}

.foutmelding {
  color: #b71c1c;
  background: #ffeaea;
  padding: 0.5em 1em;
  border-radius: 4px;
  margin-bottom: 1em;
  text-align: center;
}  

.logout-knop {
  background-color: #8b2e2e;
  color: #fff ;
  border: none;
  padding: 0.8em 1.5em;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.logout-knop:hover {
  background-color: #6d2323;
}

.info-blok {
  max-width: 1000px;
  margin: 2em auto;
  padding: 1em;
}

.tekst-met-foto {
  display: flex;
  gap: 1.5em;
  margin-bottom: 3em;
  flex-wrap: wrap;
}

.tekst-met-foto img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.tekst-met-foto > div {
  flex: 1;
  min-width: 250px;
}

.foto-rechts {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .tekst-met-foto {
    flex-direction: column;
  }

  .foto-rechts {
    flex-direction: column;
  }
}
.vergrootbaar {
  cursor: zoom-in;
  transition: transform 0.2s;
}

.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.overlay img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 20px #fff;
  cursor: zoom-out;
}
.klein {
  width: 200px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.vergroot {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  text-align: center;
  padding-top: 5%;
  z-index: 9999;
}

.vergroot img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.vergroot:target {
  display: block;
}


.klein {
  width: 200px;
  cursor: pointer;
}

.vergroot {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0


.klein img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  cursor: zoom-in;
}

.vergroot {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  text-align: center;
  padding-top: 5%;
  z-index: 9999;
}

.vergroot img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  cursor: zoom-out;
  box-shadow: 0 0 20px #fff;
}

.vergroot:target {
  display: block;
}

.a {
	text-decoration: none
	}