/* ============================================================
   VARIABLES & RESET
   Saurabh Dhakite Portfolio
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&family=Syne:wght@400;600;700;800&display=swap');

:root {
  /* Colors */
  --bg:           #090c0f;
  --bg2:          #0e1318;
  --bg3:          #131920;
  --bg4:          #182028;
  --border:       #1e2830;
  --border2:      #243040;
  --border3:      #2e3e50;

  --green:        #00e5a0;
  --green-dim:    #00b87a;
  --green-dark:   #006644;
  --green-glow:   rgba(0, 229, 160, 0.12);
  --green-glow2:  rgba(0, 229, 160, 0.06);
  --green-glow3:  rgba(0, 229, 160, 0.03);

  --amber:        #f0a500;
  --amber-dim:    rgba(240, 165, 0, 0.15);
  --red:          #ff4d6d;
  --blue:         #4da6ff;

  --text:         #c8d6e0;
  --text-dim:     #5a7080;
  --text-dim2:    #3d5060;
  --text-bright:  #eaf2f8;
  --text-muted:   #8aa0b0;

  /* Typography */
  --mono: 'JetBrains Mono', 'Cascadia Code', 'Fira Code', monospace;
  --sans: 'Syne', sans-serif;

  /* Spacing */
  --nav-h:        60px;
  --section-pad:  4rem 2.5rem;
  --max-w:        1200px;

  /* Transitions */
  --t-fast:  0.15s ease;
  --t-mid:   0.25s ease;
  --t-slow:  0.4s ease;

  /* Shadows */
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
  --glow-green: 0 0 24px rgba(0,229,160,0.25);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea, button { border: none; outline: none; background: none; }
