/* Modern, hareketli restaurant landing (CLEAN) */
:root{
  --bg:#0b0f14;
  --card:#0f1620;
  --muted:#9fb0c2;
  --text:#eaf1f8;
  --line:rgba(255,255,255,.08);
  --accent:#ffb020;
  --accent2:#ff4d6d;
  --radius:18px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(255,176,32,.12), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,77,109,.10), transparent 55%),
    var(--bg);
  color:var(--text);
}

.container{max-width:1120px; margin:0 auto; padding:0 18px}
a{color:inherit; text-decoration:none}
.section{padding:72px 0}
.section-head{max-width:680px}
.section-head h2{font-size:34px; margin:0 0 10px}
.section-head p{margin:0; color:var(--muted); line-height:1.6}

/* =========================
   HEADER
   ========================= */
.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(14px);
  background: rgba(11,15,20,.65);
  border-bottom:1px solid var(--line);
  height: 96px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  height: 96px;
  padding: 10px 0;
}

/* logo + başlık */
.brand{
  display:flex; align-items:center; gap:16px;
  font-weight:800; letter-spacing:.2px;
}

/* LOGO (kesin büyür) */
#logo{
  width: 76px;
  height: 76px;
  object-fit: contain;       /* kırpma yok */
  border-radius: 14px;
  box-shadow:0 10px 22px rgba(0,0,0,.35);
}
#brandName{
  font-size: 20px;
  font-weight: 800;
}

.nav{display:flex; gap:16px; color:var(--muted)}
.nav a{padding:8px 10px; border-radius:12px}
.nav a:hover{background:rgba(255,255,255,.05); color:var(--text)}

.burger{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px
}

.mobile-nav{display:none; padding:10px 0 14px; border-top:1px solid var(--line)}
.mobile-nav.open{display:block}
.mobile-nav a{display:block; padding:10px 0; color:var(--muted)}
.mobile-nav a:hover{color:var(--text)}

/* =========================
   HERO
   ========================= */
.hero{position:relative; padding:34px 0 22px}
.hero-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:22px; align-items:stretch}

.hero-copy{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:26px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-copy::before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(600px 240px at 20% 10%, rgba(255,176,32,.18), transparent 60%),
    radial-gradient(520px 240px at 70% 30%, rgba(255,77,109,.14), transparent 55%);
  pointer-events:none;
}
.hero-copy > *{position:relative}

.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}
.hero-copy h1{font-size:46px; line-height:1.05; margin:14px 0 10px}
.hero-copy p{margin:0; color:var(--muted); line-height:1.7; font-size:16px}

.meta{display:flex; gap:14px; margin-top:14px; color:var(--muted); flex-wrap:wrap}
.meta span{padding:8px 10px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.03)}

.cta-row{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  transition: transform .15s ease, background .2s ease;
  font-weight:700;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.07)}
.btn.primary{
  background: linear-gradient(135deg, rgba(255,176,32,.95), rgba(255,77,109,.88));
  border: none;
  color:#111;
}
.btn.ghost{background:rgba(255,255,255,.03)}

/* =========================
   SLIDER (KARARTMA YOK)
   ========================= */
.hero-slider{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

/* slider container */
#slider{
  width:100%;
  height: 360px;
  position:relative;
  overflow:hidden;
}

/* JS ile gelen slide */
#slider .slide{
  width:100%;
  height:100%;
  position:relative;
}

/* IMG kesin görünür */
#slider .slide img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* caption */
#slider .caption{
  position:absolute;
  left:16px; right:16px; bottom:16px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(15,22,32,.62);
  border:1px solid var(--line);
  backdrop-filter: blur(8px);
}
#slider .caption strong{display:block; font-size:18px}
#slider .caption em{display:block; color:var(--muted); font-style:normal; margin-top:4px}

.slider-controls{
  position:absolute; left:0; right:0; bottom:12px;
  display:flex; align-items:center; justify-content:center; gap:12px;
  pointer-events:none;
  z-index:10;
}
.icon-btn{
  pointer-events:auto;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-size:22px;
}
.icon-btn:hover{background:rgba(255,255,255,.08)}
.dots{display:flex; gap:8px; pointer-events:auto}
.dot{
  width:10px; height:10px; border-radius:999px;
  background:rgba(255,255,255,.22);
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
}
.dot.active{
  background:linear-gradient(135deg, rgba(255,176,32,.95), rgba(255,77,109,.85));
  border:none
}

/* =========================
   ABOUT
   ========================= */
.about-cards{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:14px; margin-top:18px;
}
.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.6}

/* =========================
   MENU
   ========================= */
