/* =========================================
   ROOT VARIABELEN — KLEUREN, SPACING, UI
========================================= */

:root {
  --fb-olive: #6b7b4b;
  --fb-olive-dark: #4a3a2a;
  --fb-olive-light: #f4f6ef;
  --fb-beige: #f7f2ea;
  --fb-white: #ffffff;
  --fb-black: #1a1a1a;
  --fb-grey: #333;

  --fb-radius: 14px;
  --fb-radius-small: 10px;
  --fb-shadow-soft: 0 4px 14px rgba(0,0,0,0.06);
  --fb-shadow-medium: 0 6px 18px rgba(0,0,0,0.08);

  --fb-max-width: 1200px;

  --space-s: 0.75rem;
  --space-m: 1.25rem;
  --space-l: 2rem;
  --space-xl: 3rem;
}


html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background: var(--fb-beige);
    color: var(--fb-black);
    line-height: 1.55;
    font-size: 18px;
}
.fb-header {
    width: 100%;
    background: var(--fb-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

.fb-header-inner {
    max-width: var(--fb-max-width);
    margin: 0 auto;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fb-logo img {
    height: 52px;
    width: auto;
    display: block;
}


/* =========================================
   GENETICA & GEZONDHEID — PREMIUM LAYOUT
========================================= */

.fb-info-box {
    margin-top: var(--space-m);
    padding: 1rem 1.2rem;
    background: var(--fb-olive-light);
    border-radius: var(--fb-radius-small);
}

.fb-info-box h4 {
    margin-bottom: .8rem;
    color: var(--fb-olive);
    font-weight: 600;
}

.fb-info-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: .4rem 1rem;
    margin-bottom: .4rem;
}

.fb-info-label {
    font-weight: 600;
    color: var(--fb-olive);
}

.fb-info-value {
    font-weight: 500;
    line-height: 1.4;
}

/* =========================================
   KAART HARMONISATIE — FOTO, BADGES, TEKST
========================================= */

.fb-card {
    border-radius: var(--fb-radius);
    overflow: hidden;
    background: var(--fb-white);
    box-shadow: var(--fb-shadow-soft);
    transition: .25s ease;
}

.fb-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fb-shadow-medium);
}

.fb-photo-wrapper {
    position: relative;
}

.fb-card-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.fb-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 58px;
    opacity: .92;
}

.fb-card-body {
    padding: 1.2rem 1.4rem;
}

.fb-card-title {
    margin: 0 0 .4rem 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fb-black);
}

.fb-parent-kennel {
    margin: .4rem 0 .8rem 0;
    font-size: .95rem;
}

.fb-label {
    font-weight: 600;
    color: var(--fb-olive);
}

.fb-badge-list {
    margin: .6rem 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.fb-badge-item {
    background: var(--fb-olive-light);
    padding: .25rem .55rem;
    border-radius: var(--fb-radius-small);
    font-size: .85rem;
    font-weight: 600;
    color: var(--fb-olive);
}
/* Desktop: bredere labelkolom voor betere uitlijning */
@media (min-width: 900px) {
    .fb-info-row {
        grid-template-columns: 220px 1fr;
    }
}

/* Desktop menu */
.fb-nav {
    display: flex;
}

.fb-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.fb-menu li a {
    text-decoration: none;
    color: var(--fb-black);
    font-weight: 600;
}

/* Hamburger */
.fb-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.fb-hamburger span {
    width: 26px;
    height: 3px;
    background: var(--fb-black);
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Hamburger animatie */
.fb-hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.fb-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.fb-hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobiel menu */
@media (max-width: 900px) {

    .fb-hamburger {
        display: flex;
    }

    .fb-nav {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .fb-menu {
        display: none;
        flex-direction: column;
        gap: 18px;
        padding: 20px;
        background: var(--fb-white);
        width: 100%;
        box-shadow: var(--fb-shadow-medium);
        border-top: 2px solid var(--fb-olive-dark);
    }

    .fb-menu.open {
        display: flex;
    }
}
.fb-login-dropdown {
    position: absolute;
    right: 20px;
    top: 70px;
    background: var(--fb-white);
    padding: 20px;
    width: 260px;
    border-radius: var(--fb-radius-medium);
    box-shadow: var(--fb-shadow-medium);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fb-login-dropdown[hidden] {
    display: none;
}

.fb-login-dropdown input[type="text"],
.fb-login-dropdown input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: var(--fb-radius-small);
    border: 1px solid #ccc;
}

.fb-login-dropdown input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: var(--fb-green);
    color: white;
    border: none;
    border-radius: var(--fb-radius-small);
    cursor: pointer;
}

.fb-login-dropdown .login-register {
    text-align: center;
    font-size: 14px;
    color: var(--fb-green);
}
.fb-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.fb-banner img {
    width: 80%;
    max-width: 1200px;
    height: auto;
    display: block;
}
.fb-section {
    padding: 70px 0;
}

.fb-section-light {
    background: var(--fb-white);
}

.fb-section-beige {
    background: var(--fb-beige);
}

.fb-section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--fb-olive-dark);
    text-align: center;
    margin-bottom: 40px;
}
.fb-container {
    width: 100%;
    max-width: var(--fb-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.fb-card-grid,
.fb-grid {
    display: grid;
    gap: 32px;
    width: 100%;
}

.fb-grid-4,
.fb-card-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .fb-grid-4,
    .fb-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .fb-grid-4,
    .fb-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fb-grid-4,
    .fb-card-grid {
        grid-template-columns: 1fr;
    }
}
.fb-card {
    background: var(--fb-white);
    border-radius: var(--fb-radius-medium);
    overflow: hidden;
    box-shadow: var(--fb-shadow-soft);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.fb-card-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #e8e8e8;
}

.fb-card-body {
    padding: 20px;
    text-align: center;
}

.fb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.fb-button,
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--fb-radius-small);
    background: var(--fb-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s ease;
}

.fb-button:hover,
.btn-primary:hover {
    background: var(--fb-green-dark);
}
footer {
    background: #e4e8d5;
    border-top: 1px solid #cfd3c2;
    padding: 20px;
    color: #55663F;
    text-align: center;
    font-size: 0.95rem;
}

footer a {
    color: #55663F;
    text-decoration: none;
    transition: color 0.25s ease;
}

footer a:hover {
    color: #6A7F4E;
}
/* Submenu styling */
.fb-menu li ul {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    background: #e4e8d5; /* lichte olive */
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    border-radius: var(--fb-radius-small);
    box-shadow: var(--fb-shadow-medium);
    display: none;
    flex-direction: column;
    gap: 0;
}

.fb-menu li:hover > ul {
    display: flex;
}

.fb-menu li ul li a {
    padding: 10px 16px;
    color: var(--fb-black);
    display: block;
    text-decoration: none;
}

.fb-menu li ul li a:hover {
    background: #d9ddc8; /* iets donkerder olive voor hover */
}
/* Vast submenu onder de header */
.fb-submenu {
    width: 100%;
    background: #e4e8d5; /* lichte olive */
    border-top: 1px solid #cfd3c2;
    padding: 10px 0;
}

.fb-submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.fb-submenu li a {
    color: var(--fb-black);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--fb-radius-small);
}

.fb-submenu li a:hover {
    background: #d9ddc8; /* iets donkerder olive */
}

/* Mobiel: submenu onder elkaar */
@media (max-width: 900px) {
    .fb-submenu ul {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        align-items: flex-start;
    }

    .fb-submenu li a {
        display: block;
        width: 100%;
        padding: 12px 16px;
        background: #e4e8d5;
        border-radius: var(--fb-radius-small);
    }

    .fb-submenu li a:hover {
        background: #d9ddc8;
    }
}
/* Footer layout */
.fb-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--fb-max-width);
    margin: 0 auto;
    padding: 40px 20px;
}

.fb-footer-col h4 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--fb-olive-dark);
}

.fb-footer-col a {
    display: block;
    margin-bottom: 8px;
    color: #55663F;
    text-decoration: none;
    font-size: 0.95rem;
}

.fb-footer-col a:hover {
    color: #6A7F4E;
}

.fb-footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #55663F;
    border-top: 1px solid #cfd3c2;
}

/* Tablet */
@media (max-width: 900px) {
    .fb-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiel */
@media (max-width: 600px) {
    .fb-footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
}
/* Footer container */
.fb-footer {
    background: #e4e8d5;
    border-top: 1px solid #cfd3c2;
    padding: 40px 0 0;
    color: #55663F;
    font-size: 0.95rem;
}

/* Kolommen layout */
.fb-footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--fb-max-width);
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* Kolom titels */
.fb-footer-col h4 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--fb-olive-dark);
}

/* Lijsten */
.fb-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fb-footer-col ul li {
    margin-bottom: 8px;
}

/* Links */
.fb-footer-col a {
    color: #55663F;
    text-decoration: none;
    transition: color 0.25s ease;
}

.fb-footer-col a:hover {
    color: #6A7F4E;
}

/* Nieuwsbrief formulier */
.fb-newsletter label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.fb-newsletter input[type="email"] {
    width: 100%;
    padding: 10px;
    border-radius: var(--fb-radius-small);
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.fb-newsletter button {
    width: 100%;
    padding: 10px;
    background: var(--fb-green);
    color: white;
    border: none;
    border-radius: var(--fb-radius-small);
    cursor: pointer;
    font-weight: 600;
}

.fb-newsletter button:hover {
    background: var(--fb-green-dark);
}

.fb-newsletter-msg {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--fb-olive-dark);
}

/* Onderste balk */
.fb-footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #cfd3c2;
    font-size: 0.9rem;
}

