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

/* global css degiskenleri. berilis renkleri ve olculeri uyarlandi */
:root {
  /* zeva renkleri */
  --color-yellow: #f8d64e;
  --color-pink: #e6007a;
  --color-pink-glow: rgba(230, 0, 122, 0.18);
  
  /* berilis bazli renkler */
  --white: #ffffff;
  --gray-light: #f5f5f6;
  --dark-bg: #131316;
  
  --text-primary: #111827;
  --text-sub: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  
  --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
  --font-main: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', serif;
}

/* genel sifirlama kurallari */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background: var(--gray-light);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font-family: var(--font-main);
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
