/* Contact page specific styles for Cluck & Care */

/* Banner adjustments: use a slightly shorter hero for contact page */
.contact-hero-section {
  height: 70vh;
  background: l;
}

/* Contact info grid */
.contact-info-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 60px;
}
a {
  text-decoration: none;
  color: inherit;
}
.contact-info-item {
  flex: 1 1 calc(33.333% - 24px);
  background-color: var(--bg-colors--black-gray);
  border-radius: var(--_border-radius---border-radius-20);
  padding: 32px;
  color: var(--text-colors--light-gray);
  text-align: center;
}

.contact-heading {
  font-size: var(--_typography---text-size--text-extra-medium);
  line-height: var(--_typography---text-line-height--text-extra-medium-line-height);
  margin-bottom: 12px;
  color: var(--text-colors--white);
  font-weight: 600;
}
.w100h0 {
  width: 100%;
  height: 0px;
} 
.contact-text {
  font-size: var(--_typography---paragraph-size--paragraph-medium);
  line-height: var(--_typography---paragraph-line-height--paragraph-medium-line-height);
  color: var(--text-colors--medium-gray);
}

@media screen and (max-width: 991px) {
  .contact-info-item {
    flex: 1 1 calc(50% - 24px);
  }
}

@media screen and (max-width: 767px) {
  .contact-info-item {
    flex: 1 1 100%;
  }
}

/* Contact form styling */
.contact-form-section {
  padding-top: var(--_section-padding---section-padding--section-padding-120);
  padding-bottom: var(--_section-padding---section-padding--section-padding-120);
  background-color: var(--bg-colors--cream);
}

.contact-form-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--bg-colors--black);
  border-radius: var(--_border-radius---border-radius-16);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-family: var(--_fonts---inter);
  color: var(--text-colors--light-gray);
  font-size: var(--_typography---text-size--text-helper);
  line-height: var(--_typography---text-line-height--text-helper-line-height);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: var(--_border-radius---border-radius-8);
  border: 1px solid var(--line-colors--very-dark-gray);
  background-color: var(--bg-colors--black-gray);
  color: var(--text-colors--light-gray);
  font-family: var(--_fonts---inter);
  font-size: var(--_typography---paragraph-size--paragraph-medium);
  line-height: var(--_typography---paragraph-line-height--paragraph-medium-line-height);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-colors--medium-gray);
  font-size: var(--_typography---text-size--text-helper);
  line-height: var(--_typography---text-line-height--text-helper-line-height);
}

.privacy a {
  color: var(--bg-colors--orange);
  text-decoration: underline;
}

.form-button {
  border-radius: var(--_border-radius---border-radius-100);
  background-color: var(--bg-colors--orange);
  color: var(--text-colors--white);
  padding: 16px 32px;
  font-size: var(--_typography---text-size--text-helper);
  line-height: var(--_typography---text-line-height--text-helper-line-height);
  font-weight: 600;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.form-button:hover {
  opacity: 0.9;
}

.form-success {
  margin-top: 20px;
  color: var(--bg-colors--orange);
  font-family: var(--_fonts---inter);
  font-size: var(--_typography---text-size--text-helper);
  line-height: var(--_typography---text-line-height--text-helper-line-height);
}