/* === DREAMY KONTAKTNÍ FORMULÁŘ === */

.dreamy-contact-form-3 .dreamy-form {
  max-width: 560px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-family: inherit;
}

/* Vstupní pole + SELECT */
.dreamy-contact-form-3 .dreamy-form input,
.dreamy-contact-form-3 .dreamy-form select,
.dreamy-contact-form-3 .dreamy-form textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  line-height: 1.4;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  margin-bottom: 20px;
  background: #ffffff;
  font-family: inherit;
}

/* SELECT – odstranění default stylu */
.dreamy-contact-form-3 .dreamy-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* Placeholder */
.dreamy-contact-form-3 .dreamy-form input::placeholder,
.dreamy-contact-form-3 .dreamy-form textarea::placeholder {
  color: #888888;
}

/* Focus stav */
.dreamy-contact-form-3 .dreamy-form input:focus,
.dreamy-contact-form-3 .dreamy-form select:focus,
.dreamy-contact-form-3 .dreamy-form textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Tlačítko */
.dreamy-contact-form-3 .dreamy-form button {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

/* Hover / active */
.dreamy-contact-form-3 .dreamy-form button:hover {
  background: #222222;
}

.dreamy-contact-form-3 .dreamy-form button:active {
  transform: scale(0.98);
}

/* Zprávy */
.dreamy-contact-form-3 .dreamy-form .ok,
.dreamy-contact-form-3 .dreamy-form .err,
.dreamy-contact-form-3 .dreamy-form .spam {
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}

/* === RESPONZIVITA === */

/* Tablet */
@media (max-width: 768px) {
  .dreamy-contact-form-3 .dreamy-form {
    padding: 24px;
  }

  .dreamy-contact-form-3 .dreamy-form input,
  .dreamy-contact-form-3 .dreamy-form select,
  .dreamy-contact-form-3 .dreamy-form textarea,
  .dreamy-contact-form-3 .dreamy-form button {
    font-size: 17px;
    padding: 16px;
  }
}

/* Mobil */
@media (max-width: 480px) {
  .dreamy-contact-form-3 .dreamy-form {
    padding: 20px;
    margin: 30px 15px;
  }

  .dreamy-contact-form-3 .dreamy-form input,
  .dreamy-contact-form-3 .dreamy-form select,
  .dreamy-contact-form-3 .dreamy-form textarea,
  .dreamy-contact-form-3 .dreamy-form button {
    font-size: 18px;
    padding: 18px;
  }
}