/* ============================================
   ERIN CELESTE — contact.css
   Styles for contact and thank you pages
   ============================================ */

/* ---- CONTACT PAGE ---- */
.contact-page {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  width: 100%;
}

/* ---- LEFT COPY ---- */
.contact-page-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 24px;
  margin-top: 12px;
}
.contact-heading-accent { color: var(--pink); }
.contact-page-sub {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 400px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-detail-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.contact-detail-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
}
a.contact-detail-value:hover { color: var(--blue); }
.contact-availability {
  display: flex;
  align-items: center;
  gap: 10px;
}
.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(196,211,0,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(196,211,0,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(196,211,0,0.1); }
}
.availability-text {
  font-size: 12px;
  font-weight: 500;
  color: #555;
}

/* ---- FORM ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--black);
  border-radius: 16px;
  padding: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
}
.form-input {
  background: #161616;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 300;
  color: var(--cream);
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: #444; }
.form-input:focus {
  border-color: var(--lime);
  background: #1a1a1a;
}
.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option { background: #161616; color: var(--cream); }
.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}
.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--lime);
  color: var(--black);
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.form-submit-arrow {
  font-size: 18px;
  transition: transform 0.2s;
}
.form-submit:hover .form-submit-arrow { transform: translateX(4px); }

/* ---- THANK YOU PAGE ---- */
.thankyou-section {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.thankyou-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(196,211,0,0.2);
  margin-bottom: 8px;
}
.thankyou-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--black);
}
.thankyou-accent { color: var(--lime); }
.thankyou-sub {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  max-width: 420px;
}
.thankyou-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 12px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px;
  }
  .contact-form { padding: 28px 24px; }
  .thankyou-inner { padding: 60px 24px; }
  .thankyou-actions { flex-direction: column; gap: 14px; }
}
