/*
Theme Name: Breakdance Zero Child
Theme URI: https://breakdance.com/zero-theme
Author: VIDIAN Online
Author URI: https://vidianonline.nl/
Description: Entirely disables the WordPress theme system and lets you design every part of your site with Breakdance, while keeping other theme functionality like templates overrides and functions.php.
Version: 1.0.0
Tested up to: 5.9
Requires PHP: 7
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: breakdance-child
Template: breakdance-zero

Requires Breakdance to be installed.
/*--------------------------------------------------------------
/* ============================================
   Content form (wpcf7) — gestijld naar footer-form
   Kleurstelling omgekeerd: donker op licht
   ============================================ */

/* Labelttekst verbergen via font-size: 0 — input krijgt eigen size terug */
.wpcf7-form label {
  display: block;
  font-size: 0;
  line-height: 0;
}

/* br binnen label ook weghalen */
.wpcf7-form label br {
  display: none;
}

/* Velden zichtbaar houden */
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  position: static;
}

/* Input velden */
.wpcf7-form .wpcf7-form-control.wpcf7-text,
.wpcf7-form .wpcf7-form-control.wpcf7-email {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #252525;
  border-radius: 8px;
  color: #252525;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 8px;
  width: 100%;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
}

/* Placeholder kleur */
.wpcf7-form .wpcf7-form-control.wpcf7-text::placeholder,
.wpcf7-form .wpcf7-form-control.wpcf7-email::placeholder {
  color: #252525;
  opacity: 1;
}

/* Focus state */
.wpcf7-form .wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form .wpcf7-form-control.wpcf7-email:focus {
  background-color: transparent;
  border-bottom-color: #252525;
  outline: none;
  box-shadow: #8C0000 0 0 2px;
}

/* Submit button */
.wpcf7-form .wpcf7-form-control.wpcf7-submit {
  background-color: #8C0000;
  border: 2px solid #8C0000;
  border-radius: 3px;
  color: #ffffff;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  -webkit-appearance: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Submit button hover */
.wpcf7-form .wpcf7-form-control.wpcf7-submit:hover {
  background-color: transparent;
  color: #8C0000;
}