.fb-footer-bottom .powered {
    margin-top: 6px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Tablet */
@media (max-width: 900px) {
    .fb-footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiel */
@media (max-width: 600px) {
    .fb-footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.fb-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 2rem;
  background: #f7f2ea; /* zacht beige */
  border-radius: 18px;
}

.fb-hero h1 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #4a3a2a;
  margin-bottom: 0.5rem;
}

.fb-hero .intro {
  font-size: 1.2rem;
  color: #6b7b4b;
  margin-bottom: 1rem;
}

.fb-hero p {
  color: #333;
  margin-bottom: 1.25rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.fb-button {
  background: #6b7b4b;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.fb-button-light {
  background: #fff;
  color: #6b7b4b;
  border: 1px solid #6b7b4b;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.fb-section-beige {
  background: #f4f6ef; /* olijfgroen tintje */
  padding: 2rem 1.5rem;
  border-radius: 18px;
  margin-top: 2rem;
}

.fb-section-beige h2 {
  font-size: 1.6rem;
  color: #6b7b4b;
  margin-bottom: 1rem;
}

.fb-section-beige p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.fb-section-beige em {
  color: #4a3a2a;
}

.fb-icon,
.fb-img-large {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border-radius: 12px;
}
@media (max-width: 800px) {
  .fb-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .fb-section-beige {
    padding: 1.5rem 1.25rem;
  }
}
.fb-section-beige {
  background: #f4f6ef; /* zacht olijfgroen tintje */
  padding: 3rem 2rem;
  border-radius: 18px;
  margin-top: 2.5rem;
}
.fb-section-beige h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #6b7b4b;
  margin-bottom: 1rem;
}

.fb-section-beige h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #4a3a2a;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.fb-section-beige h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  margin-top: 2rem;
  line-height: 1.5;
}
.fb-section-beige p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.fb-section-beige em {
  color: #4a3a2a;
  font-style: italic;
}
.fb-section-beige ul {
  margin: 1rem 0 1.5rem 1.2rem;
  padding: 0;
}

.fb-section-beige ul li {
  margin-bottom: 0.4rem;
  color: #333;
  line-height: 1.5;
}
.fb-icon,
.fb-icon-small,
.fb-img-large {
  display: block;
  margin: 0.5rem auto 1.5rem;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.fb-icon-small {
  max-width: 140px;
}

.fb-icon {
  max-width: 180px;
}

.fb-img-large {
  max-width: 420px;
}
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
@media (max-width: 800px) {
  .fb-section-beige {
    padding: 2rem 1.25rem;
  }

  .fb-section-beige h2 {
    font-size: 1.5rem;
  }

  .fb-section-beige h3 {
    font-size: 1.2rem;
  }
}
.fb-section-light {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 18px;
  margin-top: 2.5rem;
}
.fb-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
.fb-grid-2 h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #6b7b4b;
  margin-bottom: 1rem;
}

.fb-grid-2 blockquote {
  background: #f4f6ef;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid #6b7b4b;
  border-radius: 12px;
  margin: 1rem 0 1.5rem;
  color: #4a3a2a;
  line-height: 1.6;
}

.fb-grid-2 p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.65;
}
.fb-grid-2 ul {
  margin: 1rem 0 1.5rem 1.2rem;
  padding: 0;
}

.fb-grid-2 ul li {
  margin-bottom: 0.4rem;
  color: #333;
  line-height: 1.5;
}
.fb-grid-2 img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
@media (max-width: 900px) {
  .fb-grid-2 {
    grid-template-columns: 1fr;
  }

  .fb-grid-2 img {
    margin: 1.5rem auto;
  }
}
.fb-section-beige {
  background: #f4f6ef;
  padding: 3rem 2rem;
  border-radius: 18px;
  margin-top: 2.5rem;
}
.fb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}
.fb-info-block {
  background: #ffffff;
  padding: 1.8rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  text-align: center;
  line-height: 1.6;
}
.fb-info-block img {
  max-width: 140px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.fb-info-block p {
  color: #333;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .fb-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .fb-info-block {
    padding: 1.6rem 1.2rem;
  }
}
.fb-section-light {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 18px;
  margin-top: 2.5rem;
}
.fb-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}
.fb-info-block {
  background: #f7f2ea;
  padding: 1.8rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  line-height: 1.6;
}
.fb-info-block h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b7b4b;
  margin-bottom: 0.75rem;
}

.fb-info-block p,
.fb-info-block ol {
  color: #333;
  font-size: 1rem;
  margin: 0;
  line-height: 1.65;
}

.fb-info-block ol {
  padding-left: 1.2rem;
}
.oo-vragen {
  max-width: 800px;
  margin: 0 auto;
}
.oo-vragen details {
  background: #f4f6ef;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  cursor: pointer;
}
.oo-vragen summary {
  font-weight: 600;
  color: #4a3a2a;
  font-size: 1.05rem;
  list-style: none;
}

.oo-vragen summary::-webkit-details-marker {
  display: none;
}
.oo-vragen details p {
  margin-top: 0.8rem;
  color: #333;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .fb-grid-3 {
    grid-template-columns: 1fr;
  }

  .fb-info-block {
    padding: 1.6rem 1.2rem;
  }
}
footer {
  background: #f4f6ef; /* zachte olijfgroene tint */
  padding: 3rem 2rem 2rem;
  border-radius: 18px;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}
.footer-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #6b7b4b;
  margin-bottom: 0.75rem;
}
footer p,
footer a {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  color: #6b7b4b;
}
.footer-social {
  text-align: center;
  margin-top: 2rem;
}

.footer-social img {
  width: 32px;
  height: 32px;
  margin: 0 0.4rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-social img:hover {
  opacity: 1;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
header {
  background: #ffffff;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;

}
.fb-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fb-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.fb-menu {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.fb-menu a {
  text-decoration: none;
  font-size: 1rem;
  color: #4a3a2a;
  font-weight: 500;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}

.fb-menu a:hover {
  color: #6b7b4b;
}
.fb-menu a.active {
  color: #6b7b4b;
  border-bottom: 2px solid #6b7b4b;
  padding-bottom: 0.3rem;
}
.fb-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.fb-menu-toggle span {
  width: 26px;
  height: 3px;
  background: #4a3a2a;
  border-radius: 2px;
}
@media (max-width: 900px) {

  .fb-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem 0;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: none; /* wordt via JS zichtbaar */
  }

  .fb-menu.show {
    display: flex;
  }

  .fb-menu-toggle {
    display: flex;
  }
}
.fb-header {
  background: #e4e8d5;
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
.fb-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fb-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.fb-nav {
  display: flex;
  align-items: center;
}
.fb-menu {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fb-menu a {
  text-decoration: none;
  font-size: 1rem;
  color: #4a3a2a;
  font-weight: 500;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}

.fb-menu a:hover {
  color: #6b7b4b;
}
.login-button button {
  background: #6b7b4b;
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
}

.login-button button:hover {
  background: #55663c;
}
.fb-login-dropdown {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 1.5rem;
  width: 260px;
  position: absolute;
  right: 2rem;
  top: 80px;
  z-index: 1000;
}

.fb-login-dropdown form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.fb-login-dropdown input[type="text"],
.fb-login-dropdown input[type="password"] {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.fb-login-dropdown input[type="submit"] {
  background: #6b7b4b;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}

.login-register {
  display: block;
  margin-top: 1rem;
  text-align: center;
  color: #6b7b4b;
  text-decoration: none;
  font-weight: 500;
}
.fb-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.fb-hamburger span {
  width: 26px;
  height: 3px;
  background: #4a3a2a;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.fb-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.fb-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.fb-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 900px) {

  .fb-hamburger {
    display: flex;
  }

  .fb-menu {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: none;
  }

  .fb-menu.open {
    display: flex;
  }
}
/* -----------------------------------------------------------
   FAIRBREED® PREMIUM GRID & CARD SYSTEM
   ----------------------------------------------------------- */

/* Secties – zachte premium achtergrond */
.fb-section {
  padding: 4rem 0;
  background: #FAFAF7; /* warm zacht wit */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Universele grid */
.fb-grid {
  display: grid;
  gap: 2.25rem;
}
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 2.5rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
/* Kolomvarianten */
.fb-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fb-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fb-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* -----------------------------------------------------------
   KAARTEN – premium stijl
   ----------------------------------------------------------- */

.fb-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Hover – subtiel, premium */
.fb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
.card h2,
.card h3 {
    color: #3A4A2A; /* donker olijfgroen */
    font-weight: 600;
    margin-bottom: .75rem;
}

.card p,
.card li {
    color: #444;
    line-height: 1.55;
}

/* Kaarttitels */
.fb-card h3 {
  color: #3A4A2A; /* donker olijfgroen */
  font-weight: 600;
  margin-bottom: .75rem;
}
/* -----------------------------------------------------------
   INTRO CARDS (blok 2)
----------------------------------------------------------- */
.intro-cards .card {
    background: #ffffff;
}

/* -----------------------------------------------------------
   CERTIFICEERT ICON CARDS (blok 3)
----------------------------------------------------------- */
.icon-card {
    padding-top: 2.5rem;
}

/* -----------------------------------------------------------
   TIMELINE (blok 4)
----------------------------------------------------------- */
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.step {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: #DDE5D2;
    color: #3A4A2A;
    font-weight: 600;
    margin-right: .75rem;
}

/* -----------------------------------------------------------
   ZOEKMODULE (blok 5)
----------------------------------------------------------- */
.search-bar input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.15);
    background: #fff;
}

.filters .filter {
    background: #DDE5D2;
    color: #3A4A2A;
    border: none;
    padding: .75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

/* -----------------------------------------------------------
   CRITERIA GRID (blok 6)
----------------------------------------------------------- */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem 1.25rem;
    margin: 1.5rem 0 2rem;
}

.criteria-grid li {
    background: #ffffff;
    padding: .75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* -----------------------------------------------------------
   FAQ (blok 9)
----------------------------------------------------------- */
.faq details {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 1rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #3A4A2A;
}

.faq p {
    margin-top: .75rem;
    color: #444;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 960px) {
    .grid-2,
    .grid-3,
    .grid-4,
    .timeline-steps {
        grid-template-columns: 1fr;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }
}
/* Kaarttekst */
.fb-card p {
  color: #444;
  line-height: 1.55;
}

/* -----------------------------------------------------------
   STAPPEN – badges
   ----------------------------------------------------------- */

.fb-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: #DDE5D2; /* licht olijfgroen */
  color: #3A4A2A;
  font-weight: 600;
  margin-right: .75rem;
  font-size: 1rem;
}

/* Brede kaart (bijv. 5 vrijheden) */
.fb-wide {
  grid-column: span 2;
}

/* -----------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------- */

@media (max-width: 960px) {
  .fb-grid-2,
  .fb-grid-3,
  .fb-grid-4 {
    grid-template-columns: 1fr;
  }

  .fb-wide {
    grid-column: span 1;
  }
}
/* -----------------------------------------------------------
   FAIRBREED® TYPOGRAFIE — MATCHT FAIRBREED.NL
----------------------------------------------------------- */

/* Basis bodytekst */
body {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #444444; /* zelfde als fairbreed.nl */
}

/* Paragrafen en lijsten */
p, li {
    color: #444444;
}

/* Subtekst */
.subtitle,
.intro,
small,
.section p.subtitle {
    color: #666666;
}

/* Headings */
h1, h2, h3, h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #3A4A2A; /* donker olijfgroen */
    line-height: 1.25;
}

/* Hero-titel iets zwaarder voor premium uitstraling */
.hero-title h1 {
    font-weight: 700;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

/* Kaarten */
.card h2,
.card h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #3A4A2A;
}

/* Timeline stappen */
.step {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

/* FAQ */
.faq summary {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #3A4A2A;
}
/* ========================================= */
/* FAIRBREED — LINKBLOKKEN (3 KAARTEN)       */
/* ========================================= */

.linkblokken {
    padding: 3rem 0;
}

.fb-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.fb-card {
    background: #ffffff;
    padding: 2rem 1.8rem;
    border-radius: 14px;
    text-decoration: none;
    color: #1f2933;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: all 0.18s ease;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.fb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.08);
    background: #f8faf9;
}

.fb-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #d7e2d4; /* zachte olijfgroen tint */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #243b30;
}

.fb-card h3 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0;
    color: #243b30;
}

.fb-card p {
    font-family: "Lato", sans-serif;
    font-size: 0.98rem;
    margin: 0;
    color: #4b5563;
    line-height: 1.55;
}

/* Mobiel optimalisatie */
@media (max-width: 600px) {
    .fb-card {
        padding: 1.6rem 1.4rem;
    }

    .fb-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
    }

    .fb-card h3 {
        font-size: 1.05rem;
    }

    .fb-card p {
        font-size: 0.92rem;
    }
}
.fb-linkblocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
  margin: 2.5rem 0;
}

.fb-linkblock {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.75rem;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #1f2933;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.fb-linkblock:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  background-color: #f8faf9;
}

.fb-linkblock-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #d7e2d4; /* zachte olijfgroen-tint */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.fb-linkblock h3 {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
  color: #243b30; /* donker olijfgroen */
}

