/*
Theme Name:     Gerts Thema
Author:         Gert
Description:    Een eigen, lichtgewicht WordPress-thema
Version:        1.0
*/

/* =====================
   1. Basisinstellingen
   ===================== */
body {
  margin: 0;
  padding: 0 2em;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.1em;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #222;
}
main {
  padding: 2em 1em;
  max-width: 850px;
  margin: 0 auto;
}
p {
  margin-bottom: 1.5em;
}

h1 {
  font-size: 3.0rem;
  font-weight: bold;
  margin-bottom: 1.2em;
}

h2, h3, h4 {
  margin-top: 2em;
  margin-bottom: 1em;
}
img {
  margin-bottom: 1.5em;
  display: block;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.site-header {
  background-color: #f8f8f8;
}

.site-footer {
  background-color: #f8f8f8;
  padding: 2em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  color: #555;
}

.footer-left,
.footer-right {
  margin: 0;
}

.footer-right a {
  text-decoration: none;
  color: #0066cc;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* =====================
   2. Header + Logo + Zoekbalk
   ===================== */
.header-balk {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
}

.logo img {
  max-height: 150px;
  display: block;
}

.alle-menu-blokken {
  display: flex;
  gap: 2em;
}

.menu-blok ul {
  display: flex;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zoekveld {
  min-width: 200px;
}

.header-titel {
  text-align: center;
  margin-top: 1em;
}

.site-title {
  font-size: 2.5em; /* eerder 2em */
  font-weight: 700;
  margin: 0;
}

.site-slogan {
  font-size: 1.2em;     /* eerder 1em */
  color: #444;          /* eerder #666 */
  font-style: italic;
  margin-top: 0.3em;
}

/* =====================
   3. Menu’s (7 blokken)
   ===================== */
.alle-menu-blokken {
  display: flex;
  justify-content: center;
  gap: 2em;
}}

.menu-blok {
  position: relative;
}

.menu-blok a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* Menu-labels niet klikbaar */
.menu-blok a[href="#"] {
  pointer-events: none;
  cursor: default;
  color: #222;
}

.menu-blok ul {
  display: flex;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-blok li {
  position: relative;
}

.menu-blok li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 0.5em 0;
  list-style: none;
  min-width: 180px;
}
.menu-blok li:hover > ul {
  display: block;
}

.menu-blok li ul li {
  padding: 0.5em 1em;
  white-space: nowrap;
}


/* Stijl voor hamburgerknop */
.menu-toggle {
  display: block;
  font-size: 1.8em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
  align-self: flex-start;
  margin-bottom: 0.5em; /* of 0 als je het strak wilt */
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}
.menu-overlay.active {
  display: block;
}

/* =====================
   Ankermenu
   ===================== */
.anker-menu {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}
.anker-menu ul {
  list-style: none;
  display: flex;
  gap: 2em;
  padding: 1em 0;
  border-bottom: 1px solid #ccc;
}
.anker-menu li a {
  text-decoration: none;
  color: #0066cc;
  font-weight: 500;
}
.anker-menu li a:hover {
  text-decoration: underline;
}


/* =====================
   4. De rest
   ===================== */
input[type="search"] {
  font-size: 1.1em;
  padding: 0.5em 1em;
}

html {
  scroll-behavior: smooth;
}

.lb-prev, .lb-next, .lb-close {
  position: fixed !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  pointer-events: auto;
  opacity: 1 !important;
}

.lb-close {
  top: 40px;
  right: 40px;
  transform: none;
}

.lb-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


.gallery-thumb img {
  width: 100%;
  aspect-ratio: 3/4; /* bijvoorbeeld voor portretten */
  object-fit: cover;
  border-radius: 6px;
}

.puppy-banner-wrapper {
  display: flex;
  justify-content: center;
}


.puppy-inline-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffeaa7;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: 600;
  color: #222;
}

.puppy-inline-button {
  background-color: #444;
  color: #fff;
  padding: 6px 10px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9em;
}

.puppy-inline-button:hover {
  background-color: #555;
}


@media (max-width: 1024px) {
  .header-balk {
    flex-wrap: wrap;
    gap: 1em;
  }

  .logo img {
    max-height: 100px;
  }

  .menu-blok ul {
    gap: 0.5em;
  }

  .zoekveld {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-zoek-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 1em;
  }

  .alle-menu-blokken {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1em;
    margin-top: 1em;
  }

  .alle-menu-blokken.show {
    display: flex;
  }

  .menu-blok ul {
    flex-direction: column;
    gap: 0.5em;
  }
}




/* =====================
   Stijlvolle pagina
   ===================== */
.stijlvolle-pagina {
  max-width: 960px;
  margin: 0 auto;
  padding: 2em 1em;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1em;
}
.informatie-blok {
  display: flex;
  gap: 2em;
  margin-bottom: 4em;
  align-items: flex-start;
}

.kolom img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 1em;
}
.kolom.links {
  flex: 1;
}

.kolom.rechts {
  flex: 2;
}

.home main.container article h1 {
  display: none;
}

/* =====================
   Contactformulier
   ===================== */
.contactgegevens {
  list-style: none;
  padding: 0;
}

.contactgegevens li {
  margin-bottom: 0.5em;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1em;
  color: #333;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form .form-groep {
  margin-bottom: 1.5em;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4em;
  font-weight: 600;
  font-size: 1em;
  color: #222;
}}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #66afe9;
  outline: none;
  box-shadow: 0 0 3px rgba(102, 175, 233, 0.6);
}

.contact-form button[type="submit"] {
  background-color: #0066cc;
  color: #fff;
  font-size: 1.1em;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background-color: #004a99;
}

.bevestiging {
  background-color: #e6f7e6;
  border: 1px solid #b2d8b2;
  padding: 1em;
  margin-bottom: 1em;
  color: #2d662d;
  border-radius: 4px;
}

