/* =====================================================
   NEHIR GIDA - MAIN.CSS
   Ortak Reset, Değişkenler & Yardımcı Stiller
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600;700;800;900&family=Oswald:wght@300;400;500;600;700&family=Lato:wght@300;400;700&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  /* Gate / Global */
  --gold-light: #f0d060;
  --gold-mid: #c9a227;
  --gold-dark: #8a6a10;
  --dark-bg: #1a0e05;
  --black: #0a0605;

  /* Pastane Teması */
  --p-rose: #f5c6c6;
  --p-rose-dark: #c98b8b;
  --p-cream: #fdf6f0;
  --p-gold: #d4a843;
  --p-choco: #3d1f0d;
  --p-choco-light: #6b3a1f;
  --p-text: #2c1a0e;

  /* Restoran Teması */
  --r-espresso: #1c1008;
  --r-espresso-dark: #0f0906;
  --r-amber: #d4783a;
  --r-amber-light: #e8944e;
  --r-cream: #f5e6d0;
  --r-steel: #8a7560;
  --r-text: #f0e0c8;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 6rem;

  /* Transitions */
  --tr-fast: 0.2s ease;
  --tr-mid: 0.4s ease;
  --tr-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Utility Classes ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.d-flex { display: flex; }
.d-grid  { display: grid; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.gap-sm { gap: var(--gap-sm); }
.gap-md { gap: var(--gap-md); }

/* ─── Gold Gradient Text ─── */
.gold-text {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Section Divider ─── */
.divider-gold {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  margin: 1rem auto;
}

/* ─── Overlay ─── */
.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ─── Scroll indicator ─── */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-down::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Responsive Breakpoints ─── */
@media (max-width: 1200px) { :root { font-size: 15px; } }
@media (max-width: 768px)  { :root { font-size: 14px; } }
@media (max-width: 480px)  { :root { font-size: 13px; } }
