/* Bethany Private Prayer Form — mybethany.com branding */

:root {
  --bpp-primary:    #6a7c1c;
  --bpp-primary-dk: #4e5c14;
  --bpp-green:      #8ca525;
  --bpp-brown:      #2D2000;
  --bpp-cream:      #f8f8f4;
  --bpp-border:     #e0e0d8;
  --bpp-red:        #c0392b;
}

.bpp-wrap { max-width: 680px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }

/* Card */
.bpp-card {
  background: white;
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid var(--bpp-border);
}

/* Header */
.bpp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bpp-primary);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bpp-label::after { content: ''; flex: 1; height: 1px; background: var(--bpp-green); opacity: 0.35; }

.bpp-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--bpp-brown);
  margin: 0 0 10px;
  line-height: 1.2;
}

.bpp-intro {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Form fields */
.bpp-field { margin-bottom: 18px; }

.bpp-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bpp-brown);
  margin-bottom: 6px;
}

.bpp-required { color: var(--bpp-red); margin-left: 2px; }

.bpp-field input,
.bpp-field textarea {
  width: 100%;
  border: 1.5px solid var(--bpp-border);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--bpp-brown);
  background: var(--bpp-cream);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.bpp-field input:focus,
.bpp-field textarea:focus { border-color: var(--bpp-primary); background: white; }

.bpp-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

/* Submit button */
.bpp-submit {
  width: 100%;
  padding: 14px;
  background: var(--bpp-primary);
  color: white;
  border: none;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.bpp-submit:hover { background: var(--bpp-primary-dk); }
.bpp-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Modal */
.bpp-modal { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.bpp-modal.open { display: flex; }
.bpp-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.bpp-modal-sheet {
  position: relative;
  background: white;
  border-radius: 14px;
  padding: 36px 28px 28px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 16px 60px rgba(0,0,0,0.2);
}

.bpp-modal-check {
  width: 56px;
  height: 56px;
  background: #eef4e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--bpp-primary);
}
.bpp-modal-check svg { width: 28px; height: 28px; }

.bpp-modal-heading { font-family: Georgia, serif; font-style: italic; font-size: 22px; font-weight: 400; color: var(--bpp-brown); margin: 0 0 10px; }
.bpp-modal-text { font-size: 14px; color: #666; line-height: 1.6; margin: 0 0 24px; }

.bpp-modal-close {
  width: 100%;
  padding: 12px;
  background: var(--bpp-primary);
  color: white;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
