/* ── Contact Header ─────────────────────────────────── */
#contact-header {
  background-image: url("../images/site/flower-background.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  text-align: center;
  padding: 60px 1.5rem 50px;
}

#contact-header h1 {
  font-family: "Rosario", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--color-light);
  margin-bottom: 0;
}

/* ── Contact Content ────────────────────────────────── */
#contact-content {
  background-color: var(--color-dark);
  padding: 80px 0 90px;
}

/* ── Left column ────────────────────────────────────── */
#contact-content .col-lg-4 h2 {
  font-family: "Rosario", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-light);
  margin-bottom: 0.5rem;
  margin-top: 1.75rem;
}

#contact-content .col-lg-4 h2:first-child {
  margin-top: 0;
}

#contact-content p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.85rem;
  color: var(--color-light);
  line-height: 1.8;
  margin-bottom: 0;
}

#contact-content a {
  color: var(--color-light);
  text-decoration: underline;
  text-decoration-color: rgba(244, 247, 248, 0.5);
  text-underline-offset: 3px;
}

#contact-content a:hover {
  color: var(--color-hover);
  text-decoration-color: var(--color-hover);
}

#contact-content ul {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.85rem;
  color: var(--color-light);
  line-height: 1.8;
  padding-left: 1.25rem;
  margin-bottom: 0;
}

#contact-content ul li {
  margin-bottom: 0.15rem;
}

#contact-content .col-lg-4 h3 {
  font-family: "Rosario", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-light);
  margin-top: 2.5rem;
  margin-bottom: 0;
}

/* ── Form ───────────────────────────────────────────── */
.contact-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.contact-field label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.85rem;
  color: var(--color-light);
  margin-bottom: 0.35rem;
}

.contact-field input,
.contact-field textarea {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.85rem;
  color: var(--color-dark);
  background-color: var(--color-light);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  box-shadow: 0 0 0 2px rgba(244, 247, 248, 0.6);
}

.contact-field textarea {
  resize: vertical;
}

.btn-send {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-dark);
  background-color: var(--color-light);
  border: 1.5px solid var(--color-light);
  border-radius: 8px;
  padding: 0.4rem 1.75rem;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-send:hover {
  background-color: var(--color-hover);
  color: var(--color-dark);
  border-color: var(--color-hover);
}

/* ── Mobile stacking ────────────────────────────────── */
@media (max-width: 991.98px) {
  #contact-form {
    margin-top: 2.5rem;
  }
}
