/* People Service — Public Marketing Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Header ─────────────────────────────────────────────────────────────────── */
header {
    background-color: #7c3aed;
    color: white; padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
}

nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
nav .container { display: flex; justify-content: space-between; align-items: center; width: 100%; flex-wrap: nowrap; gap: 1rem; }

.logo {
    font-size: 1.25rem; font-weight: bold; color: white; text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem; white-space: nowrap;
    flex-shrink: 0; margin-right: 1rem;
}
.logo-text { font-size: 1.4rem; font-weight: 700; color: white; }
.logo:hover { opacity: 0.9; }

.nav-links { display: flex; list-style: none; gap: 0.25rem; align-items: center; flex-wrap: nowrap; }
.nav-links a {
    color: rgba(255,255,255,0.9); text-decoration: none; padding: 0.5rem 0.875rem;
    border-radius: 0.375rem; transition: all 0.2s; white-space: nowrap;
    font-size: 0.95rem; display: flex; align-items: center; gap: 0.4rem;
}
.nav-links a:hover, .nav-links a.active { background-color: rgba(255,255,255,0.15); color: white; }
.nav-links .btn-nav { background: white; color: #7c3aed; font-weight: 600; padding: 0.5rem 1rem; }
.nav-links .btn-nav:hover { background: #faf5ff; color: #6d28d9; }

.mobile-menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
footer { background: #1f2937; color: #d1d5db; padding: 3rem 0 0; }
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-section h3 { color: white; font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer-section p { color: #9ca3af; line-height: 1.7; font-size: 0.9rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section ul li a { color: #9ca3af; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-section ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid #374151; padding: 1.5rem 0; text-align: center; }
.footer-bottom p { color: #6b7280; font-size: 0.875rem; }

/* ── Main content ────────────────────────────────────────────────────────────── */
main { min-height: 60vh; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.625rem 1.25rem; border-radius: 0.375rem; font-size: 0.95rem;
    font-weight: 500; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary { background: #7c3aed; color: white; }
.btn-primary:hover { background: #6d28d9; transform: translateY(-1px); }
.btn-secondary { background: #e5e7eb; color: #374151; }
.btn-secondary:hover { background: #d1d5db; transform: translateY(-1px); }

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; color: #374151; font-weight: 500; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.7rem 0.875rem; border: 1px solid #d1d5db;
    border-radius: 0.375rem; font-size: 0.95rem; font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s; background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: #7c3aed; box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-hint { font-size: 0.8rem; color: #6b7280; margin-top: 0.25rem; }

/* ── Alerts ──────────────────────────────────────────────────────────────────── */
.alert { padding: 0.875rem 1rem; border-radius: 0.375rem; margin-bottom: 1.25rem; font-size: 0.95rem; }
.alert-success { background: #d1fae5; border: 1px solid #10b981; color: #065f46; }
.alert-error { background: #fee2e2; border: 1px solid #ef4444; color: #991b1b; }
.alert-info { background: #f5f3ff; border: 1px solid #7c3aed; color: #4c1d95; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 968px) {
    .mobile-menu-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #7c3aed; padding: 1rem; gap: 0.25rem; }
    .nav-links.active { display: flex; }
    header { position: relative; }
    footer .container { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) { .container { padding: 0 16px; } }
