/* =============================================
   contact.css — Contact Us page styles
   ============================================= */

/* Page wrapper */
.contact-page {
  min-height: 100vh;
  background-color: #B4C0BE;
  display: flex;
  flex-direction: column;
}

/* ---- Hero ---- */
.contact-hero {
  position: relative;
  width: 100%;
  height: 42vh;
  min-height: 240px;
  max-height: 380px;
  overflow: hidden;
  background: #000;
}

.contact-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 50%, rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .contact-hero__overlay {
    padding: 3rem 4rem;
  }
}

.contact-hero__title {
  font-family: 'IvyJournal', serif;
  font-weight: 600;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.2;
  color: rgb(255, 255, 255);
  margin: 0;
  letter-spacing: -0.02em;
}

/* ---- Main content ---- */
.contact-main {
  flex: 1;
  width: 100%;
  background-color: #F2F3F4;
  padding: 2rem 1.5rem 3rem;
}

.contact-main-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-label {
  font-family: 'Muli', serif;
  font-weight: 600;
  font-size: 1rem;
  color: rgb(0, 68, 57);
  margin: 0 0 0.5rem;
}

.contact-text {
  font-family: 'Muli', serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(41, 41, 41);
  font-size: 20px;
  line-height: 34px;
  margin: 0;
}

.contact-link {
  font-family: 'Muli', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: rgb(0, 68, 57);
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline;
}

.contact-link:hover {
  color: rgb(0, 90, 76);
}