.fb-linkblock p {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: #4b5563;
}
.subtitle {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 1.45rem;
    line-height: 1.45;
    color: #243b30; /* diep olijfgroen */
    text-align: center;
    margin: 1.2rem 0 0.8rem;
    letter-spacing: 0.3px;

    /* zachte premium look */
    font-style: italic;
    opacity: 0.92;

    /* subtiele glow voor elegantie */
    text-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* Mobiel optimalisatie */
@media (max-width: 600px) {
    .subtitle {
        font-size: 1.25rem;
        line-height: 1.4;
    }
}
/* === FairBreed® Basiskleuren === */
:root {
    --fb-bg: #FAF8F4;
    --fb-green: #6A7F4F;
    --fb-text: #333333;
    --fb-light-border: #E6E2DA;
}

/* === Algemene achtergrond === */
body {
    background-color: var(--fb-bg);
    color: var(--fb-text);
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* === Headings === */
h1, h2, h3, h4 {
    color: var(--fb-green);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.6em;
}

/* === Cards / blokken === */
.card, .blok, .section {
    background: #FFFFFF;
    border: 1px solid var(--fb-light-border);
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-bottom: 32px;
}

/* === Buttons === */
button, .btn, input[type=submit] {
    background-color: var(--fb-green);
    color: #FFFFFF;
    border: none;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover, .btn:hover, input[type=submit]:hover {
    background-color: #5E7246;
}

/* === Links === */
a {
    color: var(--fb-green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/* Banner achtergrond wit */
.banner,
.header-banner,
.page-banner,
.hero,
.hero-section {
    background-color: #FFFFFF !important;
}
.banner,
.header-banner,
.page-banner {
    padding: 40px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.pups-grid {
    display: grid;
    gap: 28px;
    padding: 20px 0;
    grid-template-columns: repeat(1, 1fr); /* mobiel default */
}

/* Tablet */
@media (min-width: 600px) {
    .pups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .pups-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.pup-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pup-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.pup-image {
    position: relative;
    height: 180px; /* iets compacter voor 4 kolommen */
    overflow: hidden;
}

.pup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kennel-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #6b7a3a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pup-content {
    padding: 18px 20px 22px;
    font-family: 'Lato', sans-serif;
}

.pup-name {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2f2f2f;
}

.pup-breed {
    margin: 4px 0 14px;
    font-size: 14px;
    color: #6b7a3a;
    font-weight: 600;
}

.pup-meta div {
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}
/* --- GRID LAYOUT (2 kolommen) --- */
.aanmeld-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .aanmeld-grid {
        grid-template-columns: 1fr;
    }
}

/* --- KAARTEN --- */
.aanmeld-card {
    background: #fafafa;
    padding: 28px 32px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* --- HEADINGS --- */
.aanmeld-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #3a3a3a;
}

/* --- LABELS & INPUTS --- */
.aanmeld-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.aanmeld-card input,
.aanmeld-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    margin-bottom: 18px;
    transition: border-color .2s;
}

.aanmeld-card input:focus,
.aanmeld-card textarea:focus {
    border-color: #7a8b63; /* FairBreed olijfgroen */
    outline: none;
}

/* --- FOTO PREVIEW --- */
.upload-preview {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    background: #eee;
    margin-top: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- SUBMIT BUTTON --- */
.aanmeld-card .fb-button {
    margin-top: 20px;
    width: 100%;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
}
.intro-box {
    max-width: 700px;
    margin: 0 auto 40px auto;
}
/* --- GRID LAYOUT --- */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- FORM CARDS --- */
.form-card {
    background: #fafafa;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* --- HEADINGS --- */
.form-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3a3a3a;
}

/* --- INPUTS --- */
.form-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-card input,
.form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: border-color .2s;
}

.form-card input:focus,
.form-card textarea:focus {
    border-color: #7a8b63; /* jouw olijfgroen */
    outline: none;
}

/* --- FOTO UPLOAD --- */
.photo-preview {
    margin-top: 15px;
    width: 160px;
    height: 160px;
    border-radius: 12px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- SUBMIT BUTTON --- */
.submit-btn {
    background: #7a8b63;
    color: white;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.submit-btn:hover {
    background: #6a7a55;
}
/* --- HERO GRID --- */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start; /* bovenaan uitlijnen */
    gap: 60px;
    margin-top: 20px; /* strakker */
}

/* Mobiel: onder elkaar */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* --- HERO TEKST --- */
.hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2f2f2f;
}

.hero-text h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #4a4a4a;
}

/* --- HERO AFBEELDING --- */
.hero-image img {
    width: 75%;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    object-fit: cover;
}
.hero-grid {
    align-items: start;
}
.hero-image {
    margin-top: -30px; /* pas aan naar smaak: -20px, -40px, -50px */
}
.hero-title {
    margin-top: -10px; /* subtiel optillen */
}

.hero-image {
    margin-top: -40px; /* rechterkolom hoger */
}

.hero-image img {
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.hero-buttons {
    margin-top: 20px; /* was waarschijnlijk 40–60px */
    gap: 20px; /* strakker */
}
.hero-big {
    font-family: 'Lato', sans-serif;
    font-size: 38px;        /* mooie grote kop */
    font-weight: 700;
    line-height: 1.25;
    color: #2f2f2f;
    margin-bottom: 35px;    /* extra ruimte eronder */
    letter-spacing: 0.5px;  /* subtiel premium effect */
}
.hero-script {
    font-family: 'Lato', sans-serif; /* blijft in jouw huisstijl */
    font-size: 35px;                 /* mooie grote kop */
    font-weight: 300;                /* luchtig, handgeschreven gevoel */
    line-height: 1.3;
    letter-spacing: 0.8px;           /* subtiel premium effect */
    color: #7a8b63;                  /* jouw FairBreed olijfgroen */
    margin-bottom: 45px;             /* extra ruimte eronder */
    max-width: 550px;                /* houdt de regel mooi compact */
	font-style: italic;
}
}
/* Container voor foto + formulier */
.form-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px; /* lucht tussen foto en formulier */
}

/* Foto links */
.form-wrapper .preview-image {
    width: 180px;        /* kleiner, premium formaat */
    height: auto;
    border-radius: 8px;  /* subtiel premium randje */
    object-fit: cover;
    flex-shrink: 0;      /* voorkomt dat de foto krimpt */
}

/* Formulier rechts */
.form-wrapper form {
    flex: 1;
}
/* Container voor banner + titels */
.aanmeld-header-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

/* Banner links */
.aanmeld-header-banner img {
    width: 220px;       /* kies jouw ideale breedte */
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

/* Titels rechts */
.aanmeld-header-titles h1,
.aanmeld-header-titles h2 {
    margin: 0;
    text-align: left;   /* niet meer gecentreerd */
}

/* Mobiel: onder elkaar */
@media (max-width: 768px) {
    .aanmeld-header-row {
        flex-direction: column;
        text-align: center;
    }

    .aanmeld-header-titles h1,
    .aanmeld-header-titles h2 {
        text-align: center;
    }

    .aanmeld-header-banner img {
        width: 60%;
    }
}
/* -----------------------------------------
   HEADER LAYOUT (banner + titels)
----------------------------------------- */
.aanmeld-header-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0 35px 0; /* zelfde sectie-ritme als fairbreed.nl */
}

.aanmeld-header-banner img {
    width: 240px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* TITELS */
.aanmeld-header-titles h1 {
    font-family: 'Lato', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #2d2d2d;
    line-height: 1.2;
}

.aanmeld-header-titles h2 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 400;
    margin: 4px 0;
    color: #4a4a4a;
    line-height: 1.4;
}

/* -----------------------------------------
   INTRO — exact afgestemd op fairbreed.nl
----------------------------------------- */
.aanmeld-intro {
    max-width: 720px;               /* zelfde tekstbreedte als je homepage-secties */
    margin: 0 auto 45px auto;       /* gecentreerd + premium spacing */
    text-align: center;
}

.aanmeld-intro p {
    font-family: 'Lato', sans-serif;
    font-size: 20px;                /* matcht je hero-body tekst */
    line-height: 1.6;               /* zelfde luchtige leesbaarheid */
    color: #3a3a3a;                 /* identiek aan je bodytekst */
    margin: 0;
}

/* -----------------------------------------
   MOBIEL
----------------------------------------- */
@media (max-width: 768px) {
    .aanmeld-header-row {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .aanmeld-header-banner img {
        width: 60%;
    }

    .aanmeld-header-titles h1,
    .aanmeld-header-titles h2 {
        text-align: center;
    }

    .aanmeld-intro {
        margin-bottom: 35px;
        padding: 0 20px;
    }
}
.upload-preview img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.kennel-search-wrapper {
    max-width: 480px;
    margin: 0 auto 35px auto;
}

#kennelSearch {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background: #fafafa;
    transition: all 0.2s ease;
}

#kennelSearch:focus {
    outline: none;
    border-color: #7a8f6a; /* Olijfgroen */
    box-shadow: 0 0 0 3px rgba(122, 143, 106, 0.25);
}
.fb-card {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fb-card.hide {
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
}
.fb-filterbar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.fb-filterbar input,
.fb-filterbar select {
    padding: 10px 14px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background: #fafafa;
    transition: all 0.2s ease;
}

.fb-filterbar input:focus,
.fb-filterbar select:focus {
    border-color: #7a8f6a;
    box-shadow: 0 0 0 3px rgba(122, 143, 106, 0.25);
}

.fb-card {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.fb-card.hide {
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
}

.no-results {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    color: #7a8f6a;
}
.fb-filterbar {
    display: flex;
    flex-direction: column;      /* Zoekbalk bovenaan */
    align-items: center;         /* Alles centreren */
    gap: 12px;                   /* Mooie ruimte tussen elementen */
    margin-bottom: 25px;
}

.fb-filterbar input[type="text"] {
    width: 100%;
    max-width: 420px;            /* Premium breedte */
    padding: 10px 14px;
    text-align: center;          /* Tekst gecentreerd */
    border-radius: 6px;
}

.fb-filterbar select {
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 180px;
    text-align: center;
}
.kennel-subtitle {
    font-size: 1.2rem;
    color: #6a6a6a;
    margin-top: -10px;
    margin-bottom: 10px;
    font-weight: 300;
}
.fb-section-subtitle {
    text-align: center;      /* ❤️ centreren */
    font-size: 1.2rem;
    color: #6a6a6a;
    margin-top: -10px;
    margin-bottom: 25px;
    font-weight: 300;
}
.fb-container.narrow {
    max-width: 700px;
    margin: 0 auto;
}

.fb-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    font-size: 1.1rem;
    color: #444;
}

.fb-checklist li {
    margin: 10px 0;
    padding-left: 28px;
    position: relative;
}

.fb-checklist li::before {
    content: "✔";
    color: #6a8f3a; /* zacht olijfgroen */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
/* Zachte premium achtergrond */
.fb-section-colored {
    background: linear-gradient(135deg, #f4f8ef, #e8f0e0);
    padding: 60px 0;
}

/* Gouden sterren bovenaan */
.fb-stars {
    text-align: center;
    font-size: 2.2rem;
    color: #d4a72c; /* goudkleur */
    margin-bottom: 10px;
    letter-spacing: 3px;
}

/* Subtitel centreren */
.fb-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-top: -5px;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Checklist met kleur */
.fb-checklist-colored {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    font-size: 1.1rem;
    color: #444;
}

.fb-checklist-colored li {
    margin: 12px 0;
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
}

.fb-checklist-colored li::before {
    content: "✔";
    color: #6a8f3a; /* olijfgroen */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3rem;
}

/* Smalle container voor premium look */
.fb-container.narrow {
    max-width: 700px;
    margin: 0 auto;
}
.header-banner {
    width: 80%;
    margin: 0 auto;          /* centreert de banner */
    display: block;
    background-color: #ffffff;
}

.header-banner img {
    width: 100%;
    height: auto;
    display: block;          /* verwijdert witruimte onder de afbeelding */
}
/* ============================================
   BANNER — 80% BREED, GEEN RUIMTE, WIT ACHTERGROND
============================================ */
.fb-banner {
    width: 100%;
    background-color: #ffffff;
    margin: 0;               /* verwijdert ruimte boven/onder */
    padding: 0;
}

.fb-banner-inner {
    width: 60%;
    margin: 0 auto;          /* centreert de banner */
    padding: 0;
}

.fb-banner-inner img {
    width: 100%;
    height: auto;
    display: block;          /* verwijdert inline-gap onder img */
    margin: 0;
    padding: 0;
}
.fb-donate-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--fb-olive, #7a8a57);
}

.fb-button-small {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}
.button:hover {
    background-color: #4a5a3a; /* iets donkerder olijfgroen */
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
/* FairBreed® — Doneer-link perfect afgestemd op officiële kleuren */
a[href*="doneren"],
a[href*="Doneer"],
a[href*="stichting"] {
    color: #4C5A43; /* donker olijfgroen voor optimale leesbaarheid */
    font-weight: 600;
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color 0.25s ease, text-decoration 0.25s ease;
}

a[href*="doneren"]:hover,
a[href*="Doneer"]:hover,
a[href*="stichting"]:hover {
    color: #6F805F; /* primair olijfgroen als warme hover */
    text-decoration: underline;
}
/* ============================================================
   FairBreed® Kennelpagina – Premium Stylesheet
   Ontworpen voor rust, ruimte en een warme, professionele look
============================================================ */

/* ------------------------------
   BASIS
--------------------------------*/
body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background: #fafafa;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: #4f5d35; /* Olijfgroen */
    margin-bottom: 12px;
}

.accent {
    color: #6b7d4a;
    font-weight: 600;
}

/* ------------------------------
   CONTAINERS
--------------------------------*/
.fb-section {
    padding: 60px 0;
}

.fb-section-light {
    background: #f7f7f2;
}

.fb-section-beige {
    background: #f3eee4;
}

.fb-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* HERO HEADER – compacter en grotere tekst */
.fb-section-light {
    padding: 30px 0 !important; /* was 60px */
}

.kennel-header {
    padding: 25px 20px !important; /* was ~50px */
    margin-bottom: 25px !important; /* was 50px */
    background: #f7f7f2;
    border-radius: 16px;
}

/* Grotere titel */
.kennel-header h1 {
    font-size: 46px;   /* was 32–38 */
    margin-bottom: 6px;
    line-height: 1.1;
}

/* Grotere subtitel */
.kennel-subtitle {
    font-size: 20px;
    margin-bottom: 4px;
    color: #4f5d35;
}

/* Locatie iets groter */
.kennel-location {
    font-size: 17px;
    margin-bottom: 10px;
    color: #6b7d4a;
}

/* Compactere statusbalk */
.kennel-status {
    margin-top: 6px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-item {
    font-size: 14px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #6b7d4a;
    border-radius: 50%;
}


/* ------------------------------
   KAARTEN
--------------------------------*/
.kennel-card,
.fb-animal-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: transform .2s;
}

.kennel-card:hover,
.fb-animal-card:hover {
    transform: translateY(-4px);
}

/* ------------------------------
   PROFIEL
--------------------------------*/
.kennel-profiel {
    margin-bottom: 40px;
}

.kennel-2kolommen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.kolom-links,
.kolom-rechts {
    display: flex;
    flex-direction: column;
}

.profiel-icon {
    width: 80px;
    margin-bottom: 20px;
}

.profiel-foto {
    width: 100%;
    max-width: 260px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 20px;
}

/* ------------------------------
   CONTACTGEGEVENS
--------------------------------*/
.kennel-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kennel-details li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* ------------------------------
   GALERIJ
--------------------------------*/
.galerie img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 12px;
}

/* ------------------------------
   GRID SYSTEM
--------------------------------*/
.fb-grid {
    display: grid;
    gap: 30px;
}

.fb-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.fb-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ------------------------------
   DIERKAARTEN
--------------------------------*/
.fb-card-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}

.fb-card-body h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 900px) {

    .kennel-2kolommen {
        grid-template-columns: 1fr;
    }

    .fb-grid-3 {
        grid-template-columns: 1fr;
    }

    .fb-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .kennel-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {

    .fb-grid-4 {
        grid-template-columns: 1fr;
    }

    .kennel-header {
        padding: 40px 20px;
    }

    .kennel-header h1 {
        font-size: 28px;
    }
}
.groot-icoon {
    width: 400px;
    max-width: 100%;
    display: block;
    margin: 0 auto 25px auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}
/* Statusblok onder de kennelnaam */
.kennel-status {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.status-item {
    font-size: 16px;
    color: #4f5d35;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-item span {
    font-weight: 600;
    color: #6b7d4a;
}

/* Klein hondenpootje */
.status-icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}
/* Compacte statusbalk */
.kennel-status {
    margin-top: 6px;          /* veel kleiner */
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 20px;                /* minder breed */
    flex-wrap: wrap;
}

.status-item {
    font-size: 14px;          /* kleiner */
    line-height: 1.1;         /* compacter */
    padding: 0;               /* geen extra hoogte */
    color: #4f5d35;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-item strong {
    color: #6b7d4a;
    font-weight: 600;
}

/* Kleine subtiele olijfgroene bullet */
.status-dot {
    width: 6px;
    height: 6px;
    background: #6b7d4a;
    border-radius: 50%;
    display: inline-block;
}
/* HERO HEADER – compacter en grotere tekst */
.fb-section-light {
    padding: 30px 0 !important; /* was 60px */
}

.kennel-header {
    padding: 25px 20px !important; /* was ~50px */
    margin-bottom: 25px !important; /* was 50px */
    background: #f7f7f2;
    border-radius: 16px;
}

/* Grotere titel */
.kennel-header h1 {
    font-size: 46px;   /* was 32–38 */
    margin-bottom: 6px;
    line-height: 1.1;
}

/* Grotere subtitel */
.kennel-subtitle {
    font-size: 20px;
    margin-bottom: 4px;
    color: #4f5d35;
}

/* Locatie iets groter */
.kennel-location {
    font-size: 17px;
    margin-bottom: 10px;
    color: #6b7d4a;
}

/* Compactere statusbalk */
.kennel-status {
    margin-top: 6px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-item {
    font-size: 18px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #6b7d4a;
    border-radius: 50%;
}
.fb-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fb-thumb {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.fb-photo-wrapper {
    position: relative;
}

.fb-card-photo {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.fb-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: rgba(255,255,255,0.85);
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.fb-photo-wrapper {
    position: relative;
}

.fb-card-photo {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.fb-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    object-fit: contain;

    /* Transparante variant */
    background: transparent;
    padding: 0;

    /* Optioneel: subtiele schaduw voor leesbaarheid */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
}
.fb-photo-wrapper {
    position: relative;
}

.fb-card-photo {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.fb-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    object-fit: contain;

    /* Transparante variant */
    background: transparent;
    padding: 0;

    /* Zachte schaduw zodat hij op elke foto zichtbaar blijft */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
}
/* ============================================================
   FAIRBREED® – UNIVERSELE GRID + ANIMATIES + PREMIUM STYLING
   Geschikt voor: kennels, ouderdieren, pups, baasje, importdieren
============================================================ */

/* ------------------------------
   GRID
------------------------------ */
.fb-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

/* ------------------------------
   KAART BASIS
------------------------------ */
.fb-card {
    display: block;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #333;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* Fade-out animatie */
.fb-card.hide {
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
}

/* Hover animatie */
.fb-card:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

/* ------------------------------
   FOTO + BADGE
------------------------------ */
.fb-photo-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fb-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 58px;
    height: auto;
    opacity: 0.92;
    transition: transform 0.25s ease;
}

.fb-card:hover .fb-badge {
    transform: scale(1.08);
}

/* ------------------------------
   KAART BODY
------------------------------ */
.fb-card-body {
    padding: 18px 20px 22px;
}

.fb-card-body h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
}

.fb-card-body p {
    margin: 4px 0;
    font-size: 15px;
    line-height: 1.45;
    color: #444;
}

.fb-card-body p strong {
    color: #2a2a2a;
}

/* ------------------------------
   FILTERBALK
------------------------------ */
.fb-filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.fb-filterbar input,
.fb-filterbar select {
    padding: 10px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fb-filterbar input:focus,
.fb-filterbar select:focus {
    border-color: #7a8f6a; /* zacht olijfgroen */
    box-shadow: 0 0 0 3px rgba(122,143,106,0.25);
    outline: none;
}

/* ------------------------------
   TITELS
------------------------------ */
.fb-section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #2a2a2a;
}

.fb-section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

/* ------------------------------
   GEEN RESULTATEN
------------------------------ */
.no-results {
    margin-top: 20px;
    font-size: 18px;
    color: #777;
    text-align: center;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 600px) {
    .fb-card-grid {
        grid-template-columns: 1fr;
    }

    .fb-photo-wrapper {
        height: 180px;
    }
}
/* === FairBreed fade-in/out animatie === */
.fb-card {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.fb-card.hide {
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
}

/* Hover animatie */
.fb-card:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    transform: scale(1.02);
}

/* Badge animatie */
.fb-badge {
    transition: transform 0.25s ease;
}

.fb-card:hover .fb-badge {
    transform: scale(1.08);
}
/* TITEL */
.fb-card-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

/* BASISREGELS */
.fb-line {
    margin: 2px 0;
    font-size: 14px;
}

/* BADGES */
.fb-badge-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.fb-badge-item {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #c8e6c9;
}

/* GENETISCHE BOX */
.fb-genetica-box {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 10px 12px;
    border-radius: 8px;
    margin-top: 10px;
}

.fb-genetica-box h4 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 700;
}

.fb-genetica-box ul {
    margin: 0;
    padding-left: 18px;
}

.fb-genetica-box li {
    font-size: 13px;
    margin-bottom: 3px;
}

/* EXTRA */
.fb-extra {
    margin-top: 10px;
    font-size: 13px;
    color: #444;
}
.fb-genetica-box ul,
.fb-genetica-box li,
.fb-gezondheid-box ul,
.fb-gezondheid-box li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.fb-genetica-box li,
.fb-gezondheid-box li {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #ececec;
}

.fb-genetica-box li:last-child,
.fb-gezondheid-box li:last-child {
    border-bottom: none;
}
.fb-genetica-box,
.fb-gezondheid-box {
    background: #f7f8f5;
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 14px;
}

.fb-genetica-box h4,
.fb-gezondheid-box h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #3d4a3f;
}
/* --- KAART --- */
.fb-parent-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.fb-parent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* --- FOTO --- */
.fb-photo-wrapper {
    position: relative;
}

.fb-photo-wrapper .fb-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 42px;
    opacity: 0.9;
}

