/*
 Theme Name:  SkillForge
 Description: Companion theme for the SkillForge plugin. Clean, full-width page template with CSS variable overrides.
 Author:      DataPerk LLC
 Version:     1.0.0
 Text Domain: skillforge-theme
*/

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

body {
  background: #f4f4f8;
  color: #1a1a2e;
  font-family: 'Space Mono', 'Courier New', monospace;
  min-height: 100vh;
}

/* Override plugin tokens to match theme palette */
:root {
  --sf-bg:       #ffffff;
  --sf-bg-2:     #fafafa;
  --sf-bg-3:     #f7f7fc;
  --sf-border:   #e8e8ee;
  --sf-border-2: #d8d6f0;
  --sf-text:     #1a1a2e;
  --sf-accent:   #5b4ee8;
  --sf-accent-2: #9333ea;
}

.site-header {
  padding: 18px 32px;
  border-bottom: 1px solid #e8e8ee;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-branding a {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #1a1a2e;
  text-decoration: none;
}
.site-branding a span { color: #5b4ee8; }

.site-nav { display: flex; gap: 24px; list-style: none; }
.site-nav a {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #a0a0b8; text-decoration: none; transition: color .15s;
}
.site-nav a:hover { color: #5b4ee8; }

.site-main { max-width: 1200px; margin: 0 auto; padding: 36px 20px; }

.skillforge-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(91,78,232,.08), 0 0 0 1px rgba(91,78,232,.06);
}

.site-footer {
  text-align: center;
  padding: 24px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a0a0b8;
  border-top: 1px solid #e8e8ee;
  margin-top: 48px;
}
/* =============================================
   SkillForge Theme — Nav + Font Size Updates
   Add these rules to your existing style.css
   or paste at the bottom of the file.
   ============================================= */

/* --- Global font size increase --- */
body {
    font-size: 17px;
    line-height: 1.7;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.35rem; }

p, li, label, input, textarea, select, button {
    font-size: 1rem;
}

/* Increase form element sizes across the whole site */
.sf-form input[type="text"],
.sf-form textarea,
.sf-form select {
    font-size: 1.05rem;
    padding: 0.8rem 1rem;
}

/* --- Navigation --- */
.sf-site-nav {
    background: #ffffff;
    border-bottom: 1.5px solid #ece8f8;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.sf-nav-logo {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1a1523;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.sf-nav-logo span {
    color: #7c3aed;
}

.sf-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sf-nav-links a {
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.15s;
}

.sf-nav-links a:hover {
    color: #7c3aed;
    background: #f3f0fd;
}

.sf-nav-links a.active,
.sf-nav-links a[aria-current="page"] {
    color: #7c3aed;
    background: #ede9fe;
}

.sf-nav-links .sf-nav-cta a {
    background: #7c3aed;
    color: #ffffff;
    padding: 0.5rem 1.2rem;
}

.sf-nav-links .sf-nav-cta a:hover {
    background: #6d28d9;
    color: #ffffff;
}

/* Mobile nav */
@media (max-width: 640px) {
    .sf-site-nav {
        padding: 0 1rem;
        height: 60px;
    }
    .sf-nav-logo {
        font-size: 1.25rem;
    }
    .sf-nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.7rem;
    }
}
