:root {
  --bordo: #5a0c1a;
  --kirmizi: #b81424;
  --turuncu: #f36f21;
  --turuncu-acik: #fff3eb;
  --yemeksepeti-pembe: #ea004b;
  --beyaz: #ffffff;
  --koyu: #1a1a1a;
  --gri: #666666;
  --gri-acik: #f8f9fa;
  --golge: 0 15px 35px rgba(90, 12, 26, 0.08);
  --gecis: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--gri-acik); color: var(--koyu); line-height: 1.6; overflow-x: hidden; }

/* --- NAVBAR (DÜZELTİLDİ: YAN YANA VE NİZAMİ) --- */
header {
  background: rgba(90, 12, 26, 0.98);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-bottom: 2px solid var(--turuncu);
  transition: var(--gecis);
}

header.scrolled { background: rgba(90, 12, 26, 1); box-shadow: 0 4px 25px rgba(0,0,0,0.3); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO RESİM VE YAZI YAN YANA AYARI */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--beyaz);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}
.logo span strong { color: var(--turuncu); font-weight: 800; }

.logo img.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* MENÜ LİNKLERİ YAN YANA VE NOKTASIZ */
.nav-links { 
  display: flex; 
  flex-direction: row;
  list-style: none !important; 
  gap: 2.2rem; 
  align-items: center; 
  margin: 0; 
  padding: 0;
}
.nav-links li { list-style-type: none !important; }
.nav-links a { color: var(--beyaz); text-decoration: none; font-weight: 600; font-size: 1rem; transition: var(--gecis); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--turuncu); }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--turuncu); transition: var(--gecis); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.btn-siparis {
  background: linear-gradient(135deg, var(--turuncu), var(--kirmizi));
  color: var(--beyaz);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(243, 111, 33, 0.4);
  transition: var(--gecis);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.btn-siparis:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243, 111, 33, 0.6); color: var(--beyaz); }

.hamburger { display: none; color: var(--beyaz); font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION & SİPARİŞ & PLATFORM BUTONLARI --- */
.hero {
  min-height: 90vh;
  min-height: 100svh;
  background: linear-gradient(135deg, rgba(90, 12, 26, 0.9) 0%, rgba(184, 20, 36, 0.85) 100%),
              url('img/imgarkaplan.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero-content { max-width: 800px; color: var(--beyaz); z-index: 2; }

.badge {
  background: rgba(243, 111, 33, 0.2);
  border: 1px solid var(--turuncu);
  color: var(--turuncu);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--turuncu); }
.hero p { font-size: 1.25rem; margin-bottom: 2.5rem; color: rgba(255,255,255,0.9); max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- 2 SATIRLI SİPARİŞ & PLATFORM BUTONLARI --- */
.hero-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-primary-action {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-hero { 
  padding: 0.95rem 2.6rem; 
  font-size: 1.15rem; 
  box-shadow: 0 6px 20px rgba(243, 111, 33, 0.5);
}

.hero-platform-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.btn-platform {
  color: var(--beyaz);
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--gecis);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.btn-platform:hover {
  transform: translateY(-3px);
  color: var(--beyaz);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* Marka Renkleri */
.btn-yemeksepeti { background: var(--yemeksepeti-pembe); }
.btn-ubereats    { background: #f27a1a; }
.btn-getir       { background: #5d3ebc; }
.btn-migros      { background: #fe6700; }

/* --- MENÜ BANNER --- */
.menu-banner { margin-top: 70px; background: linear-gradient(135deg, var(--bordo), var(--kirmizi)); color: var(--beyaz); padding: 3rem 1rem; text-align: center; }
.menu-banner h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 0.5rem; }
.back-link { color: var(--turuncu); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.back-link:hover { color: var(--beyaz); }

.category-grid-section { padding: 4rem 2rem 6rem; max-width: 1200px; margin: 0 auto; }
.category-cards-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.cat-card {
  background: var(--beyaz);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--golge);
  text-decoration: none;
  color: var(--koyu);
  transition: var(--gecis);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(90, 12, 26, 0.18);
  border-color: var(--turuncu);
}
.cat-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-info { padding: 1.8rem; background: var(--beyaz); flex: 1; }
.cat-info h3 { font-size: 1.5rem; color: var(--bordo); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.cat-info p { color: var(--gri); font-size: 0.95rem; }

/* --- MENÜ KARTLARI --- */
.menu-section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; }
.menu-card {
  background: var(--beyaz);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: var(--golge);
  transition: var(--gecis);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.menu-card::top { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--kirmizi), var(--turuncu)); }
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(90, 12, 26, 0.12); border-color: rgba(243, 111, 33, 0.3); }

.item-img-wrapper { position: relative; width: 100%; height: 180px; border-radius: 12px; overflow: hidden; margin-bottom: 1rem; }
.item-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .item-img-wrapper img { transform: scale(1.08); }
.zoom-badge { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.7); color: var(--beyaz); font-size: 0.75rem; padding: 0.3rem 0.7rem; border-radius: 20px; opacity: 0; transition: var(--gecis); pointer-events: none;}
.menu-card:hover .zoom-badge { opacity: 1; }

.item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.8rem; gap: 1rem; }
.item-title { font-size: 1.25rem; font-weight: 700; color: var(--koyu); line-height: 1.3; }
.item-price { background: var(--turuncu-acik); color: var(--kirmizi); font-weight: 800; font-size: 1.25rem; padding: 0.4rem 0.8rem; border-radius: 10px; white-space: nowrap; transition: var(--gecis); }
.item-ingredients { font-size: 0.88rem; color: var(--gri); margin-bottom: 1.2rem; line-height: 1.4; }
.item-ingredients strong { color: var(--koyu); }
.item-gram { display: inline-block; background: #f1f2f6; color: var(--gri); font-size: 0.85rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 6px; margin-top: auto; width: fit-content; transition: var(--gecis); }

/* --- PORSİYON SEÇİCİ --- */
.portion-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background: #f1f2f6;
  padding: 0.3rem;
  border-radius: 8px;
}
.btn-portion {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gri);
  cursor: pointer;
  transition: var(--gecis);
}
.btn-portion:hover { color: var(--bordo); }
.btn-portion.active {
  background: var(--bordo);
  color: var(--beyaz);
  box-shadow: 0 2px 8px rgba(90, 12, 26, 0.25);
}

/* --- LIGHTBOX (MODAL) --- */
.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); backdrop-filter: blur(5px); align-items: center; justify-content: center; flex-direction: column; padding: 1rem; }
.modal-content { max-width: 85%; max-height: 80vh; border-radius: 16px; border: 3px solid var(--turuncu); animation: modalOpen 0.3s ease; }
@keyframes modalOpen { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 25px; right: 35px; color: var(--beyaz); font-size: 2.5rem; cursor: pointer; }

