/* CSS Variables */
:root {
  --nav-height: 60px;
  --primary-color: #FF4B2B;
  --bg-light: #ffffff;
  --bg-dark: #0a0a0a;
  --text-light: #1a1a1a;
  --text-dark: #ffffff;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --border-light: #e5e5e5;
  --border-dark: #2a2a2a;
  --surface-light: #fafafa;
  --surface-dark: #111111;
  --accent-green: #00d084;
  --accent-blue: #0070f3;
  --accent-purple: #7c3aed;
  
  /* Typography */
  --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  --font-display: 'Space Grotesk', 'Poppins', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
}
/* :root {
  --nav-height: 60px;
  --primary-color: #C19A6B;
  --bg-light: #FAFAFA; 
  --bg-dark: #181818; 
  --text-light: #3C3C3C;
  --text-dark: #F5F5F5; 
} */

*,
a {
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  scroll-behavior: smooth;
}

/* Prevent fixed navbar from covering anchor targets (e.g. #about) */
section[id] {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

html {
  touch-action: manipulation;
}

body {
  margin: 0;
  font-family: "Poppins",sans-serif;
  background-color: #f4f4f4;
  color: #222;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari */
}

.animated-content {
  animation: scaleEffect 1.5s ease-in-out;
}

.custom-cursor {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  opacity: 0;
  transition: transform .2s ease,opacity .3s ease;
  will-change: transform;
}

.hover-trigger,
.hover-trigger:hover {
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 530;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  color: var(--text-light);
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif; /* Smooth modern font */
}