/* contact.css – FULL UPDATED VERSION */

main {
  background-image: linear-gradient(to bottom, rgba(244,216,11,0.8), aqua);
}

/* Center container - max ~70% on large screens */
.contact-container {
  max-width: 900px;        /* ~70% width on full HD screens */
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo – REMOVED FROM HERE (no longer used in contact form) */
/* .contact-header-logo was deleted on purpose */

/* Always vertical fields */
.contact-form label {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin-bottom: 2px;
  position: relative;
  font-size:16pt;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: white !important;
  padding: 14px 50px 14px 14px !important;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  font-family: 'Bubblegum Sans', sans-serif;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .fa {
  position: absolute;
  right: 15px;
  top: 44px;
  color: #2e76fc;
  font-size: 22px;
  pointer-events: none;
}

.contact-form .fa-scroll { 
  top: 18px; 
}

/* Submit button from bookstore */
.btn {
  font-family: 'Joti One', sans-serif;
  padding: 16px 36px;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 180px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn:hover {
  transform: scale(1.15) rotate(4deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.btn-pink { background: rgba(255,173,91); }

/* Submit button */
.submit-wrapper {
  text-align: center;
  margin-top: 0px;
}
/*
.submit-btn {
  background: linear-gradient(90deg, #ff5f6d, #ffc371, #fffb8c, #a0e7e5, #4facfe);
  color: #222;
  font-family: 'Bubblegum Sans', sans-serif;
  font-size: 24px;
  font-weight: bold;
  padding: 16px 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
  transition: all 0.3s;
  width: 90%;
  max-width: 460px;
}
*/

/* Original responsive adjustments (kept intact) */
@media (max-width: 1200px) {
  .contact-container { max-width: 800px; }
}

@media (max-width: 992px) {
  .contact-container { max-width: 700px; }
}

@media (max-width: 768px) {
  .contact-container { 
    max-width: 100%;
    padding: 0 15px;
  }
  .submit-btn { font-size: 21px; }
}

@media (max-width: 480px) {
  h1 { font-size: 38px !important; }
  .contact-form input,
  .contact-form textarea { font-size: 16px; }
  .submit-btn { font-size: 19px; }
}