/* ===========================
   Contact – vaste 1200 layout
   =========================== */

/* Container met achtergrondvlek als bol */
.contact-vlek{
  position: relative;
  width: 80%;                       /* grootte van de bol binnen canvas */
  aspect-ratio: 1 / 1;              /* cirkel/bol verhouding */
  margin: 60px auto 120px;          /* centreren + ruimte eronder */
  padding: 6%;                      /* binnenruimte voor tekst */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: url('vlek-groen.png') center / contain no-repeat;
  box-sizing: border-box;
  overflow: visible;
}

/* Binnenblok met tekst/links */
.contact-info{
  max-width: 70%;        /* tekstkolom niet te breed */
  margin: 0 auto;
  font-size: clamp(36px, 3.8vw, 50px);
  line-height: 1.35;
}

.contact-info h1,
.contact-info h2{
  font-size: clamp(64px, 7vw, 98px);
  line-height: 1.05;
  margin: 0 0 8px;
}

/* Mailknop */
.mail-button{
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  transition: background .2s ease;
}
.mail-button:hover{ background: rgba(255,255,255,.1); }

/* Social icons */
.social-links a{
  font-size: 46px;
  color: #fff;
  margin: 0 10px;
  transition: opacity .2s ease;
}
.social-links a:hover{ opacity: .8; }

/* Basis form styles */
.contact-form{
  width: 100%;
  max-width: 420px;
  margin: 18px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input,
.contact-form textarea{
  padding: 10px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
}
.contact-form textarea{ min-height: 100px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: #fff; opacity: .85; }
.contact-form button{
  padding: 10px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s ease;
}
.contact-form button:hover{ background: rgba(255,255,255,.1); }
