/* Mobil uyumlu temel ayarlar */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.responsive-container {
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container, .responsive-container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .container, .responsive-container {
    padding: 0 0.5rem;
  }
  h1, h2, h3 {
    font-size: 1.2em;
  }
  nav, .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  .container, .responsive-container {
    padding: 0 0.25rem;
  }
  h1, h2, h3 {
    font-size: 1em;
  }
}
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap");

:root {
  --font-sans: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  --font-display: "Space Grotesk", "IBM Plex Sans", sans-serif;
  --bg-body: #f5f5f2;
  --text-body: #0b0b0b;
  --primary: #1e6b5c;
  --primary-dark: #134e42;
  --secondary: #d8d2c8;
  --border: #e2ddd3;
  --muted: #4c5d58;
  --accent: #0e3f33;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-body);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(14, 63, 51, 0.18), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(216, 210, 200, 0.4), transparent 50%),
    linear-gradient(180deg, rgba(245, 245, 242, 0.95), rgba(248, 248, 245, 0.9));
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
  font-size: 0.85rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .split {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.between {
  justify-content: space-between;
}

.center {
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.primary:hover {
  background: var(--primary-dark);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text-body);
  background: transparent;
}

.btn.ghost:hover {
  background: #fff;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #fff;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
  display: block;
}

form .field {
  margin-bottom: 1rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.9rem;
}

.table th {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll .table {
  min-width: 640px;
}

.badge {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--secondary);
}
