/* ProtectMary Plugin Styles
   Forms, Prayer Wall, and shared plugin UI
   ============================================ */

/* ── FORMS ──────────────────────────────────────────────────────────────────── */

.pm-form {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
}

.pm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .pm-form-row {
        grid-template-columns: 1fr;
    }
}

.pm-form-group {
    margin-bottom: 1.5rem;
}

.pm-label {
    display: block;
    font-family: 'EB Garamond', 'Garamond', Georgia, serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1B3A6B;
    margin-bottom: 0.5rem;
}

.pm-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #8a7e6e;
    font-size: 0.75rem;
    margin-left: 0.35rem;
}

.pm-required {
    color: #C8A24B;
    margin-left: 0.2rem;
}

.pm-input,
.pm-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid #d4c9b5;
    border-radius: 2px;
    font-family: 'EB Garamond', 'Garamond', Georgia, serif;
    font-size: 1.05rem;
    color: #2c2416;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.pm-input:focus,
.pm-textarea:focus {
    outline: none;
    border-color: #1B3A6B;
    box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.12);
}

.pm-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.65;
}

.pm-char-count {
    font-size: 0.78rem;
    color: #8a7e6e;
    margin-top: 0.35rem;
    text-align: right;
}

.pm-checkbox-group {
    background: rgba(27, 58, 107, 0.04);
    border: 1px solid #d4c9b5;
    border-radius: 2px;
    padding: 1rem 1.25rem;
}

.pm-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-family: 'EB Garamond', 'Garamond', Georgia, serif;
    font-size: 1rem;
    color: #2c2416;
    line-height: 1.5;
}

.pm-checkbox {
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.15rem;
    accent-color: #1B3A6B;
    cursor: pointer;
}

.pm-help-text {
    font-size: 0.85rem;
    color: #8a7e6e;
    margin: 0.5rem 0 0 1.85rem;
    line-height: 1.5;
    font-family: 'EB Garamond', 'Garamond', Georgia, serif;
}

.pm-form-actions {
    margin-top: 1.75rem;
    display: flex;
    justify-content: flex-start;
}

.pm-submit-btn {
    min-width: 180px;
    cursor: pointer;
}

.pm-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── MESSAGES ────────────────────────────────────────────────────────────────── */

.pm-message {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 2px;
    font-family: 'EB Garamond', 'Garamond', Georgia, serif;
    font-size: 1rem;
    line-height: 1.6;
}

.pm-message.pm-success {
    background: rgba(27, 58, 107, 0.06);
    border: 1px solid rgba(27, 58, 107, 0.25);
    color: #1B3A6B;
}

.pm-message.pm-error {
    background: rgba(180, 60, 60, 0.06);
    border: 1px solid rgba(180, 60, 60, 0.25);
    color: #7a2020;
}

/* ── PRAYER WALL ─────────────────────────────────────────────────────────────── */

.pm-prayer-wall {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}

.pm-prayer-card {
    background: #fff;
    border: 1px solid #e0d8cc;
    border-left: 3px solid #C8A24B;
    border-radius: 2px;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s ease;
}

.pm-prayer-card:hover {
    box-shadow: 0 2px 12px rgba(27, 58, 107, 0.08);
}

.pm-prayer-text {
    font-family: 'EB Garamond', 'Garamond', Georgia, serif;
    font-size: 1.05rem;
    color: #2c2416;
    line-height: 1.7;
    margin: 0 0 0.75rem;
    font-style: italic;
}

.pm-prayer-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0;
}

.pm-prayer-name {
    font-family: 'EB Garamond', 'Garamond', Georgia, serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1B3A6B;
}

.pm-prayer-date {
    font-family: 'EB Garamond', 'Garamond', Georgia, serif;
    font-size: 0.78rem;
    color: #8a7e6e;
}

.pm-empty {
    font-family: 'EB Garamond', 'Garamond', Georgia, serif;
    font-style: italic;
    color: #8a7e6e;
    text-align: center;
    padding: 2rem;
}

/* ── HONEYPOT (must be invisible) ────────────────────────────────────────────── */

.pm-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}
