/* Verhalen-pagina aangepaste stijl */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #e9ecef;
  border: 1px solid #ccc;
  margin: 5px;
}

.tab-button.active {
  background-color: #0d6efd;
  color: white;
}

.verhaal-container {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.verhaal-container.active {
  display: flex;
}

.foto-paneel {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.foto-paneel img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

.foto-paneel h3 {
  margin-top: 10px;
  color: #333;
}

.brieven-paneel {
  flex: 2;
  min-width: 300px;
  position: relative;
}

.carousel {
  position: relative;
  overflow: hidden;
  height: 500px;
  background: #eee;
  border-radius: 8px;
}

.brief {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.brief img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brief.active {
  display: block;
}

.carousel-controls {
  margin-top: 10px;
  text-align: center;
}

.carousel-controls button {
  padding: 10px 20px;
  margin: 0 10px;
  background-color: #0d6efd;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.carousel-controls button:hover {
  background-color: #0b5ed7;
}

/* Header verkleinen */
#header.header {
  padding: 10px 0;
  min-height: 50px;
}

#header .sitename {
  font-size: 1.2rem;
  margin: 0;
}

#header .navmenu ul li a {
  font-size: 0.9rem;
  padding: 5px 10px;
}

/* Doneerknop stijl in Tanzaniaanse kleuren */
.btn-tanzania {
  background: linear-gradient(45deg, #17B636, #FFD400, #00A0E3, #000000);
  color: white;
  border: none;
}

.btn-tanzania:hover {
  opacity: 0.9;
}

/* QR-code opmaak */
.qr-code {
  display: block;
  margin: 20px auto;         /* meer witruimte */
  padding: 10px;             /* extra witte rand */
  background-color: white;   /* extra zekerheid */
  width: 120px;              /* iets groter */
  height: 120px;             /* vierkant */
}
.card .qr-code {
  transform: none !important;
}

