/* contact.css */
.contact-main {
  min-height: calc(100vh - 86px);
  display: flex;
  flex-direction: column;
  padding-top: 86px;
}

.contact-options {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 15vh 20px 0;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0 12px;
  border-bottom: 2px solid rgba(51, 51, 51, 0.25);
  text-decoration: none;
  color: #333;
  text-align: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(20px, 3vw, 38px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -2px;
  text-transform: capitalize;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
  opacity: 0.7;
  border-color: rgba(51, 51, 51, 0.86);
}

.contact-link svg {
  width: 54px;
  height: auto;
  color: rgba(51, 51, 51, 0.86);
  transition: transform 0.2s ease;
}

.contact-link:hover svg {
  transform: translateX(10px);
}

/* Site footer styles are now global in styles.css */

@media (max-width: 768px) {
  .contact-main {
    min-height: calc(100vh - 54px);
    padding-top: 54px;
  }
  .contact-link {
    padding: 18px 0 10px;
  }
  .contact-link svg {
    width: 40px;
  }
}

/* Partnership Form */
.partnership-form {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.form-row input,
.form-row textarea {
  flex: 1;
  width: 100%;
  background-color: #c4c8c5; /* Slight variance to pop out of var(--bg) */
  border: none;
  border-radius: 6px;
  padding: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: background-color 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-row input:focus,
.form-row textarea:focus {
  background-color: #d1d5d2;
}

.form-row textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #333;
  color: #fff;
  font-family: "Geist Mono", monospace;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: 4px;
}

.submit-btn:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}
