/* PartHive Static Pages - Shared Styles */

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Base */
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #374151; background: #f9fafb; line-height: 1.7; }

/* Hero */
.hero { background: linear-gradient(to right, #2563eb, #1e40af); color: #fff; padding: 4rem 1rem; }
.hero h1 { font-size: 2.5rem; font-weight: 700; }
.hero p { color: #bfdbfe; font-size: 1.125rem; margin-top: 0.5rem; }

/* Layout */
.container { max-width: 56rem; margin: 0 auto; padding: 3rem 1rem; }

/* Typography */
h2 { font-size: 1.5rem; font-weight: 700; color: #111827; margin: 2rem 0 1rem; }
h3 { font-size: 1.25rem; font-weight: 700; color: #111827; margin: 1.5rem 0 0.5rem; }
p { margin-bottom: 0.75rem; }
ul { padding-left: 1.5rem; margin-bottom: 0.75rem; }
li { margin-bottom: 0.25rem; }
a { color: #2563eb; }

/* Support page form styles */
.form-container { max-width: 40rem; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
label { display: block; font-weight: 600; color: #111827; margin-bottom: 0.375rem; font-size: 0.9375rem; }
input, textarea, select { width: 100%; padding: 0.625rem 0.875rem; border: 1px solid #d1d5db; border-radius: 0.5rem; font-size: 1rem; font-family: inherit; background: #fff; transition: border-color 0.15s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
textarea { resize: vertical; min-height: 8rem; }
button { display: inline-block; padding: 0.75rem 2rem; background: #2563eb; color: #fff; border: none; border-radius: 0.5rem; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.15s; }
button:hover { background: #1d4ed8; }
button:disabled { background: #93c5fd; cursor: not-allowed; }
.success { display: none; background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; padding: 1rem 1.25rem; border-radius: 0.5rem; margin-bottom: 1.5rem; }
.error { display: none; background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; padding: 1rem 1.25rem; border-radius: 0.5rem; margin-bottom: 1.5rem; }
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.info-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 0.75rem; padding: 1.5rem; }
.info-card h3 { font-size: 1.125rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.info-card p { color: #6b7280; font-size: 0.9375rem; margin: 0; }

/* Header nav */
.site-nav-wrapper { background: #ffffff; border-bottom: 1px solid #e5e7eb; }
.site-nav { background: #ffffff; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; max-width: 56rem; margin: 0 auto; }
.site-nav-logo { font-weight: 700; font-size: 18px; color: #2563eb; text-decoration: none; }
.site-nav-links { display: flex; gap: 24px; }
.site-nav-links a { font-size: 15px; font-weight: 400; color: #374151; text-decoration: none; }
.site-nav-links a:hover { color: #2563eb; }

/* Footer nav */
.site-footer { text-align: center; padding: 32px 16px; border-top: 1px solid #e5e7eb; margin-top: 3rem; }
.site-footer-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 12px; }
.site-footer-links a { font-size: 14px; color: #6b7280; text-decoration: none; }
.site-footer-links a:hover { color: #2563eb; }
.site-footer-copy { font-size: 14px; color: #6b7280; }
