body {
  margin: 0;
  padding: 0;
  background-color: #555;
  font-family: Verdana, sans-serif;
}

h1 {
  font-size: 60px;
  font-family: Brush Script MT, cursive;
  color: #BBA53D;
}

h2 {
  font-size: 30px;   
  font-family: Verdana, sans-serif;
  color: #bba53d;
}

p {
  padding: 20px;
  font-size: 14px;
  font-family: Verdana, sans-serif;
  text-align: justify;
  line-height: 25px;
}

header.home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

header {
  position: relative;
  height: auto;
  overflow: hidden;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  padding: 0 20px;
  height: 120px;
  border-bottom: 3px solid #BBA53D;
}

.logo img {
  height: 90px;
  width: auto;
}

.nav-links a {
  color: #BBA53D;
  text-decoration: none;
  margin-left: 25px;
  font-size: 40px;
  padding: 10px;
  transition: 0.3s;
  font-family: Brush Script MT, cursive;
}

.nav-links a:hover {
  background: #111;
  border-radius: 8px;
}

/* dit is de code voor de boxen op de pagina */
.reviews-header {
  padding: 40px;
  color: white;
}

.rating-overview {
  margin-top: 20px;
}

.score {
  font-size: 60px;
  color: #BBA53D;
}

.stars {
  color: #BBA53D;
  font-size: 22px;
}

.reviews-count {
  display: block;
  color: #ccc;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px; 
  padding: 40px;
  overflow: visible; 
}

.review-card {
  background: #e0e0e0;
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #BBA53D;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; 
}

.review-card:hover {
  transform: scale(1.05);
  z-index: 10; 
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.review-card h3 {
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.review-card span {
  font-size: 14px;
  color: #555;
}

.review-card p {
  margin: 10px 0;
  color: #222;
  padding: 0; 
}

article {
  flex: 3;
  background-color: #555;
  padding: 10px;
}

footer {
  background-color: #333;	
  padding: 5px;
  text-align: center;
  color: #BBA53D;
}

@media (max-width: 768px) {
  .reviews-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .nav-links a {
    font-size: 28px;
    margin-left: 15px;
    padding: 6px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  p {
    font-size: 12px;
    padding: 10px;
  }
	
}