/* ==========================================================================
   Minimalist Academic Design System - Dr. Akash Sondhi
   Inspired by clean faculty & scholar portfolio aesthetics
   ========================================================================== */

:root {
  /* Warm Minimalist Palette */
  --header-bg: #271b14;
  --header-text: #f5efe6;
  --header-muted: #b8aba0;
  
  --bg-page: #fbf9f6;
  --bg-surface: #ffffff;
  --bg-subtle: #f4efe8;
  
  --text-main: #242220;
  --text-body: #47433f;
  --text-muted: #78716a;
  
  --border-light: #eae3da;
  --border-subtle: #f0ebe4;
  
  --accent-warm: #8c5b35;
  --accent-warm-hover: #714727;
  --accent-slate: #2d4f63;
  --accent-teal: #2a7272;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1040px;
  --radius-sm: 4px;
  --radius-md: 8px;
  
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-body);
}

p:last-child {
  margin-bottom: 0;
}

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

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}
