/* ==========================================================================
   Tribal Women Handicrafts — Contact Page Styles
   File: contact.css
   Place in: /wp-content/themes/your-child-theme/contact.css
   ========================================================================== */

#tribal-contact {
  font-family: Georgia, 'Times New Roman', serif;
  color: #3a2a1a;
  background: #fdf8f1;
}

#tribal-contact .tc-eyebrow {
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: 12px;
  color: #c98a3a;
  font-family: sans-serif;
}
#tribal-contact .tc-eyebrow.dark { color: #8b5a2b; }

/* ===== HERO ===== */
.tc-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5b2b1a url('../images/contact-banner.webp') center center / cover no-repeat;
  color: #fff5e1;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}
.tc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
}
.tc-hero-inner {
  position: relative;
  max-width: 800px;
}
.tc-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 18px 0;
  line-height: 1.15;
  font-weight: 400;
}
.tc-hero p {
  font-size: 1.15rem;
  opacity: .92;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== INFO STRIP ===== */
.tc-info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: -60px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}
.tc-info-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(91,43,26,.12);
  border-top: 4px solid #c98a3a;
  transition: transform .3s ease;
}
.tc-info-card:hover { transform: translateY(-6px); }
.tc-info-card .tc-icon { font-size: 2rem; margin-bottom: 10px; }
.tc-info-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: #5b2b1a;
}
.tc-info-card p {
  font-size: .92rem;
  color: #7a5c40;
  margin: 0;
  line-height: 1.6;
  font-family: sans-serif;
}

/* ===== FORM SECTION ===== */
.tc-form-section { padding: 100px 20px; }
.tc-form-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.tc-story h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 14px 0 20px;
  color: #5b2b1a;
  font-weight: 400;
}
.tc-story h2 em { color: #c98a3a; font-style: italic; }
.tc-story > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b4a2b;
}
.tc-highlights {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.tc-highlights li {
  padding: 14px 0 14px 30px;
  border-bottom: 1px dashed #e5c9a3;
  position: relative;
  font-family: sans-serif;
  font-size: .95rem;
  color: #5b2b1a;
}
.tc-highlights li::before {
  content: "◆";
  color: #c98a3a;
  position: absolute;
  left: 0;
  top: 14px;
}

/* ===== FORM ===== */
.tc-form-wrap {
  background: #fff;
  padding: 44px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(91,43,26,.1);
  border: 1px solid #f0e0c8;
}
.tc-form-wrap h2 {
  margin: 0 0 6px;
  color: #5b2b1a;
  font-size: 1.8rem;
}
.tc-form-sub {
  margin: 0 0 26px;
  color: #a07a52;
  font-family: sans-serif;
  font-size: .92rem;
}
.tc-form label {
  display: block;
  margin-bottom: 18px;
  font-family: sans-serif;
}
.tc-form label span {
  display: block;
  font-size: .82rem;
  letter-spacing: .05em;
  color: #8b5a2b;
  margin-bottom: 6px;
  font-weight: 600;
}
.tc-form input,
.tc-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #ead6b8;
  border-radius: 8px;
  background: #fdfaf4;
  font-size: .95rem;
  font-family: inherit;
  color: #3a2a1a;
  transition: border-color .2s, box-shadow .2s;
}
.tc-form input:focus,
.tc-form textarea:focus {
  outline: none;
  border-color: #c98a3a;
  box-shadow: 0 0 0 4px rgba(201,138,58,.15);
}
.tc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tc-btn {
  background: linear-gradient(135deg, #8b4513, #c98a3a);
  color: #fff;
  border: none;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 1rem;
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px rgba(139,69,19,.3);
}
.tc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(139,69,19,.4);
}

/* ===== ALERTS ===== */
.tc-alert {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-family: sans-serif;
  font-size: .95rem;
}
.tc-alert.success {
  background: #e8f5e0;
  color: #3a6b1f;
  border: 1px solid #b9d99a;
}
.tc-alert.error {
  background: #fde3e3;
  color: #8b2020;
  border: 1px solid #f0b8b8;
}

/* ===== MAP ===== */
.tc-map {
  line-height: 0;
  border-top: 6px solid #c98a3a;
}

#tribal-contact .tc-hero h1{
    color: #ffffff !important;
}

#tribal-contact .tc-hero p{
    color: rgba(255,255,255,.95) !important;
}

#tribal-contact .tc-eyebrow{
    color: #d4a04a !important;
}




