/* website_frontend/css/contact.css */

/* Form layout matching site style */
.contact-form-shell {
  max-width: 980px;
  margin: 0 auto;
}

.contact-form-header .contact-alert {
  margin-top: 10px;
  font-weight: 600;
}

.contact-alert.is-error { color: rgba(185, 28, 28, 0.92); }
.contact-alert.is-success { color: rgba(21, 128, 61, 0.92); }

.contact-form {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-weight: 700;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.84);
}

.contact-field input,
.contact-field textarea {
  font-family: inherit;
  font-size: 16px;
  border: 2px solid rgba(15, 23, 42, 0.28);
  background: #fff;
  padding: 14px 16px;
  border-radius: 999px;
  outline: none;
  transition: border-color 150ms ease;
}

.contact-field textarea {
  border-radius: 24px;
  min-height: 170px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(15, 23, 42, 0.55);
}

.contact-message {
  margin-top: 16px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* =========================
   Contact info + map (match site)
   ========================= */
.contact-info-title {
  color: var(--temple-maroon);
}
.contact-info-label {
  color: rgba(15, 23, 42, 0.65);
}
.contact-info-section {
  /* match warm sections instead of cool grey */
  background: transparent;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 28px;
  align-items: stretch;
}

/* left panel card look like other site cards */
.contact-info-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(123, 31, 27, 0.18);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(45, 28, 16, 0.10);
  padding: 22px;
}

/* Heading style like other section titles */
.contact-info-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 800;
  color: var(--temple-maroon);
  letter-spacing: 0;
}

/* spacing between blocks */
.contact-info-block {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-info-block:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* Label: less “shouty”, closer to site eyebrow style */
.contact-info-label {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.62);
}

/* Value: softer, readable */
.contact-info-value {
  margin: 0;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.84);
  line-height: 1.65;
}

/* Links should match site accent */
.contact-info-value a {
  color: var(--temple-maroon);
  text-decoration: none;
  font-weight: 700;
}

.contact-info-value a:hover {
  text-decoration: underline;
}

/* Map card matches panel styling */
.contact-map {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(123, 31, 27, 0.18);
  box-shadow: 0 20px 50px rgba(45, 28, 16, 0.10);
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 360px;
}

/* Responsive */
@media (max-width: 980px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact info + map section */

/* .contact-info-section {
  background: rgba(15, 23, 42, 0.08);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 22px;
  align-items: stretch;
}

.contact-info-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  margin: 0 0 8px;
}

.contact-info-block {
  margin-top: 22px;
}

.contact-info-label {
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.78);
  margin: 0 0 8px;
}

.contact-info-value {
  margin: 0;
  color: rgba(15, 23, 42, 0.86);
  font-weight: 600;
  line-height: 1.6;
}

.contact-info-value a {
  color: inherit;
  text-decoration: none;
}

.contact-info-value a:hover {
  text-decoration: underline;
}

.contact-map {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.15);
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 360px;
} */

/* Responsive */
/* @media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
} */
