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

.dreamy-contact-form-2 .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 */
.dreamy-contact-form-2 .dreamy-form input {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  line-height: 1.4;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  margin-bottom: 20px;
  color: #111111;
  background: #ffffff;
}

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

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

/* Tlačítko */
.dreamy-contact-form-2 .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-2 .dreamy-form button:hover {
  background: #222222;
}

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

/* Zpráva po odeslání */
.dreamy-contact-form-2 .dreamy-message {
  margin-top: 22px;
  font-size: 18px;
  color: #000000;
  text-align: center;
}

/* === RESPONZIVITA === */

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

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

/* Mobil – extra čitelné */
@media (max-width: 480px) {
  .dreamy-contact-form-2 .dreamy-form {
    padding: 20px;
    margin: 30px 15px;
  }

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