/* --- TITEL & KENNEL --- */
.fb-parent-name {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: #2f3a32;
}

.fb-parent-kennel {
    margin: 0 0 10px 0;
}

.fb-kennel-name {
    font-weight: 600;
    color: #3d4a3f;
}

/* --- BADGES --- */
.fb-parent-badges .fb-badge-item {
    background: #e6efe4;
    color: #3d4a3f;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .85rem;
}

/* --- INFO BLOKKEN --- */
.fb-info-box {
    background: #f7f8f5;
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 14px;
}

.fb-info-box h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #3d4a3f;
}

/* --- INFO REGELS --- */
.fb-info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #ececec;
}

.fb-info-row:last-child {
    border-bottom: none;
}

.fb-info-label {
    color: #666;
    font-weight: 500;
}

.fb-info-value {
    font-weight: 600;
    color: #333;
}

/* --- BADGE TYPES --- */
.fb-info-value.ja {
    background: #dce8d6;
    color: #3d6b3f;
    padding: 3px 8px;
    border-radius: 6px;
}

.fb-info-value.onbekend {
    background: #f0f0f0;
    color: #777;
    padding: 3px 8px;
    border-radius: 6px;
}

.fb-info-value.percentage {
    background: #e8e8e8;
    color: #333;
    padding: 3px 8px;
    border-radius: 6px;
}
.fb-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}
.fb-parent-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.fb-card-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fb-info-box {
    background: #f7f8f5;
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 10px;
}

