/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #FCF4ED;
  --orange: #EF7727;
  --orange-light: #FFA04C;
  --black: #000000;
  --text-dark: #101010;
  --text-gray: #3F3F3F;
  --gray3: #828282;
  --gray6: #F2F2F2;
  --blue: #4845F4;
  --white: #FFFFFF;
  --purple: #BBBAE3;
  --page-w: 1280px;
  --side: 120px;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
}

.page {
  max-width: var(--page-w);
  margin: 0 auto;
  position: relative;
}

img {
  display: block;
}

/* Screen reader only - erişilebilirlik */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Navbar yüksekliğine göre scroll offset */
[id] {
  scroll-margin-top: 60px;
}

#contact {
  scroll-margin-top: 120px;
}
