/* =====================================================
   RESTO KÖFTE - Main Stylesheet v2.0
   Renk Paleti: Kırmızı #D1121C | Siyah #111111 | Beyaz #FFFFFF
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --red: #D1121C;
  --red-dark: #a80e17;
  --red-light: #f5e6e7;
  --green: #6DA63C;
  --green-dark: #538029;
  --green-light: #edf5e4;
  --black: #111111;
  --black-soft: #1a1a1a;
  --white: #FFFFFF;
  --gray-50: #fafafa;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-500: #888;
  --gray-700: #444;
  --gray-900: #1a1a1a;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-red: 0 8px 32px rgba(209,18,28,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --header-h: 72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/outfit-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-700.woff2') format('woff2');
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.bg-light { background: var(--gray-50); }
.bg-dark { background: var(--black); color: var(--white); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- Typography ---- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(209,18,28,0.08);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(209,18,28,0.18);
}
.section-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(209,18,28,0.4);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
}
.btn-outline-dark {
  border: 2px solid var(--red);
  color: var(--red);
}
.btn-outline-dark:hover {
  background: var(--red);
  color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(109,166,60,0.3);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER — Koyu/Siyah Tema
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  background: rgba(17,17,17,0.99);
}
.header-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 44px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active {
  color: var(--white);
  background: var(--red);
}
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn-primary {
  padding: 10px 22px;
  font-size: 0.88rem;
}

/* Hamburger */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.mobile-nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(4px,4px); }
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg) translate(4px,-4px); }

/* ============================================================
   HERO — Split Layout (Metin Sol + Fotoğraf Sağ)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Arka plan desen */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(209,18,28,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(209,18,28,0.08) 0%, transparent 40%);
  z-index: 1;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: calc(100vh - var(--header-h));
}

/* Sol: metin */
.hero-left {
  padding: 80px 60px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(209,18,28,0.15);
  border: 1px solid rgba(209,18,28,0.3);
  color: #ff4d57;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeInUp 0.7s ease both;
}
.hero-eyebrow svg { flex-shrink: 0; }
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
  letter-spacing: -0.02em;
}
.hero-title .line-red { color: var(--red); display: block; }
.hero-title .line-thin {
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  font-size: 0.65em;
  display: block;
  letter-spacing: 0;
}
.hero-desc {
  font-size: clamp(0.97rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 440px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* Sağ: fotoğraf kolajı */
.hero-right {
  position: relative;
  height: 100vh;
  overflow: hidden;
  animation: fadeIn 1s ease 0.2s both;
}
.hero-img-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,1) 0%,
    rgba(17,17,17,0.3) 30%,
    rgba(17,17,17,0) 60%
  );
}
.hero-img-bottom {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(17,17,17,0.6), transparent);
}

/* Badge kartı */
.hero-badge-card {
  position: absolute;
  bottom: 48px;
  right: 32px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.hero-badge-text strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}
.hero-badge-text span {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 2px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
  z-index: 3;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}
.about-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-title em { font-style: normal; color: var(--red); }
.about-text {
  color: var(--gray-700);
  margin-bottom: 14px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}
.about-visual { position: relative; }
.about-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(20,20,20,0.7), rgba(0,0,0,0.85)),
    url('../images/about-bg.jpg') center/cover no-repeat;
  position: relative;
}
.about-card-inner {
  padding: 32px;
  z-index: 2;
  position: relative;
  width: 100%;
}
.about-year {
  font-size: 7.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.12);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 16px;
  user-select: none;
  pointer-events: none;
}
.about-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.about-card-text {
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.4;
}
.about-floating-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-red);
  text-align: center;
  z-index: 2;
}
.about-floating-badge .num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.about-floating-badge .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  display: block;
}

/* ============================================================
   MENU SECTION (Anasayfa önizleme)
   ============================================================ */
