body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #e6f7f9;
  color: #222;
}

html {
      scroll-behavior: smooth; 
    }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hidden {
  display: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffffff;
  padding: 0 0 0 2%;
  border-bottom: 1px solid #d4e115;
  border-bottom-left-radius: 10px;
  width: 88%;
  margin-left: auto;
  font-weight: bold;
  top: 0;
  z-index: 1000;
  position: relative;
}

.navbar-left {
  flex: 0 0 auto;
}

.navbar-left .logo img {
  height: 50px;
  padding: 10px;
}

.navbar-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 40px;
  margin-right: auto;
  position: relative;
  width: calc(100% - 160px);
}

.navbar-right {
  flex: 0 0 auto;
  margin-right: 3%;
}

.navbar-right .donate-btn {
  background-color: #d4e115;
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.navbar-right .donate-btn:hover {
  background-color: #c2cb13;
}

.nav-divider {
  border: none;
  border-top: 0.01px solid #363131;
  margin: 5px 0;
  position: absolute;
  left: 0;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(98%);
}

.top-nav,
.bottom-nav {
  display: flex;
  gap: 30px;
  padding:5px;
}

.top-nav a,
.bottom-nav a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.top-nav a .icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.hero {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
  margin: 0;
  padding: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding-left: 0;
}

.highlight-box {
  margin: 0;
  background-color: #d4e115;
  padding: 12px 16px;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 0;
  width: fit-content;
  margin-top: 200px;
  text-decoration: solid;
  border-radius:0px 10px 10px 0px;
}

.highlight-box2 {
  background-color: #fff;
  padding: 25px 20px;
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
  border-bottom-right-radius: 10px;
  margin: 0;
  width: fit-content;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.dog-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: -290px auto 60px;
  position: relative;
  z-index: 10;
}

.dog-box {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #e6f7f9;
  border-radius: 8px;
  max-width: 300px;
  flex: 1 1 300px;
  overflow: hidden;
  border-bottom: solid #d4e115 2px;
  text-align: center;
  transition: transform 0.2s ease;
}

.dog-box:hover {
  transform: scale(1.03);
}

.dog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  color: white;
}

.donate-btn-overlay {
  display: inline-block;
  padding: 6px 14px;
  background-color: #d4e115;
  color: black;
  text-decoration: none;
  font-weight: bold;
  border-top-right-radius: 1rem;
  margin-bottom: 10px;
}

.new {
  background: white;
  width: 70%;
  display: flex;
  gap: 30px;
  padding: 20px;
  margin: 50px auto;
  border-radius: 15px;
  border-bottom: 1px #d4e115 solid;
}

.new .left,
.new .right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 15px;
}
.new .right{
  margin-top:50px;
}

.new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.2s ease;
}

.new img:hover {
  transform: scale(1.01);
}

.new .left {
  flex: 2;
  font-size: 1.3rem;
  color:rgb(0,0,0)
}

.new .right {
  flex: 1;
}

.vacatures {
  background: white;
  width: 70%;
  display: flex;
  gap: 30px;
  padding: 20px;
  margin: 50px auto;
  margin-top: 120px;
  border-radius: 15px;
  border-bottom: 1px #d4e115 solid;
  align-items: stretch;
  flex-wrap: wrap;
}

.vacatures .left,
.vacatures .right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vacatures .left {
  flex: 2;
}

.vacatures .left .image-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 15px; 
  overflow: hidden;
  position: relative;
}

.vacatures .left .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px; 
  transition: transform 0.2s ease;
}

.vacatures .left .image-wrapper img:hover {
  transform: scale(1.01);
}

.vacatures .left .top-left-text {
  color: #000;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 3px;
  margin: 10px 0 0 10px;
  align-self: flex-start;
}

.vacatures .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top:40px;
}

.vacatures .right img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.2s ease;
}

.vacatures .right img:hover {
  transform: scale(1.01);
}

.donate-section {
  display: flex;
  justify-content: center;
  margin: 100px auto;
}

.donate-box {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
  text-align: center;
  border-bottom: 3px solid #d4e115;
}

.donate-box h1 {
  color: #f07b21;
  margin-bottom: 10px;
}

.donate-box h2 {
  color: #333;
  margin-top: 20px;
}
.donate-image {
  width: 200px;
  margin: 20px auto;
}

.option-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.option:hover {
  background-color:#f07b21;
  color:white;
}

.option {
  padding: 10px 20px;
  border: 2px solid #f07b21;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  font-weight: bold;
  color: #f07b21;
  transition: all 0.3s ease;
}

.option.active {
  background: #f07b21;
  color: white;
}

.amounts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.amount {
  padding: 10px 20px;
  border: 2px solid #f07b21;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  background: white;
  transition: all 0.3s ease;
}

.amount:hover {
  background-color:#f07b21;
  color:white;
}

.amount.active {
  background: #f07b21;
  color: white;
  border-color: #f07b21;
}

input[type="number"],
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 6px 0 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  display: block;
  width: 100%;
  padding: 14px;
  background: #f07b21;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background: #d36c1e;
}

.button-row {
  display: flex;
  gap: 10px;
}

.button-row button {
  flex: 1;
}
.reviews-section {
  padding: 60px 20px;
}

