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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #222;
}

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

img { display: block; width: 100%; }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-left, .nav-right {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-left a, .nav-right a {
  color: #333;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-left a::after, .nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #c8601a;
  transition: width 0.25s;
}

.nav-left a:hover::after, .nav-right a:hover::after { width: 100%; }
.nav-left a:hover, .nav-right a:hover { color: #c8601a; }

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

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #333;
}

.call-btn {
  display: none;
  font-size: 1.4rem;
  text-decoration: none;
  margin-left: 8px;
}

@media (max-width: 900px) {
  .call-btn { display: inline; }
}

/* ─── MOBİL MENÜ ─── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 24px;
  gap: 12px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* ─── HERO ─── */
.hero { width: 100%; max-height: 600px; overflow: hidden; }

.hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

/* ─── PREVIEW GRID ─── */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.preview-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.preview-item img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s;
}

.preview-item:hover img { transform: scale(1.05); }

.preview-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── SECTION TITLE ─── */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  color: #c8601a;
}

/* ─── ONLİNE SİPARİŞ ─── */
.order-section {
  padding: 64px 48px;
  background: #fff;
  text-align: center;
}

.order-subtitle {
  color: #777;
  font-size: 1rem;
  margin-bottom: 36px;
  margin-top: -20px;
}

.order-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.order-card {
  position: relative;
  width: 200px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  text-decoration: none;
}

.order-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.order-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.order-card--soon {
  cursor: default;
  opacity: 0.6;
}

.order-card--soon:hover {
  transform: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.coming-soon {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .order-card { width: 150px; height: 75px; }
}

/* ─── MENÜ BÖLÜMÜ ─── */
.menu-section {
  padding: 64px 48px;
  background: #fafafa;
}

.menu-section > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ARAMA */
.search-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.search-bar input {
  width: 100%;
  max-width: 420px;
  padding: 10px 20px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.search-bar input:focus { border-color: #c8601a; }

/* TABLAR */
.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 28px;
  border: 2px solid #c8601a;
  background: transparent;
  color: #c8601a;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tab-btn:hover, .tab-btn.active {
  background: #c8601a;
  color: #fff;
}

/* TAB CONTENT */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 240px));
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.card img {
  height: 200px;
  object-fit: cover;
}

.card p {
  padding: 10px 14px 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.card-desc {
  display: block;
  padding: 0 14px 12px;
  font-size: 0.78rem;
  color: #888;
  text-align: center;
  line-height: 1.4;
}

.card.hidden { display: none; }

/* ─── HAKKIMIZDA ─── */
.about-section {
  padding: 72px 48px;
  background: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 16px;
}

.about-text em {
  font-style: italic;
  color: #c8601a;
  font-weight: 600;
}

.about-img img {
  border-radius: 50%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ─── İLETİŞİM ─── */
.contact-section {
  padding: 72px 48px;
  background: #fafafa;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon { font-size: 1.6rem; line-height: 1; }

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 1rem;
  color: #333;
}

.contact-item a:hover { color: #c8601a; }

.google-rating {
  display: inline-flex;
  align-items: center;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.google-rating:hover { color: #c8601a; }

.preview-item { cursor: pointer; }

.map-container iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ─── FOOTER ─── */
.footer {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 48px 24px 32px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 20px;
  font-style: italic;
}

.nav-instagram {
  color: #333;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-instagram:hover { color: #c8601a; }

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-instagram:hover { color: #e1306c; }

.footer-copy {
  font-size: 0.82rem;
  color: #666;
}

/* ─── WHATSAPP BUTONU ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg { width: 32px; height: 32px; }

/* sadece masaüstünde göster */
@media (max-width: 900px) {
  .whatsapp-float { display: none; }
}
@media (max-width: 900px) {
  .navbar { padding: 12px 20px; }
  .nav-left, .nav-right { display: none; }
  .hamburger-btn { display: block; }

  .preview-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-img img { border-radius: 12px; height: 280px; }

  .contact-inner { grid-template-columns: 1fr; }

  .menu-section, .about-section, .contact-section { padding: 48px 20px; }
}

@media (max-width: 480px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-item img { height: 160px; }
  .hero-img { height: 260px; }
  .section-title { font-size: 1.4rem; }
}