.fb-info-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 6px 0;
    border-bottom: 1px solid #ececec;
    gap: 12px;
    text-align: left;
}



.fb-info-row:last-child {
    border-bottom: none;
}
.fb-photo-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.fb-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fb-photo-wrapper .fb-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 46px;
    opacity: 0.9;
}
.fb-info-row {
    grid-template-columns: minmax(120px, 60%) auto;
}
.fb-info-label {
    color: #666;
    font-weight: 500;
    word-break: break-word;
    text-align: left;
}
.fb-info-value {
    white-space: nowrap;
    text-align: right;
}
.fb-info-row {
    grid-template-columns: minmax(120px, 60%) auto;
}
/* Kleinere, premium typografie voor genetica & gezondheid */
.fb-info-box {
    font-size: 0.85rem;      /* kleiner geheel */
    line-height: 1.25rem;    /* compacter */
}

/* Labels en waarden kleiner en rustiger */
.fb-info-label,
.fb-info-value {
    font-size: 0.85rem;
}

/* Info-rijen compacter */
.fb-info-row {
    padding: 4px 0;          /* was 6px */
    gap: 10px;               /* iets smaller */
}

/* Badge-waarden ook kleiner */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    font-size: 0.80rem;
    padding: 2px 6px;        /* kleiner badge */
    border-radius: 5px;
}
.fb-info-label {
    word-break: break-word;
}
.fb-info-value {
    white-space: nowrap;
}
.fb-info-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 0;
    border-bottom: 1px solid #ececec;
    gap: 2px;
}

.fb-info-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    white-space: nowrap; /* belangrijk */
}

.fb-info-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    white-space: normal;      /* mag afbreken */
    word-break: break-word;   /* breekt als het moet */
}

.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block;
    font-size: 0.80rem;
    padding: 2px 6px;
    border-radius: 5px;
}
.fb-card-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(4, 1fr); /* 4 kolommen desktop */
}

