* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif; background: #f5f5f5; color: #333; }

/* ── Navbar ── */
.navbar { background: #0d0d0d; color: white; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 56px; }
.nav-brand { display: flex; align-items: baseline; gap: 0.4rem; }
.nav-logo-text { font-family: 'Nunito', sans-serif; font-weight: 300; font-size: 1.3rem; color: white; letter-spacing: 1px; }
.nav-logo-ring { font-size: 1rem; color: #C9883A; font-weight: 300; }
.nav-logo-sub { font-size: 0.75rem; color: #888; font-weight: 400; margin-left: 0.2rem; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { color: #ccc; text-decoration: none; font-size: 0.9rem; font-weight: 400; }
.nav-links a:hover { color: white; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 2rem auto; padding: 0 1.5rem; }

/* ── Login ── */
body.login-page { background: #fff; display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-box { width: 100%; max-width: 380px; margin: 0 auto; padding: 3rem 2.5rem; background: white; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); text-align: center; }
.login-logo { margin-bottom: 0.25rem; line-height: 1; }
.logo-text { font-family: 'Nunito', sans-serif; font-weight: 300; font-size: 2.8rem; color: #0d0d0d; letter-spacing: 2px; }
.logo-ring { font-size: 1.6rem; color: #C9883A; font-weight: 300; vertical-align: super; }
.login-subtitle { font-size: 0.8rem; color: #999; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 2.5rem; font-weight: 600; }
.login-box input { display: block; width: 100%; padding: 0.85rem 1rem; margin-bottom: 1rem; border: 1px solid #e0e0e0; border-radius: 6px; font-size: 0.95rem; font-family: 'Nunito', sans-serif; outline: none; }
.login-box input:focus { border-color: #0d0d0d; }
.login-box button { width: 100%; padding: 0.85rem; background: #0d0d0d; color: white; border: none; border-radius: 6px; font-size: 0.95rem; font-family: 'Nunito', sans-serif; font-weight: 600; cursor: pointer; letter-spacing: 0.5px; margin-top: 0.5rem; }
.login-box button:hover { background: #333; }

/* ── Cards ── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.card { background: white; padding: 1.5rem; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.card h3 { margin-bottom: 0.5rem; color: #0d0d0d; font-weight: 700; }
.card p { color: #888; font-size: 0.9rem; margin-bottom: 1rem; }
.card a { color: #0d0d0d; font-weight: 700; font-size: 0.9rem; text-decoration: none; }

/* ── Alerts ── */
.alert { padding: 0.75rem 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: 0.9rem; }
.alert-danger { background: #fee; color: #c00; border: 1px solid #fcc; }
.alert-success { background: #efe; color: #060; border: 1px solid #cfc; }

h2 { margin-bottom: 1rem; color: #0d0d0d; font-weight: 700; }
