/* ==================================
   Varsovian - Report a Problem (Deluxe + Focused)
   ================================== */

body {
  font-family: "EB Garamond", serif;
  background: radial-gradient(circle at center, #fdfdfd 0%, #f6f6f6 100%);
  color: #222;
  margin: 0;
  padding: 0;
}

article {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: radial-gradient(ellipse at center, #ffffff 60%, #f2f2f2 100%);
  position: relative;
}

/* Vignette */
article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 70%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}

/* Form container */
.form-container {
  background: #fff;
  border: 2px double #ccc;
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  padding: 60px 70px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Corner accents */
.form-container::before,
.form-container::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid #ddd;
  border-radius: 12px;
  pointer-events: none;
}
.form-container::before {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
}
.form-container::after {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
}

/* Headings */
.form-container h2 {
  font-family: "Cormorant Upright", serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
}

.form-container h2::after {
  content: "";
  display: block;
  width: 110px;
  margin: 10px auto 0;
  border-bottom: 3px double #a11; /* deep muted red accent */
  opacity: 0.65;
}

.form-container p {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  margin-bottom: 35px;
  color: #444;
}

/* Labels */
form label {
  display: block;
  text-align: left;
  font-family: "Asul", sans-serif;
  margin-bottom: 8px;
  margin-top: 22px;
  font-size: 0.95rem;
  color: #333;
}

/* Required field indicator */
form label::after {
  content: " *";
  color: #a11;
  font-weight: bold;
}

/* Inputs + Textareas with crosshatch */
form input,
form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #bbb;
  border-radius: 12px;
  background: #fafafa;
  font-size: 1.05rem;
  font-family: "Lato", sans-serif;
  transition: all 0.35s ease;
  margin-top: 5px;

  background-image: repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.015),
      rgba(0, 0, 0, 0.015) 6px,
      transparent 6px,
      transparent 12px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(0, 0, 0, 0.015),
      rgba(0, 0, 0, 0.015) 6px,
      transparent 6px,
      transparent 12px
    );
}

form textarea {
  min-height: 140px;
}

form input:focus,
form textarea:focus {
  border-color: #a11; /* red accent focus */
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 12px rgba(160, 20, 20, 0.2);
}

/* Submit button - urgent but refined */
button.submit {
  margin-top: 40px;
  padding: 16px 38px;
  background: linear-gradient(145deg, #611, #a11);
  color: #fff;
  border: 1px solid #500;
  border-radius: 14px;
  font-size: 1.05rem;
  font-family: "Asul", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 3px rgba(255,255,255,0.2),
              inset 0 -2px 4px rgba(0,0,0,0.4),
              0 8px 22px rgba(0, 0, 0, 0.25);
}

button.submit:hover {
  background: linear-gradient(145deg, #500, #800);
  transform: translateY(-3px);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.15),
              inset 0 -2px 3px rgba(0,0,0,0.5),
              0 10px 26px rgba(0, 0, 0, 0.35);
}

/* Response message */
#responseMessage {
  margin-top: 25px;
  font-size: 0.95rem;
  font-style: italic;
  color: #a11;
}

/* Links in this form */
.form-container a {
  color: #a11;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.3s ease;
}
.form-container a:hover {
  border-bottom: 1px solid #a11;
}

/* Responsiveness */
@media (max-width: 768px) {
  .form-container {
    padding: 35px 25px;
  }
  .form-container h2 {
    font-size: 2rem;
  }
}
