/* ============================================================
   SKILLSFUTURE — SHARED STYLES
   Used by: index.html, assessment.html
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
    --primary: #0ea5e9;
    --primary-light: #38bdf8;
    --primary-dark: #0284c7;
    --accent: #06b6d4;
    --accent2: #6366f1;
    --dark: #060d1a;
    --dark-card: #0d1626;
    --dark-card2: #131f35;
    --text-muted: #94a3b8;
    --text-body: #cbd5e1;
    --text-white: #f1f5f9;
    --gold: #f59e0b;
    --green: #10b981;
    --red: #ef4444;
    --border: rgba(14, 165, 233, 0.18);
}

/* ── RESET ──────────────────────────────────────────────────── */
* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text-body);
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.ap-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: rgba(6, 13, 26, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.ap-nav .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900; color: white; font-size: 1.1rem;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 1.3rem;
    color: var(--text-white);
}

.brand-text small {
    font-size: 0.6rem; color: var(--accent);
    font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; display: block; line-height: 1;
}

.ap-nav .nav-links {
    display: flex; gap: 28px;
    list-style: none; margin: 0; padding: 0;
}

.ap-nav .nav-links a {
    text-decoration: none; color: var(--text-muted);
    font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
}

.ap-nav .nav-links a:hover { color: var(--text-white); }

.ap-nav .btn-apply {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
    color: white; border: none;
    padding: 10px 24px; border-radius: 8px;
    font-weight: 600; font-size: 0.875rem;
    text-decoration: none; transition: opacity 0.2s, transform 0.2s;
}

.ap-nav .btn-apply:hover {
    opacity: 0.9; transform: translateY(-1px); color: white;
}

/* ── COMMON BUTTONS ─────────────────────────────────────────── */
.btn-primary-glow {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
    color: white; padding: 14px 32px; border-radius: 10px;
    font-weight: 700; font-size: 1rem; text-decoration: none;
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.35);
    transition: all 0.3s;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(14, 165, 233, 0.55);
    color: white;
}

.btn-outline-glow {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text-white);
    border: 1px solid var(--border); padding: 14px 32px;
    border-radius: 10px; font-weight: 600; font-size: 1rem;
    text-decoration: none; transition: all 0.3s;
}

.btn-outline-glow:hover {
    border-color: var(--primary-light); color: var(--primary-light);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.ap-footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 32px 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── RESPONSIVE: SHARED ────────────────────────────────────── */
@media (max-width: 992px) {
    .ap-nav { padding: 16px 24px; }
    .ap-nav .nav-links { display: none; }
}