/* Tablet */
@media (max-width: 1100px) {
    .fb-card-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolommen */
    }
}

/* Mobiel */
@media (max-width: 700px) {
    .fb-card-grid {
        grid-template-columns: 1fr; /* 1 kolom */
    }
}
.fb-card {
    display: flex;
    flex-direction: column;
}

.fb-card-body {
    flex: 1;
}
.fb-info-row {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: start;
    gap: 8px;
    padding: 4px 0;
    border-bottom: 1px solid #ececec;
}

/* Label blijft één regel */
.fb-info-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    white-space: nowrap; /* belangrijk */
}

/* Waarde mag afbreken en onder label schuiven */
.fb-info-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    white-space: normal;      /* mag afbreken */
    word-break: break-word;   /* breekt als het moet */
}
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block;
    font-size: 0.80rem;
    padding: 2px 6px;
    border-radius: 5px;
}
.fb-info-row {
    padding: 4px 0;
    border-bottom: 1px solid #ececec;
}

/* Label: blijft één blokje vooraan */
.fb-info-label {
    display: inline;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    white-space: nowrap;      /* label zelf breekt niet */
    margin-right: 4px;
}

/* Waarde: komt erachter, mag afbreken */
.fb-info-value {
    display: inline;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    white-space: normal;      /* mag afbreken */
    word-break: break-word;   /* breekt als het moet */
}

/* Badges als compacte waarde */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block;
    font-size: 0.80rem;
    padding: 2px 6px;
    border-radius: 5px;
}
.fb-info-row {
    padding: 4px 0;
    border-bottom: 1px solid #ececec;
}

/* Label blijft één regel */
.fb-info-label {
    display: inline;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    white-space: nowrap; /* label breekt nooit */
    margin-right: 6px;
}

/* Waarde mag afbreken en doorlopen */
.fb-info-value {
    display: inline;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    white-space: normal;      /* mag afbreken */
    word-break: break-word;   /* breekt als het moet */
}

/* Badges */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block;
    font-size: 0.80rem;
    padding: 2px 6px;
    border-radius: 5px;
}
.fb-info-row {
    padding: 4px 0;
    border-bottom: 1px solid #ececec;
    display: block; /* belangrijk */
}

/* Label altijd boven */
.fb-info-label {
    display: block;            /* label krijgt eigen regel */
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 2px;
    white-space: nowrap;       /* label breekt niet */
}

/* Waarde onder label, mag afbreken */
.fb-info-value {
    display: block;            /* waarde onder label */
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    white-space: normal;       /* mag afbreken */
    word-break: break-word;    /* breekt als het moet */
}

/* Badges */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block;
    font-size: 0.80rem;
    padding: 2px 6px;
    border-radius: 5px;
}
.fb-card-lines {
    margin: 8px 0 14px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    animation: fbFadeIn 0.4s ease forwards;
}

.fb-card-line {
    font-size: 0.92rem;
    line-height: 1.35;
    color: #4a4a4a;
    background: rgba(0,0,0,0.03);
    padding: 4px 8px;
    border-left: 3px solid #7a8b6f; /* zacht olijfgroen */
    border-radius: 3px;
}
    
@keyframes fbFadeIn {
    from { opacity: 0; transform: translateY(3px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Minder witruimte binnen de kaart */
.fairbreed-card {
    padding-left: 16px;
    padding-right: 16px;
}

/* Iets strakkere grid spacing */
.fairbreed-card-grid {
    column-gap: 20px;
}

/* Minder container-padding op desktop */
.fairbreed-section {
    padding-left: 20px;
    padding-right: 20px;
}

/* Mobiel blijft luchtig */
@media (max-width: 768px) {
    .fairbreed-card {
        padding-left: 14px;
        padding-right: 14px;
    }
    .fairbreed-section {
        padding-left: 16px;
        padding-right: 16px;
    }
}
/* Naam van de hond */
.fairbreed-card .dog-name {
    font-size: 1.15rem; /* was waarschijnlijk 1.25–1.35rem */
    line-height: 1.25;
}

/* Kennelnaam + geslacht */
.fairbreed-card .dog-meta {
    font-size: 0.95rem;
    line-height: 1.3;
}

/* Sectietitels zoals 'Genetica & Gezondheid' */
.fairbreed-card .section-title {
    font-size: 0.90rem;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Labels en korte info */
.fairbreed-card .label,
.fairbreed-card .value {
    font-size: 0.85rem;
    line-height: 1.25;
}

/* Lange genetica-lijsten */
.fairbreed-card .genetics-list {
    font-size: 0.80rem;
    line-height: 1.25;
}

/* Optioneel: iets compactere badge-tekst */
.fairbreed-card .badge {
    font-size: 0.75rem;
}
/* Naam van de hond */
.fairbreed-card .dog-name {
    font-size: 1.05rem;
    line-height: 1.20;
    font-weight: 600;
}

/* Kennelnaam + geslacht */
.fairbreed-card .dog-meta {
    font-size: 0.85rem;
    line-height: 1.25;
}

/* Sectietitels (Genetica & Gezondheid, Röntgen, Testen, etc.) */
.fairbreed-card .section-title {
    font-size: 0.80rem;
    font-weight: 600;
    margin-bottom: 3px;
}

/* Labels en waarden */
.fairbreed-card .label,
.fairbreed-card .value {
    font-size: 0.78rem;
    line-height: 1.20;
}

/* Genetica-lijsten (Embark/MyDogDNA/Optigen etc.) */
.fairbreed-card .genetics-list {
    font-size: 0.72rem;
    line-height: 1.20;
}

/* Badges (Fit2Breed, DNA-profiel, Embark, etc.) */
.fairbreed-card .badge {
    font-size: 0.70rem;
    padding: 2px 6px;
}
/* === ULTRA-COMPACTE FAIRBREED OUDERDIEREN CSS (OPSCHOONVERSIE) === */

/* Kaart */
.fb-parent-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.fb-parent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* Foto */
.fb-photo-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.fb-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fb-photo-wrapper .fb-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    opacity: 0.9;
}

/* Kaart-body */
.fb-card-body {
    padding: 14px 6px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Naam + kennel */
.fb-parent-name {
    font-size: 1.00rem;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2f3a32;
}
.fb-parent-kennel {
    font-size: 0.80rem;
    line-height: 1.20;
    margin-bottom: 6px;
    color: #3d4a3f;
}

/* Badges */
.fb-parent-badges .fb-badge-item,
.fb-badge-item {
    background: #e6efe4;
    color: #3d4a3f;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
}

/* Info-boxen */
.fb-info-box,
.fb-genetica-box,
.fb-gezondheid-box {
    background: #f7f8f5;
    padding: 12px 14px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 0.74rem;
    line-height: 1.20;
}
.fb-info-box h4,
.fb-genetica-box h4,
.fb-gezondheid-box h4 {
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #3d4a3f;
}

/* Info-rijen */
.fb-info-row {
    padding: 3px 0;
    border-bottom: 1px solid #ececec;
    display: block;
}
.fb-info-row:last-child {
    border-bottom: none;
}

/* Label boven, waarde onder */
.fb-info-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 2px;
    white-space: nowrap;
}
.fb-info-value {
    display: block;
    font-size: 0.74rem;
    font-weight: 600;
    color: #333;
    white-space: normal;
    word-break: break-word;
}

/* Badge-waarden */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block;
    font-size: 0.68rem;
    padding: 2px 5px;
    border-radius: 4px;
}

/* Genetica-lijsten */
.fb-genetica-box li,
.fb-gezondheid-box li {
    font-size: 0.70rem;
    padding: 3px 0;
}

/* Grid */
.fb-card-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
    .fb-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .fb-card-grid {
        grid-template-columns: 1fr;
    }
}
/* Maak kennelkaarten korter en compacter */
.fb-card {
    padding: 16px 18px;        /* was vaak 24–30px */
    margin-bottom: 18px;       /* minder witruimte tussen kaarten */
}

.fb-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;                  /* was 14–20px */
}

.fb-card h3 {
    margin: 0;
    font-size: 1.15rem;        /* iets kleiner maar nog premium */
    line-height: 1.25;
}

.fb-card p {
    margin: 0;
    line-height: 1.35;         /* compacter */
}

.status-item {
    margin: 0;
    padding: 2px 0;            /* minder verticale ruimte */
}

.status-dot {
    margin-right: 6px;         /* subtieler */
    transform: scale(0.85);    /* kleiner bolletje */
}
.fb-label {
    font-weight: 600;
    color: var(--fb-olive-dark);
    margin-right: 4px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-title .icon {
        width: 100px;
    }
}
.fb-eyebrow {
    text-align: center;
    font-style: italic;
    color: #4f5d35;      /* FairBreed olijfgroen */
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 18px;
    display: block;
    white-space: pre-line; /* behoudt de drie zinnen onder elkaar */
}
.fb-card a,
.fb-card a:hover {
    text-decoration: none !important;
}
/* ============================================
   KENNELPAGINA – GEÏSOLEERDE STYLING
   ============================================ */

.kennelpagina .fb-section {
    padding: 60px 0;
}

.kennelpagina .fb-section-light {
    background: #fafafa;
}

.kennelpagina .fb-section-beige {
    background: #f5f1e9;
}

.kennelpagina .fb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TITELS */
.kennelpagina .fb-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

/* ============================================
   GRID SYSTEM
   ============================================ */

.kennelpagina .fb-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 20px;
}

/* 2‑koloms layout voor profielblok */
.kennelpagina .fb-grid {
    display: grid;
    gap: 40px;
}

