
/* ============================================================
   BASE RESET
============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--boulevard-soft-cream);
  font-family: var(--font-body);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h2 {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}

span {
  color: var(--boulevard-aqua-green);
}

/* ============================================================
   PAGE SPACING
============================================================ */
.contact {
  padding-top: 6rem;   /* matches other pages */
  padding-left: 9%;
  padding-right: 9%;
  padding-bottom: 6rem;
}

/* ============================================================
   CONTACT FORM — GOLD PANEL CONTAINER
============================================================ */
.contact .contact-form {
  background: var(--boulevard-warm-gold);
  padding: 2.5rem 2rem;
  padding-top: 3rem !important;   /* was 2.5rem */
  padding-bottom: 3rem !important;
  border: 3px solid var(--boulevard-aqua-green);
  border-radius: 12px;
  max-width: 60rem;
  margin: 0 auto 4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  text-align: center;
}

/* ============================================================
   OPTION A — Stronger Blue Halo (Balanced Depth)
   ============================================================ */

.contact {
  background: radial-gradient(
      circle at center,
      rgba(13, 25, 163, 0.32) 0%,      /* stronger inner glow */
      rgba(13, 25, 163, 0.18) 26%,     /* more presence */
      rgba(13, 25, 163, 0.08) 50%,     /* smoother taper */
      rgba(244, 228, 193, 1) 100%      /* soft cream outer */
  );
  padding: 10rem 9% 6rem;
}

/* ============================================================
   INPUT BLOCKS — WHITE INPUTS, BLACK TEXT
============================================================ */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.5rem;
  background: var(--white);
  color: var(--black);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.2);
  margin: 10px 0;
}

/* Two-column layout (Full Name / Email, etc.) */
.contact-form .input-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-form .input-box input {
  width: 49%;
}

/* ============================================================
   TEXTAREA
============================================================ */
.contact-form textarea {
  min-height: 14rem;
  resize: none;
}

/* ============================================================
   “OTHER SUBJECT” — DEFAULT HIDDEN
============================================================ */
#otherSubject {
  display: none;
  opacity: 0;
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 1.5rem;
  font-size: 1.5rem;
  margin-top: 1rem;
  transition: opacity 0.25s ease;
}

#otherSubject.show {
  display: block;
  opacity: 1;
}

/* ============================================================
   SEND BUTTON
============================================================ */
.contact-form .btn {
  background: linear-gradient(
    to bottom right,
    var(--boulevard-warm-gold),
    rgba(228,197,128,0.9)
  );
  color: var(--black);
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  box-shadow:
    0 0 12px rgba(228,197,128,0.5),
    0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
}

.contact-form .btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 0 20px rgba(228,197,128,0.8),
    0 8px 30px rgba(0,0,0,0.6);
}

/* ============================================================
   RESPONSIVE FIXES
============================================================ */
@media (max-width: 600px) {
  .contact-form .input-box input {
    width: 100% !important;
  }
}

/* ============================================================
   STANDARDISING FONT FOR THE FORM TEXT
============================================================ */
.contact-form,
.contact-form label,
.contact-form p,
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
}

/* Contact-specific modal border colours */
.booking-modal-content.contact-error {
  border-color: var(--boulevard-warm-gold) !important;
}

.booking-modal-content.contact-success {
  border-color: var(--boulevard-aqua-green) !important;
}
