.contact-section {
  background: #fff; /* Lichte achtergrond */
  color: #333;
  padding: 50px 20px;
  text-align: center;
}

.contact-section .section-title {
  font-size: 2.5rem;
  color: #34495e;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 10px auto 40px auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left; /* Zorg dat labels/velden op één lijn staan */
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2575fc; /* Blauw accent bij focus */
  box-shadow: 0 0 5px rgba(37, 117, 252, 0.3);
}

.btn-submit {
  background: #2575fc; /* Zelfde blauw accent */
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
  background: #1e63d8;
  transform: translateY(-3px);
}
.discord-contact {
  margin-top: 40px;
  text-align: center; /* In het midden onder het formulier */
}
/* Zorg dat .contact-section al achtergrond en tekstkleur heeft,
   waarschijnlijk in je styles.css:
   .contact-section { background: #fff; color: #333; ... }
*/

/* Discord-info kop */
.discord-info {
  margin-top: 40px;     /* ruimte boven de Discord-sectie */
  text-align: center;   /* centreer tekst en box */
}

.discord-info h3 {
  font-size: 1.8rem;
  color: #34495e;
  margin-bottom: 10px;
}

/* Klikbare box */
.discord-box {
  background-color: #5865f2; /* Discord-blauw */
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none; /* Tekst niet selecteerbaar bij klikken */
  margin-top: 15px;
}

.discord-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.discord-box p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