.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: #cfebee;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.reviews-container h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
  border-bottom: 3px solid #d4e115;
  display: inline-block;
  padding-bottom: 10px;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review-box {
  background: #fefefe;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #d4e115;
  margin-bottom: 10px;
  object-fit: cover;
}

.review-box p {
  font-style: italic;
  margin-bottom: 10px;
}

.review-box span {
  font-weight: bold;
  color: #333;
}

.review-form-container {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.review-form-container h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #333;
}

#reviewForm input,
#reviewForm textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
}

#reviewForm button {
  background-color: #f07b21;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

#reviewForm button:hover {
  background-color: #d36c1e;
}


.about-box {
  background: #cfebee;
  width: 70%;
  padding: 30px;
  margin: 50px auto;
  border-radius: 15px;
  border-bottom: 1px #d4e115 solid;
  text-align: center;
}
.webshop-box {
  background: #cfebee;
  width: 70%;
  padding: 30px;
  margin: 50px auto;
  border-radius: 15px;
  border-bottom: 1px #d4e115 solid;
  text-align: center;
}

.webshop-box h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
  border-bottom: 3px solid #d4e115;
  display: inline-block;
  padding-bottom: 10px;
}

.webshop-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-top: 30px;
}

.webshop-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.webshop-item:hover {
  transform: scale(1.05);
}

.webshop-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 10px;
}

.webshop-item p {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  margin: 0;
}

.rating-container {
  margin-bottom: 15px;
  text-align: center;
}

.stars {
  display: inline-block;
}

.stars span {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.stars span.hover,
.stars span.selected {
  color: gold;
}
.contact-box {
  background: #cfebee;
  width: 70%;
  padding: 30px;
  margin: 50px auto;
  border-radius: 15px;
  border-bottom: 1px #d4e115 solid;
  text-align: center;
}
.social-media-box {
  display: flex;
  flex-direction:column;
  align-items: center;
  gap: 15px; 
  background: #cfebee;
  width: 70%;
  padding: 30px;
  margin: 50px auto;
  border-radius: 15px;
  border-bottom: 1px #d4e115 solid;
  text-align: center;
}
.resultaten-box {
  background: #cfebee;
  width: 70%;
  padding: 30px;
  margin: 50px auto;
  border-radius: 15px;
  border-bottom: 1px #d4e115 solid;
  text-align: center;
}
.resultaten-box h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
    border-bottom: 3px solid #d4e115;
    display: inline-block;
    padding-bottom: 10px;
}

.social-media-box a img {
  width: 40px; 
  height: 40px;     
  object-fit: contain; 
  border-radius: 50%; 
}
/* Knop stijl */
#viewLocationsBtn {
  padding: 10px 20px;
  background-color: #d4e115;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 16px;
  transition: background-color 0.3s;
}
#viewLocationsBtn:hover {
  background-color: #d4d233;
}

/* Grid voor locaties */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Kaartjes */
.location-card {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.location-card img {
  width: 50px;
  margin-bottom: 10px;
}
.location-card h3 {
  margin: 5px 0;
  font-size: 18px;
}
.location-card p {
  font-size: 14px;
  color: #555;
}
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.footer {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  font-weight: normal;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.footer-column {
  padding: 0 20px;
  border-right: 1px solid #a0c5ca;
}

.footer-column:last-child {
  border-right: none;
}

.footer-column h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.footer-column a {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-column a:hover {
  text-decoration: underline;
}
.keurmerk {
  display: inline-block; 
  margin-top: 2px; 
}

.keurmerk a {
  display: inline-block; /* Klikbaar gebied = alleen de afbeelding */
}

.keurmerk img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-icons {
  display: flex;
  gap: 1px;
  margin-top: 0px;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;  
  height: 40px;   
  border-radius: 50%; 
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  background-color: transparent; /* geen achtergrond */
}

.social-icons a img,
.social-icons a svg {
  width: 22px; 
  height: 22px;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.2s ease;
  filter: brightness(0) saturate(100%) invert(0%); /* standaardkleur zwart */
}

/* Hover: lichtblauw */
.social-icons a:hover img,
.social-icons a:hover svg {
  filter: brightness(0) saturate(100%) invert(69%) sepia(17%) saturate(2733%) hue-rotate(174deg) brightness(96%) contrast(87%);
}

.footer .social-icons img {
  max-height: 32px; 
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-badges {
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #e6f7f9;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
.arrow-up {
  position: absolute;   
  top: 0;              
  right: 0;            
  width: 50px;          
  height: 50px;           
  background-color: #d4e115; 
  border-bottom-left-radius:5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 100;
}

.arrow-up img {
  width: 20px;  /* pas de grootte van de pijl aan */
  height: 20px;
}
.arrow-up:hover{
  background-color:solid black;

}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    width: 100%;
    border-bottom-left-radius: 0;
    padding: 15px;
  }

  .nav-divider {
    position: static;
    width: 100%;
    transform: none;
  }

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

  .hero-text {
    max-width: 100%;
    align-items: center;
  }

  .new,
  .vacatures {
    flex-direction: column;
    width: 90%;
  }
}
@media (max-width: 950px) {
  .review-list {
    flex-direction: column;
    align-items: center;
  }
}