.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 32px;
}
.menu-tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--white);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu-tab:hover {
  border-color: var(--red);
  color: var(--red);
}
.menu-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.menu-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: all var(--transition);
}
.menu-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.menu-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.menu-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}
.menu-price {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--red-light);
  padding: 3px 10px;
  border-radius: 100px;
}
.menu-ingredients {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.menu-note-text {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 12px;
  font-style: italic;
}
.menu-section-link {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   GALERİ
   ============================================================ */
.gallery-section { background: var(--gray-900); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.45); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--transition);
  background: var(--gray-900);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item:hover { transform: scale(1.02); z-index: 2; }
.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  font-size: 1.1rem;
}
.gallery-upload-hint { display: none !important; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 24px;
  animation: fadeIn 0.2s ease;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: fixed;
  top: 24px; right: 28px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 1;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-media { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1.4rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.lightbox-nav:hover { background: var(--red); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); border-color: rgba(209,18,28,0.2); }
.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.info-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.info-card p, .info-card a {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color var(--transition);
  display: block;
  margin-bottom: 2px;
}
.info-card a:hover { color: var(--red); }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-btn:hover { background: var(--red); color: var(--white); transform: translateY(-3px); border-color: var(--red); }
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.footer-copy { font-size: 0.8rem; }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.8s ease 1s both;
}
.whatsapp-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: all var(--transition);
  position: relative;
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.2);
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: var(--white); position: relative; z-index: 1; }
.whatsapp-label {
  background: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-900);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }

/* ============================================================
   MENU PAGE (Dedicated /menu sayfası)
   ============================================================ */
.menu-page-hero {
  background: var(--black);
  padding: calc(var(--header-h) + 56px) 0 64px;
  position: relative;
  overflow: hidden;
}
.menu-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(209,18,28,0.2) 0%, transparent 55%);
}
.menu-page-hero .container { position: relative; z-index: 1; }
.menu-page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.menu-page-hero h1 span { color: var(--red); }
.menu-page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  max-width: 520px;
}

.menu-page-body {
  background: var(--gray-50);
  padding: 64px 0 96px;
}

.menu-page-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.menu-page-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-page-nav-inner::-webkit-scrollbar { display: none; }
.menu-page-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-500);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
  background: none;
  cursor: pointer;
  border-top: none;
  border-left: none;
  border-right: none;
}
.menu-page-nav-btn:hover { color: var(--gray-900); }
.menu-page-nav-btn.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.menu-page-nav-btn .nav-icon { font-size: 1.1em; }

.menu-category-section {
  padding: 64px 0 0;
  scroll-margin-top: calc(var(--header-h) + 56px);
}
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.menu-category-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.menu-category-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
}
.menu-category-subtitle {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 4px;
}
.menu-category-divider {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.menu-item-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-item-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(209,18,28,0.2);
  transform: translateY(-4px);
}
.menu-item-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: var(--gray-100);
}
.menu-item-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2a0a0c 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.menu-item-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.menu-item-name {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
}
.menu-item-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-top: auto;
}
.menu-item-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(109,166,60,0.1);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 10px;
  width: fit-content;
}

.menu-page-note {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 64px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.menu-page-note svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.menu-page-note p {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40% { opacity: 1; }
  80% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.45); opacity: 0; }
}
@keyframes floatGlow {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 80px 0;
    text-align: center;
    align-items: center;
  }
  .hero-desc { margin: 0 auto 40px; }
  .hero-stats { justify-content: center; }
  .hero-scroll { left: 50%; transform: translateX(-50%); right: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 300px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .mobile-nav-toggle { display: flex; }
  .header-cta { display: none; }

  nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--black);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-links a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
  }
  .nav-links a:hover, .nav-links a.active { background: var(--red); color: var(--white); }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-actions { justify-content: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }

  .stats { gap: 16px; flex-wrap: wrap; }
  .stat-number { font-size: 2rem; }

  .menu-category-header { flex-wrap: wrap; }
  .menu-category-divider { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 6px; }
  .menu-tab { padding: 8px 14px; font-size: 0.8rem; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