.kennelpagina .fb-grid-2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 900px) {
    .kennelpagina .fb-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   KAARTEN
   ============================================ */

.kennelpagina .fb-card,
.kennelpagina .fb-profile-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.6rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.kennelpagina .fb-card:hover,
.kennelpagina .fb-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* ============================================
   FOTO'S
   ============================================ */

.kennelpagina .fb-card-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.kennelpagina .fb-img-large {
    width: 100%;
    max-width: 350px;
    border-radius: 14px;
    margin: 20px auto;
    display: block;
}

/* Badge */
.kennelpagina .fb-photo-wrapper {
    position: relative;
}

.kennelpagina .fb-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 48px;
}

/* ============================================
   INFO BLOKKEN
   ============================================ */

.kennelpagina .fb-info-block {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.kennelpagina .fb-info-block h2,
.kennelpagina .fb-info-block h3 {
    text-align: center;
    margin-bottom: 20px;
}

/* Lijstjes */
.kennelpagina .kennel-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kennelpagina .kennel-details li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* ============================================
   FORMULIER
   ============================================ */

.kennelpagina .fb-form label {
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

.kennelpagina .fb-form input,
.kennelpagina .fb-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 5px;
}

.kennelpagina .btn-primary {
    background: #556b2f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.kennelpagina .btn-primary:hover {
    background: #445622;
}
/* ============================================
   FAIRBREED® FORMULIER – PREMIUM STYLING
============================================ */

.fb-form {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Labels */
.fb-form label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 6px;
}

/* Inputs, selects, textarea */
.fb-form input,
.fb-form textarea,
.fb-form select {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2a2a2a;

    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d8d8d8;
    background: #fafafa;

    transition: all .25s ease;
    box-sizing: border-box;
}

/* Hover */
.fb-form input:hover,
.fb-form textarea:hover,
.fb-form select:hover {
    border-color: #b7c2a8;
}

/* Focus */
.fb-form input:focus,
.fb-form textarea:focus,
.fb-form select:focus {
    border-color: #7a8f6a; /* FairBreed olijfgroen */
    background: #fff;
    box-shadow: 0 0 0 3px rgba(122,143,106,0.18);
    outline: none;
}

/* Tekstvelden */
.fb-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Knoppen */
.fb-btn-primary {
    display: inline-block;
    background: #7a8f6a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 12px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background .25s ease;
    margin-top: 25px;
}

.fb-btn-primary:hover {
    background: #6a7d5d;
}

.fb-btn-secondary {
    display: inline-block;
    background: #e8e8e8;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 12px 22px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background .25s ease;
    margin-left: 10px;
}

.fb-btn-secondary:hover {
    background: #d5d5d5;
}

/* Extra spacing tussen velden */
.fb-field {
    margin-bottom: 22px;
}
.fb-kennel-info a,
.fb-kennel-info a:hover,
.fb-kennel-info a:focus {
    text-decoration: none !important;
}
.fb-kennel-info a {
    color: #2a2a2a;
    transition: color .25s ease;
}

.fb-kennel-info a:hover {
    color: #7a8f6a; /* FairBreed olijfgroen */
}
.kennel-status.highlight {
    margin-top: 2rem;
    padding: 1.4rem 1.6rem;
    background: #f7f7f3; /* zachte FairBreed achtergrond */
    border-left: 4px solid var(--olive); /* olijfgroen accent */
    border-radius: 6px;
}

.kennel-status.highlight .status-item {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: .6rem;
}

.kennel-status .status-dot {
    width: 10px;
    height: 10px;
    background: var(--olive);
    border-radius: 50%;
    display: inline-block;
    margin-right: .5rem;
}
/* =========================================
   GENETICA & GEZONDHEID — PREMIUM LAYOUT
========================================= */

.fb-info-box {
    margin-top: var(--space-m);
    padding: 1rem 1.2rem;
    background: var(--fb-olive-light);
    border-radius: var(--fb-radius-small);
}

.fb-info-box h4 {
    margin-bottom: .8rem;
    color: var(--fb-olive);
    font-weight: 600;
}

.fb-info-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: .4rem 1rem;
    margin-bottom: .4rem;
}

.fb-info-label {
    font-weight: 600;
    color: var(--fb-olive);
}

.fb-info-value {
    font-weight: 500;
    line-height: 1.4;
}
/* =========================================
   KAART HARMONISATIE — FOTO, BADGES, TEKST
========================================= */

.fb-card {
    border-radius: var(--fb-radius);
    overflow: hidden;
    background: var(--fb-white);
    box-shadow: var(--fb-shadow-soft);
    transition: .25s ease;
}

.fb-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fb-shadow-medium);
}

.fb-photo-wrapper {
    position: relative;
}

.fb-card-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.fb-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 58px;
    opacity: .92;
}

.fb-card-body {
    padding: 1.2rem 1.4rem;
}

.fb-card-title {
    margin: 0 0 .4rem 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fb-black);
}

.fb-parent-kennel {
    margin: .4rem 0 .8rem 0;
    font-size: .95rem;
}

.fb-label {
    font-weight: 600;
    color: var(--fb-olive);
}

.fb-badge-list {
    margin: .6rem 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.fb-badge-item {
    background: var(--fb-olive-light);
    padding: .25rem .55rem;
    border-radius: var(--fb-radius-small);
    font-size: .85rem;
    font-weight: 600;
    color: var(--fb-olive);
}
/* Desktop: bredere labelkolom voor betere uitlijning */
@media (min-width: 900px) {
    .fb-info-row {
        grid-template-columns: 220px 1fr;
    }
}
/* =========================================
   OUDERDIEREN – TWEEKOLUMS LAYOUT
========================================= */

.fb-animal-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    align-items: start;
}

/* Foto blijft bovenaan en over beide kolommen */
.fb-animal-card .fb-photo-wrapper {
    grid-column: 1 / 3;
}

/* Rechterkolom (genetica + gezondheid) */
.fb-animal-card .fb-info-box {
    margin-top: .6rem;
}

/* Mobiel: alles onder elkaar */
@media (max-width: 900px) {
    .fb-animal-card {
        grid-template-columns: 1fr;
    }
    .fb-animal-card .fb-photo-wrapper {
        grid-column: 1;
    }
}/* =========================================
   FB-CARD – TWEEKOLUMS LAYOUT
========================================= */

.fb-card-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    align-items: start;
}

/* Foto bovenaan over beide kolommen */
.fb-card .fb-photo-wrapper {
    grid-column: 1 / 3;
}

/* Linker- en rechterkolom */
.fb-card-left,
.fb-card-right {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

/* Mobiel: alles onder elkaar */
@media (max-width: 900px) {
    .fb-card-grid-2 {
        grid-template-columns: 1fr;
    }
    .fb-card .fb-photo-wrapper {
        grid-column: 1;
    }
}
/* =========================================
   INFO-ROWS: labels links, waarden netjes wrap
========================================= */

.fb-info-row {
    display: grid;
    grid-template-columns: 200px 1fr; /* vaste labelkolom */
    gap: .4rem 1rem;
    align-items: start;
}

/* LABELS */
.fb-info-label {
    font-weight: 600;
    white-space: nowrap; /* nooit afbreken */
}

/* WAARDEN */
.fb-info-value {
    min-width: 0; /* CRUCIAAL: anders kan de tekst niet wrappen */
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
}

/* Desktop: iets bredere labelkolom */
@media (min-width: 1100px) {
    .fb-info-row {
        grid-template-columns: 240px 1fr;
    }
}
/* =========================================
   INFO-ROWS: korte antwoorden naast label,
   lange antwoorden onder label
========================================= */

.fb-info-row {
    display: block;
    margin-bottom: .6rem;
}

/* LABEL */
.fb-info-label {
    font-weight: 600;
    display: block;
    margin-bottom: .2rem;
}

/* KORTE WAARDEN (Ja / Nee / HD A / ED vrij) */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block;
    margin-left: .4rem;
    font-weight: 500;
}

/* LANGE WAARDEN (automatisch onder label) */
.fb-info-value {
    display: block;
    margin-left: 0;
    overflow-wrap: break-word;
    line-height: 1.4;
}
/* =========================================
   INFO-ROWS: alles onder elkaar, links uitgelijnd
   korte antwoorden naast label, lange eronder
========================================= */

.fb-info-row {
    display: block;
    margin-bottom: .8rem;
    text-align: left;
}

/* LABEL ALTIJD LINKS */
.fb-info-label {
    font-weight: 600;
    display: block;
    margin-bottom: .2rem;
    text-align: left;
}

/* KORTE WAARDEN (Ja / Nee / HD A / ED vrij) */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block;
    margin-left: .4rem;
    font-weight: 500;
    text-align: left;
}

/* LANGE WAARDEN (automatisch onder label) */
.fb-info-value {
    display: block;
    margin-left: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
    text-align: left;
}
/* =========================================
   INFO-ROWS: alles onder elkaar, links uitgelijnd
   korte antwoorden naast label, lange eronder
========================================= */

.fb-info-row {
    display: block;
    margin-bottom: .9rem;
    text-align: left;
}

/* LABEL ALTIJD LINKS, ALTIJD BOVEN */
.fb-info-label {
    font-weight: 600;
    display: block;
    margin-bottom: .2rem;
    text-align: left;
}

/* KORTE WAARDEN (Ja / Nee / HD A / ED vrij / percentage) */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block;
    margin-left: .4rem;
    font-weight: 500;
    text-align: left;
}

/* LANGE WAARDEN (automatisch onder label) */
.fb-info-value {
    display: block;
    margin-left: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.45;
    text-align: left;
}
/* =========================================
   INFO-ROWS: labels links, korte waarden naast label
========================================= */

.fb-info-row {
    display: block;
    margin-bottom: .9rem;
    text-align: left;
}

/* LABEL ALTIJD LINKS */
.fb-info-label {
    font-weight: 600;
    display: block;
    margin-bottom: .2rem;
}

/* KORTE WAARDEN (Ja / Nee / HD A / ED vrij / percentage) */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block !important;
    margin-left: .4rem;
    font-weight: 500;
}