.menu-toolbar{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; margin-top:18px; flex-wrap:wrap;
}
.tabs{display:flex; gap:10px; flex-wrap:wrap}
.tab{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  cursor:pointer;
  font-weight:700;
}
.tab.active{
  color:#111;
  border:none;
  background:linear-gradient(135deg, rgba(255,176,32,.95), rgba(255,77,109,.85))
}
.search input{
  width:min(360px, 84vw);
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}

/* grid 4->3->2->1 */
#menuGrid.menu-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:18px;
  margin-top:16px;
  align-items:start;
}
@media (max-width:1100px){
  #menuGrid.menu-grid{grid-template-columns: repeat(3, minmax(0, 1fr));}
}
@media (max-width:820px){
  #menuGrid.menu-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width:520px){
  #menuGrid.menu-grid{grid-template-columns: 1fr;}
}

/* menü kart */
.menu-card{
  border-radius: 18px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
}
.menu-media{
  width:100%;
  height: 160px;
  overflow:hidden;
  border-radius: 16px;
  margin: 12px;
  background: rgba(255,255,255,.06);
}
.menu-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.menu-body{
  padding: 0 14px 14px 14px;
  display:flex;
  flex-direction:column;
  flex: 1 1 auto;
}
.item-title{
  color:#fff;
  font-weight:700;
  margin: 6px 0 10px;
  line-height:1.2;
}
.menu-card .menu-body p{display:none !important;}
.menu-body .price{
  margin-top:auto;
  font-weight:900;
  padding:8px 10px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  display:inline-flex;
  width: fit-content;
}

/* =========================
   CONTACT
   ========================= */
.contact-wrap{
  display:grid; grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.contact-meta{margin:14px 0; display:grid; gap:10px}
.contact-row{
  display:flex; align-items:center; gap:10px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
}
.contact-row a{color:var(--text); font-weight:800}

.contact-banner{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:
    radial-gradient(600px 260px at 30% 20%, rgba(255,176,32,.14), transparent 60%),
    radial-gradient(600px 260px at 60% 70%, rgba(255,77,109,.12), transparent 55%),
    rgba(255,255,255,.03);
  overflow:hidden;
  position:relative;
}
.banner-inner{padding:18px; position:relative}
.banner-inner h3{margin:0 0 8px}
.mini-badges{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.mini{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:800;
  font-size:12px;
}
.spark{
  position:absolute; inset:-60px;
  background: conic-gradient(from 180deg, rgba(255,176,32,.0), rgba(255,176,32,.18), rgba(255,77,109,.15), rgba(255,176,32,.0));
  animation: spin 10s linear infinite;
  filter: blur(22px);
  opacity:.7;
  pointer-events:none;
}
@keyframes spin{to{transform:rotate(360deg)}}

.today-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:12px;
}
.today-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  font-weight:600;
  cursor:pointer;
  transition:.2s;
}
.today-item:hover{
  background:rgba(255,255,255,.10);
  transform:translateX(4px);
}

.footer{
  margin-top:22px;
  padding:16px 0;
  color:rgba(255,255,255,.55);
  border-top:1px solid var(--line);
}

/* Reveal animations */
.js .reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.show{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 940px){
  .hero-grid{grid-template-columns:1fr;}
  .about-cards{grid-template-columns:1fr;}
  .contact-wrap{grid-template-columns:1fr;}
  .nav{display:none}
  .burger{display:inline-flex}
  #slider{height: 320px;}
}

/* Hide transparent pixel placeholders */
img[src^="data:image/gif;base64,R0lGODlhAQAB"]{ opacity:0; }

/* LOGO FORCE SCALE FIX */
#logo{
  height: 80px !important;
  width: auto !important;
  object-fit: contain;
  transform: scale(1.6);   /* ASIL farkı bu yaratıyor */
  transform-origin: left center;
}
/* =========================
   HEADER + LOGO (CLEAN FIX)
   ========================= */

.topbar{
  height: 96px;
}

.topbar-inner{
  height: 100%;
  display: flex;
  align-items: center;
}

/* Logo + yazı */
.brand{
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LOGO – SADECE BOYUT */
#logo{
  height: 72px;        /* 🔥 asıl büyüten değer */
  width: auto;
  object-fit: contain;
}

/* Yazı */
#brandName{
  font-size: 20px;
  font-weight: 800;
}

/* Mobil */
@media (max-width: 768px){
  .topbar{ height: 72px; }
  #logo{ height: 48px; }
  #brandName{ font-size: 17px; }
}
/* Logo yanındaki yazıyı biraz sağa kaydır */
#brandName{
  margin-left: 13px;   /* masaüstü için hafif boşluk */
}