/* --- İLETİŞİM & HARİTA --- */
.contact-section { background: linear-gradient(to bottom, var(--beyaz), var(--gri-acik)); padding: 6rem 2rem; border-top: 1px solid #eaeaea; }
.contact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.contact-info { background: var(--bordo); color: var(--beyaz); padding: 3rem; border-radius: 24px; box-shadow: var(--golge); position: relative; overflow: hidden; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 2rem; color: var(--turuncu); }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 1.8rem; }
.info-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.info-icon { background: rgba(255,255,255,0.1); color: var(--turuncu); width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.info-text h4 { font-size: 0.9rem; color: rgba(255,255,255,0.7); text-transform: uppercase; }
.info-text p, .info-text a { color: var(--beyaz); font-size: 1.1rem; font-weight: 600; text-decoration: none; }
.info-text a:hover { color: var(--turuncu); }
.map-container { border-radius: 24px; overflow: hidden; box-shadow: var(--golge); min-height: 400px; border: 4px solid var(--beyaz); }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* --- FOOTER --- */
footer { background: var(--koyu); color: rgba(255,255,255,0.7); text-align: center; padding: 2.5rem 2rem; border-top: 3px solid var(--kirmizi); }
footer span { color: var(--turuncu); font-weight: 600; }

/* --- MOBİL OPTİMİZASYONU --- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .hamburger { display: block; }
  .btn-tel { padding: 0.6rem 1rem; font-size: 0.95rem; }
  @media (max-width: 400px) {
    .btn-tel span { display: none; }
    .btn-tel { padding: 0.7rem 0.9rem; border-radius: 50%; }
    .logo span { font-size: 1.2rem; }
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bordo);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    border-bottom: 2px solid var(--turuncu);
    display: none;
  }
  .nav-links.active { display: flex; }
  .contact-container { grid-template-columns: 1fr; }
  .contact-info { padding: 2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .btn-portion { font-size: 0.78rem; padding: 0.4rem 0.2rem; }
}
.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  line-height: 1.2;
}

.kcal-tag {
  background-color: #fff3eb;
  color: var(--turuncu);
  border: 1px solid rgba(243, 111, 33, 0.3);
}

.allergen-tag {
  background-color: #fcf0f2;
  color: var(--kirmizi);
  border: 1px solid rgba(184, 20, 36, 0.2);
}