@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* ============================================
   Base Styles - Reset & Global Defaults
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] body { background: #0f172a; color: #e5e7eb; }
[data-theme="dark"] .navbar, [data-theme="dark"] header { background: #1e293b; color: #e5e7eb; }
[data-theme="dark"] .footer, [data-theme="dark"] footer { background: #0f172a; color: #94a3b8; }
[data-theme="dark"] section { background: #0f172a; }
[data-theme="dark"] .card, [data-theme="dark"] .sc-portfolio-card { background: #1e293b; border-color: #334155; color: #e5e7eb; }
[data-theme="dark"] a { color: #60a5fa; }
[data-theme="dark"] input, [data-theme="dark"] textarea, [data-theme="dark"] select { background: #1e293b; border-color: #334155; color: #e5e7eb; }