/* LANGE WAARDEN (onder label) */
.fb-info-value {
    display: block;
    margin-left: 0;
    overflow-wrap: break-word;
    line-height: 1.45;
}
/* =========================================
   COMPACTE KAARTEN – FairBreed®
========================================= */

/* Kaart zelf compacter */
.fb-card {
    padding: 1.2rem !important;
}

/* Foto minder hoge marge */
.fb-photo-wrapper {
    margin-bottom: 1rem !important;
}

/* Titel compacter */
.fb-card-title {
    margin: 0 0 .4rem 0 !important;
}

/* Basisregels compacter */
.fb-card-lines p,
.fb-parent-kennel,
.fb-extra {
    margin: 0 0 .3rem 0 !important;
    line-height: 1.3;
}

/* Badge-lijst compacter */
.fb-badge-list {
    margin: .4rem 0 .6rem 0 !important;
}

/* TITELS VAN DE BLOKKEN */
.fb-info-box h4 {
    margin: .8rem 0 .4rem 0 !important;
    font-size: 1.05rem;
}

/* INFO-ROWS COMPACT */
.fb-info-row {
    margin-bottom: .5rem !important;
}

/* LABELS */
.fb-info-label {
    margin-bottom: .1rem !important;
    font-weight: 600;
}

/* KORTE WAARDEN (Ja / Nee / HD A / ED vrij / percentage) */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block !important;
    margin-left: .4rem;
    font-weight: 500;
}

/* LANGE WAARDEN */
.fb-info-value {
    display: block;
    margin-left: 0;
    line-height: 1.3;
    overflow-wrap: break-word;
}
.fb-card {
    padding: 1rem 1.2rem !important;
}
.fb-photo-wrapper {
    margin-bottom: .8rem !important;
}
.fb-card-title {
    margin: 0 0 .3rem 0 !important;
    font-size: 1.25rem;
}
.fb-card-lines p,
.fb-parent-kennel,
.fb-extra {
    margin: 0 0 .25rem 0 !important;
    line-height: 1.25;
}
.fb-badge-list {
    margin: .3rem 0 .5rem 0 !important;
}
.fb-badge-item {
    padding: .15rem .45rem !important;
    font-size: .75rem !important;
}
.fb-info-box h4 {
    margin: .6rem 0 .3rem 0 !important;
    font-size: 1.05rem !important;
}
.fb-info-row {
    margin-bottom: .35rem !important;
}
.fb-info-label {
    margin-bottom: .1rem !important;
    font-weight: 600;
}
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block !important;
    margin-left: .4rem;
    font-weight: 500;
}
.fb-info-value {
    display: block;
    margin-left: 0;
    line-height: 1.3;
    overflow-wrap: break-word;
}
/* KORTE WAARDEN (Ja / Nee / HD A / ED vrij / percentage) */
.fb-info-value.ja,
.fb-info-value.onbekend,
.fb-info-value.percentage {
    display: inline-block !important;
    margin-left: .4rem;
    font-weight: 500;
}

/* LANGE WAARDEN (onder label) */
.fb-info-value {
    display: block;
    margin-left: 0;
    line-height: 1.3;
    overflow-wrap: break-word;
}
/* =========================================
   FAIRBREED® FORM STYLING – newpup
========================================= */

.fb-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
}

.fb-form-group {
    margin-bottom: 1rem;
}

.fb-form label {
    display: block;
    font-weight: 600;
    margin-bottom: .25rem;
    color: #333;
}

.fb-form input[type="text"],
.fb-form input[type="date"],
.fb-form input[type="number"],
.fb-form select {
    width: 100%;
    padding: .55rem .7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: .95rem;
    background: #fff;
}

.fb-form input[type="file"] {
    margin-top: .4rem;
}

.fb-form button[type="submit"] {
    background: #4a6f4f; /* FairBreed olijfgroen */
    color: #fff;
    padding: .7rem 1.4rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background .2s ease;
}

.fb-form button[type="submit"]:hover {
    background: #3e5e44;
}
/* =========================================
   FAIRBREED® FORM STYLING – newpup
========================================= */

.fb-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
}

.fb-form-group {
    margin-bottom: 1rem;
}

.fb-form label {
    display: block;
    font-weight: 600;
    margin-bottom: .25rem;
    color: #333;
}

.fb-form input[type="text"],
.fb-form input[type="date"],
.fb-form input[type="number"],
.fb-form select {
    width: 100%;
    padding: .55rem .7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: .95rem;
    background: #fff;
}

.fb-form input[type="file"] {
    margin-top: .4rem;
}

.fb-form button[type="submit"] {
    background: #4a6f4f; /* FairBreed olijfgroen */
    color: #fff;
    padding: .7rem 1.4rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background .2s ease;
}

.fb-form button[type="submit"]:hover {
    background: #3e5e44;
}
#container-aanmeld h1 {
    text-align: center;
    margin-bottom: 1rem;
}

#container-aanmeld h3 {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
/* =========================================
   FAIRBREED® FORM STYLING – newhond
========================================= */

#container-aanmeld h1,
#container-aanmeld h3,
#container-aanmeld h4,
#container-aanmeld h5 {
    text-align: center;
    margin-bottom: .8rem;
}

.fb-form {
    max-width: 650px;
    margin: 0 auto;
    padding: 1.5rem;
}

.fb-form-group {
    margin-bottom: 1rem;
    display: block;
}

.fb-form label {
    display: block;
    font-weight: 600;
    margin-bottom: .25rem;
    color: #333;
}

.fb-form input[type="text"],
.fb-form input[type="date"],
.fb-form input[type="number"],
.fb-form select,
.fb-form textarea {
    width: 100%;
    padding: .55rem .7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: .95rem;
    background: #fff;
}

.fb-form input[type="file"] {
    margin-top: .4rem;
}

.fb-form button[type="submit"] {
    background: #4a6f4f; /* FairBreed olijfgroen */
    color: #fff;
    padding: .7rem 1.4rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background .2s ease;
}

.fb-form button[type="submit"]:hover {
    background: #3e5e44;
}

.center {
    text-align: center;
}
.fb-card-hover {
    text-decoration: none;
    color: #333; /* normale kleur */
}

.fb-card-hover:hover {
    text-decoration: none !important; /* voorkomt onderlijnen */
    color: var(--fb-green); /* of een andere hoverkleur */
}
.fb-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    color: var(--fb-green);
    text-decoration: none !important;
}
.fb-card-hover:hover .fb-card-title {
    color: #3F4F2F;
}
.fb-card-hover * {
    color: inherit;
    text-decoration: none;
}

.fb-card-hover:hover * {
    color: #556B2F; /* donker olive */
    text-decoration: none !important;
}
.fb-card {
    padding: 0.7rem 1rem !important;
    gap: 0.45rem;
}
.fb-card-grid {
    gap: 20px;
}
.card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
img.Deurplaat-2023 {
    height: 100px;
    width: auto;
    object-fit: cover;
    object-position: center;

}
.fb-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
}
:root {
    --fb-green-dark: #2f4f2f;
}

.fb-button:hover {
    background: var(--fb-green-dark);
}
.fb-h2 {
    font-size: 2rem;              /* mooi groot maar niet schreeuwerig */
    font-weight: 700;             /* premium, stevig */
    color: #748144(--olive);       /* jouw standaard tekstkleur */
    margin: 0 0 1.4rem;           /* lucht onder de kop */
    line-height: 1.25;            /* strak en modern */
    letter-spacing: -0.5px;       /* subtiel premium effect */
}
.fb-h2 {
    position: relative;
    padding-bottom: 0.6rem;
}

.fb-h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    background: var(--fb-olive);   /* jouw olijfgroen */
    border-radius: 2px;
}
@media (max-width: 600px) {
    .fb-h2 {
        font-size: 1.6rem;
    }
}
.fb-h3 {
    font-size: 1.45rem;          /* mooi onderscheid met H2 */
    font-weight: 600;            /* iets lichter dan H2 voor hiërarchie */
    color: #748144(--olive);
    margin: 0 0 1rem;
    line-height: 1.3;
    letter-spacing: -0.3px;      /* subtiel premium effect */
}
.fb-h3 {
    position: relative;
    padding-bottom: 0.4rem;
}

.fb-h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;                 /* korter dan H2 */
    height: 2px;                 /* dunner dan H2 */
    background: var(--fb-olive);
    border-radius: 2px;
}
@media (max-width: 600px) {
    .fb-h3 {
        font-size: 1.25rem;
    }
}
.kennel-bio1 {
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kennel-bio-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kennel-list {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kennel-list li {
    line-height: 1.45;
    color: var(--fb-black);
}
/* De kaart zelf */
.kennel-bio1 {
    padding: 28px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* De twee afbeeldingen bovenaan */
.kennel-bio-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Titel boven de lijst */
.kennel-bio-title {
    margin: 0;
    font-size: 1.1rem;
    color: var(--fb-black);
}

/* De lijst */
.kennel-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Elk lijstitem met een olijfgroen vinkje */
.kennel-list li {
    position: relative;
    padding-left: 28px;
    line-height: 1.45;
    color: var(--fb-black);
}

/* Het vinkje */
.kennel-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--fb-olive);
    font-size: 1.1rem;
    line-height: 1;
}
.fb-card-aanmelden {
    background: #e4e8d5;
	font-size: 14px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    padding: 28px;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}

.fb-card-aanmelden .fb-h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--fb-black);
    margin-bottom: 1rem;
}

.fb-card-text {
    font-size: 0.95rem; /* kleiner, rustiger */
    line-height: 1.55;
    color: var(--fb-black);
    opacity: 0.85;
    margin-bottom: 1.6rem;
}

.fb-btn {
    display: inline-block;
    background: var(--fb-olive);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.fb-btn:hover {
    background: #6b7a4b; /* iets donkerder olijfgroen */
}

