* {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #f6efe8; /* warm sand tone */
}

#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  background: rgba(72, 38, 28, 0.65); /* terracotta-tinted dark overlay */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.contact-form {
  background: #f3dfd2; /* soft clay */
  padding: 2rem;
  border-radius: 14px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 12px 30px rgba(60, 28, 18, 0.25);
  border: 1px solid #d2a08e;
}

.contact-form h1 {
  margin-bottom: 1rem;
  text-align: center;
  color: #7a4333; /* deep terracotta */
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #c98d78;
  background: #fff7f3;
  color: #5a2f24;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c96f53;
  box-shadow: 0 0 0 3px rgba(201, 111, 83, 0.2);
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #c96f53, #a6523b);
  color: white;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #b95f45, #8f432f);
  transform: translateY(-1px);
}

#status {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: #7a4333;
}
