/* ==========================================================================
   Contact form – MOBILE-FIRST
   Base = small screens; enhance with min-width
   ========================================================================== */

/* Global box-sizing for consistency (safe to add here if not site-wide) */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Form container */
.contact-form {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 750px;
  margin: 0 auto;
}

/* Labels & fields */
.contact-form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Submit button – more specific selector */
.contact-form button[type="submit"] {
  width: auto;
  display: inline-block;
  align-self: flex-start;
  padding: 8px 10px;
  font-size: 0.91rem;
  font-weight: bold;
  text-decoration: none;
  color: #f1aa62; /* bronze text */

  text-shadow: 
     -1px -1px 0 #330000,
      1px -1px 0 #330000,
     -1px  1px 0 #330000,
      1px  1px 0 #330000;

  background: linear-gradient(to bottom, #990000, #660000);
  border: 2px solid #330000;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);

  transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background: linear-gradient(to bottom, #cc6666, #990000);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Accessibility: visible focus states */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form button[type="submit"]:focus {
  outline: 3px solid #f1aa62;
  outline-offset: 2px;
}

/* === Enhanced Honeypot hiding ===
   Modern off-screen + clip method for better bot evasion (2026 style)
*/
.honeypot-field {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important; /* extra modern fallback */
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  border: 0 !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Direct Contact Card */
.contact-direct {
  background-color: rgba(173, 216, 230, 0.6);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-direct:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.contact-direct h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #2c2c2c;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.contact-direct .content-p {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-direct a {
  color: #3256cd;
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
  color: #CD7F32; 
}

/* Cards wrapper – vertical stack default */
.contact-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}

/* ==========================================================================
   Larger screens – progressive enhancements
   ========================================================================== */

@media (min-width: 768px) {
  /* Optional: side-by-side layout (still commented out to preserve your current stacking) */
  /*
  .contact-cards {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
  .contact-direct {
    margin-top: 0;
  }
  */
}