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

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

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, header {
    position: relative;
    height: 100vh;
    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;
}

article {
    flex: 3;
    background-color: #333;
    padding: 10px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 15px;
}

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

/* dit is de stijl voor de form */
.contact-form {
    width: 90%;
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    border-radius: 15px;
    background: rgba(83, 83, 83, 0.9);
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.input {
    width: 100%;
    border: solid 1.5px #BBA53D;
    border-radius: 1rem;
    background: none;
    padding: 1rem;
    font-size: 1rem;
    color: #f5f5f5;
    transition: border 150ms cubic-bezier(0.4,0,0.2,1);
}

.user-label {
    position: absolute;
    left: 15px;
    top: 0;
    color: #BBA53D;
    pointer-events: none;
    transform: translateY(1rem);
    transition: 150ms cubic-bezier(0.4,0,0.2,1);
    background-color: transparent;
    padding: 0;
}

.input:focus,
.input:valid {
    outline: none;
    border: 1.5px solid #bba53d;
}

.input:focus ~ .user-label,
.input:valid ~ .user-label {
    transform: translateY(-50%) scale(0.8);
    background-color: #212121;
    padding: 0 .2em;
    color: #2196f3;
}

.contact-form select {
    padding: 1rem;
    border-radius: 1rem;
    border: 1.5px solid #9e9e9e;
    background: none;
    color: #f5f5f5;
    font-size: 1rem;
}

/* dit is de stijl voor de radio knoppen */
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.radio-group label,
.checkbox-group label {
    font-size: 14px;
}

.contact-form button {
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #BBA53D;
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    transform: scale(1.05);
    background: gold;
    box-shadow: 0 0 15px gold;
}

@media (max-width: 600px) {
    .nav-links a {
        font-size: 28px;
        margin-left: 10px;
    }

    .contact-form {
        width: 95%;
        padding: 20px;
    }
  
	h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

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