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

#contact {
  background-image: url('images/contact-bg.png');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 8px;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.info, .form {
  flex: 1 1 300px;
}

.info h3 {
  margin-top: 0;
}

.info ul {
  list-style: none;
  padding: 0;
}

.info a {
  color: #ff6b6b;
  text-decoration: none;
}

.info a:hover {
  text-decoration: underline;
}

form label {
  display: block;
  margin-bottom: 8px;
  margin-top: 16px;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin-bottom: 16px;
  background-color: #222;
  color: #f1f1f1;
}

form button {
  background-color: #ff6b6b;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #ff4d4d;
}
.background-wrapper {
  background-image: url('../images/achtergrond.png');
  background-attachment: fixed;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.background-wrapper section {
  background: rgba(0, 0, 0, 0.5);
  padding: 60px 0;
}


footer p.small {
  font-size: 0.8rem;
  color: #888;
}
/* Formulier hover-effect */
.form-effect input:focus,
.form-effect textarea:focus {
  border: 2px solid #ff4d4d;
  outline: none;
  background-color: #222;
  color: #fff;
}

/* Pictogrammen in contact-info */
#contact i {
  font-size: 1.3rem;
  color: #ff4d4d;
}

/* E-mail link netjes wit houden */
#contact a {
  color: #fff;
}

/* E-mail link hover effect */
#contact a:hover {
  color: #ff4d4d;
  text-decoration: underline;
}
/* Pulse animatie bij hover op de verzendknop */
.btn-danger:hover {
  animation: pulse 0.8s infinite alternate;
  background-color: #ff3333;
  border-color: #ff3333;
}

@keyframes pulse {
  from {
    transform: scale(1);
    box-shadow: 0 0 0px rgba(255, 77, 77, 0.7);
  }
  to {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.9);
  }
}
.portfolio-img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.portfolio-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.5);
}

.portfolio-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
