/* === FONT-FACE (woff2 dosyaları assets/fonts/ klasörüne Naci(RS) tarafından konulduğunda aktif olur) === */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v30-latin-ext_latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v30-latin-ext_latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v18-latin-ext_latin-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v18-latin-ext_latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v18-latin-ext_latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v18-latin-ext_latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === CSS DEĞİŞKENLER === */
:root {
  --color-primary: #1A2942;
  --color-accent: #B8923B;
  --color-cream: #F5EFE6;
  --color-white: #FFFFFF;
  --color-text: #2C3142;
  --color-muted: #6B7280;
  --color-border: #E5E0D5;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container-max: 1200px;
  --section-padding: 80px;
  --section-padding-mobile: 48px;
  --container-pad-x: 24px;
  --container-pad-x-mobile: 16px;
  --grid-gap: 24px;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 200ms ease-out;
  --shadow-sm: 0 1px 2px rgba(26, 41, 66, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 41, 66, 0.08);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { padding-left: 1.25em; }

/* === TİPOGRAFİ === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; font-weight: 600; }
p { margin: 0 0 1em; }

.hero-title { font-size: 56px; line-height: 1.15; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.hairline {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 16px 0 24px;
  border: 0;
}

.caption { font-size: 14px; color: var(--color-muted); }

@media (max-width: 768px) {
  .hero-title { font-size: 40px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
}
