:root{
  --bg:#0b0b0b;
  --text:#f2f2f2;
  --muted:#b9b9b9;

  --card:rgba(255,255,255,0.07);
  --stroke:rgba(255,255,255,0.12);

  --accent:#ffb23f;
  --accent2:#ff4d2d;

  --radius:18px;
  --shadow:0 12px 30px rgba(0,0,0,0.45);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px,92vw); margin:0 auto; }

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:0.2px;
  min-width: 220px;
}

.brand-logo{
  width:40px;
  height:40px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.04);
}

.brand-text{
  font-size:14px;
  opacity:.95;
  white-space:nowrap;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Call button */
.call-btn{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,0.06);
  box-shadow:var(--shadow);
  font-weight:900;
}

.call-ico{
  width:22px;
  height:22px;
  display:inline-block;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  border-radius:10px;
  position:relative;
}
.call-ico::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:10px;height:10px;
  border:2px solid rgba(20,20,20,0.9);
  border-top-color:transparent;
  border-left-color:transparent;
  border-radius:3px;
  transform:rotate(45deg);
  opacity:0.85;
}

.call-text{ font-size:13px; color:rgba(255,255,255,0.85); }
.call-number{ font-size:13px; color:var(--accent); }

/* Nav */
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav a{
  font-weight:800;
  font-size:14px;
  opacity:.9;
}
.nav a:hover{ opacity:1; color:var(--accent); }

/* Hamburger */
.nav-toggle{
  display:none;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,0.06);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
  box-shadow:var(--shadow);
}

.hamburger{
  display:inline-flex;
  flex-direction:column;
  gap:5px;
  width:22px;
}
.hamburger span{
  height:2px;
  border-radius:999px;
  background:rgba(255,255,255,0.9);
  display:block;
}

/* Hero */
.hero{
  position:relative;
  min-height:78vh;
  display:grid;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* Slider container */
.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
}

/* Slides */
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1.1s ease-in-out;
}

/* Dark overlay for readability */
.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(60% 60% at 70% 10%, rgba(255,178,63,0.18), transparent 60%),
    radial-gradient(50% 50% at 20% 20%, rgba(255,77,45,0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.60), rgba(0,0,0,0.90));
}

.hero-slide.active{ opacity:1; }

.hero-inner{
  position:relative;
  padding:70px 0 56px;
}

.hero-kicker{
  display:inline-block;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(0,0,0,0.35);
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  color:var(--accent);
}

.hero h1{
  margin:14px 0 10px;
  font-size:clamp(32px,4vw,56px);
  line-height:1.05;
  letter-spacing:-0.6px;
}

.hero-sub{
  max-width:64ch;
  color:rgba(255,255,255,0.86);
  font-size:16px;
  line-height:1.7;
  margin:0 0 18px;
}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--stroke);
  font-weight:1000;
  font-size:14px;
  letter-spacing:0.2px;
  box-shadow:var(--shadow);
}

.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#141414;
  border:none;
}

.btn-ghost{
  background:rgba(0,0,0,0.35);
}

.hero-badges{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}

.badge{
  padding:14px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(0,0,0,0.38);
}

.badge-title{
  display:block;
  font-size:12px;
  color:rgba(255,255,255,0.7);
  margin-bottom:6px;
}

.badge-value{
  font-weight:1000;
  font-size:14px;
}

.badge-link{ color:var(--accent); }
.badge-link:hover{ color:var(--accent2); }

/* Dots + hint */
.hero-dots{
  display:flex;
  gap:8px;
  margin-top:16px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.08);
  cursor:pointer;
}
.dot.active{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  border-color:transparent;
}
.hero-hint{
  margin-top:10px;
  font-size:12px;
  color:rgba(255,255,255,0.65);
}

/* Sections */
.section{ padding:64px 0; }
.section-dark{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
}

.section-head{ margin-bottom:18px; }
.section-head h2{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:-0.3px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  max-width:78ch;
}
.section-head strong{ color:rgba(255,255,255,0.92); }

/* Photo sections with background images */
.section-photo{
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(255,255,255,0.08);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.section-photo .container{ position:relative; z-index:2; }
.section-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.86));
}

/* Backgrounds */
.about{ background: url("assets/dışarı.png") center/cover no-repeat; }
.contact{ background: url("assets/lobi.png") center/cover no-repeat; }
.social{ background: url("assets/tabela.png") center/cover no-repeat; }

/* Cards */
.cards{
  display:grid;
  gap:14px;
  margin-top:18px;
}
.grid-3{ grid-template-columns:repeat(3,minmax(0,1fr)); }
.grid-2{ grid-template-columns:repeat(2,minmax(0,1fr)); }

.card{
  padding:18px;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
}

.card h3{ margin:0 0 8px; font-size:16px; }
.card p{
  margin:0;
  color:rgba(255,255,255,0.84);
  line-height:1.75;
}
.muted{ color:var(--muted) !important; }

.big-link a{
  font-size:20px;
  font-weight:1000;
  color:var(--accent);
}
.big-link a:hover{ color:var(--accent2); }

.inline-link{
  display:inline-flex;
  align-items:center;
  font-weight:900;
  color:var(--accent);
}
.inline-link:hover{ color:var(--accent2); }

.mini-muted{
  margin-top:8px !important;
  font-size:13px;
  color:rgba(255,255,255,0.70);
}

/* Menu */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

.menu-card{
  padding:18px;
  border-radius:var(--radius);
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:var(--shadow);
}

.menu-card-head{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:10px;
  margin-bottom:8px;
}

.menu-card h3{ margin:0; font-size:16px; }
.price{ font-weight:1000; color:var(--accent); }

.menu-card p{
  margin:0;
  color:rgba(255,255,255,0.80);
  line-height:1.7;
  font-size:14px;
}

.mini-list{
  margin:10px 0 0;
  padding-left:18px;
  color:rgba(255,255,255,0.72);
  line-height:1.6;
  font-size:13px;
}

.note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px dashed rgba(255,255,255,0.22);
  color:rgba(255,255,255,0.82);
}

/* Map */
.map-wrap{
  margin-top:18px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  background:rgba(255,255,255,0.04);
}

.map{
  width:100%;
  height:340px;
  border:0;
  display:block;
}

/* Footer */
.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,0.08);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,0.75);
  font-size:14px;
}

/* Responsive */
@media (max-width: 900px){
  .hero-badges{ grid-template-columns:1fr; }
  .grid-2, .grid-3{ grid-template-columns:1fr; }
  .menu-grid{ grid-template-columns:1fr; }

  /* call btn: mobilde sade */
  .call-number{ display:none; }
  .call-text{ display:none; }

  .nav-toggle{ display:block; }

  .nav{
    position:absolute;
    right:4vw;
    top:64px;
    display:none;
    flex-direction:column;
    width:min(260px,92vw);
    background:rgba(0,0,0,0.82);
    border:1px solid rgba(255,255,255,0.14);
    border-radius:16px;
    padding:10px;
    box-shadow:var(--shadow);
    z-index:50;
  }

  .nav a{
    padding:10px 12px;
    border-radius:12px;
    font-weight:900;
  }

  .nav a:hover{ background:rgba(255,255,255,0.06); }
  .nav.open{ display:flex; }
}