/* Tablet */
@media (max-width: 1024px){
  #brandName{
    margin-left: 16px;
  }
}

/* Mobil */
@media (max-width: 768px){
  #brandName{
    margin-left: 13px; /* mobilde çok açılmasın */
  }
}
/* =========================
   MOBILE NAV + BURGER FIX
   ========================= */

/* Burger butonu büyüt + belirginleştir */
#burgerBtn.burger{
  display: inline-flex;              /* zaten mobilde görünür, garanti */
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 26px;                   /* ikon büyüsün */
  font-weight: 900;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  cursor: pointer;
  margin-right: 8px;     /* sağdan boşluğu azaltır */
    margin-left: -6px;     /* ikon biraz sola kayar */
}

#burgerBtn.burger:hover{
  background: rgba(255,255,255,.12);
}

/* Mobil menü arka planı opak + blur + düzgün kutu */
#mobileNav.mobile-nav{
  display: none;
  position: absolute;                /* header altında aç */
  left: 0;
  right: 0;
  top: 96px;                         /* header yüksekliğin 96px */
  padding: 14px 18px;
  background: rgba(11,15,20,.96);    /* SAYDAM DEĞİL */
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  z-index: 999;
}

#mobileNav.mobile-nav.open{
  display: block;
}

#mobileNav.mobile-nav a{
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
}

#mobileNav.mobile-nav a:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
}

/* Mobilde header yüksekliği değişiyorsa top'u eşitle */
@media (max-width: 768px){
  #mobileNav.mobile-nav{ top: 96px; } /* sende header 96px; mobilde farklıysa 72/76 yaparız */
}

/* =========================
   MOBILE: LOGO YANINDAKİ YAZIYI GİZLE
   ========================= */

@media (max-width: 768px){
  #brandName{
    display: none;
  }
}
@media (max-width: 768px){
  .brand{
    margin-top: 12px;
  }
}

/* =========================
   MOBILE: HAMBURGER SOLA AL
   ========================= */

@media (max-width: 768px){
  .topbar-inner{
    justify-content: flex-start; /* artık sola hizalı */
  }

  .brand{
    margin-right: auto;         /* logo solda kalsın */
  }

  .burger{
    margin-left: 22px;          /* logo ile arasında boşluk */
  }
}


/* =========================
   BURGER SADECE MOBİLDE GÖRÜNSÜN
   ========================= */

/* Varsayılan: desktop'ta gizli */
#burgerBtn.burger{
  display: none !important;
}

/* Mobilde göster */
@media (max-width: 940px){
  #burgerBtn.burger{
    display: inline-flex !important;
  }
}

/* =========================
   SOCIAL MEDIA SECTION
   ========================= */

.social-section{
  margin-top: 24px;
}

.social-section h3{
  margin-bottom: 14px;
  font-size: 18px;
}

.social-links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn{
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: #fff;
}

.social-btn:hover{
  transform: translateY(-2px);
}

/* Instagram gradient */
.social-btn.instagram{
  background: linear-gradient(135deg,#ff6a00,#ff006a,#d300c5);
  border: none;
}

/* Facebook */
.social-btn.facebook{
  background: #1877f2;
  border: none;
}

/* Google */
.social-btn.google{
  background: linear-gradient(135deg,#4285F4,#34A853,#FBBC05,#EA4335);
  border: none;
}

/* Mobil */
@media (max-width:768px){
  .social-links{
    flex-direction: column;
  }
  .social-btn{
    text-align:center;
  }
}
/* =========================
   CONTACT EXTENDED
   ========================= */

.contact-extended{
  padding: 70px 0;
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items:center;
}

.contact-left h3{
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-left p{
  color: var(--muted);
  margin-bottom: 25px;
}

.social-buttons{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}

.social-btn{
  padding:12px 18px;
  border-radius:14px;
  font-weight:700;
  text-decoration:none;
  color:#fff;
  transition:.25s;
  display:inline-block;
}

.social-btn:hover{
  transform:translateY(-3px);
}

/* Instagram gradient */
.instagram{
  background:linear-gradient(45deg,#feda75,#d62976,#962fbf,#4f5bd5);
}

/* Google gradient */
.google{
  background:linear-gradient(45deg,#4285F4,#34A853,#FBBC05,#EA4335);
}

/* Facebook (opsiyonel) */
.facebook{
  background:#1877f2;
}

/* MAP */
.contact-map{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-map iframe{
  width:100%;
  height:380px;
  border:0;
}

/* MOBILE */
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-map iframe{
    height:300px;
  }
}


