/* ============================================
   CITY KEBAP HAUS — Rock'n'Döner Design
   AC/DC meets Döner · Gritty Imbiss Vibes
   HDR Web Studio · 2026
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap');

:root {
  --fire-red: #E2262E;
  --fire-orange: #F57C20;
  --fire-yellow: #FFC107;
  --ember: #FF4500;
  --black: #0D0D0D;
  --black-light: #1A1A1A;
  --black-card: #1E1E1E;
  --gray-dark: #2A2A2A;
  --gray: #888;
  --gray-light: #BBB;
  --white: #F5F5F5;
  --font-main: 'Inter', system-ui, sans-serif;
  --font-heading: 'Oswald', 'Impact', sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--black); color: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--fire-red); color: #fff; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }

/* --- Section Headers --- */
.section-tag {
  display: inline-block; font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fire-orange); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 1.1; margin-bottom: 16px;
}
.fire-underline {
  display: block; width: 60px; height: 4px; margin: 16px auto 0;
  background: linear-gradient(90deg, var(--fire-red), var(--fire-orange), var(--fire-yellow));
  border-radius: 2px;
}

/* --- Header --- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(13,13,13,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: visible;
}
.site-header.scrolled { border-bottom-color: var(--fire-red); box-shadow: 0 2px 20px rgba(226,38,46,0.15); }
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 80px; max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
.logo {
  display: flex; align-items: center; align-self: flex-start;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.logo span { color: var(--fire-red); }
.logo-img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; flex-shrink: 0; position: relative; z-index: 110; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.nav-desktop { display: flex; gap: 28px; list-style: none; }
.nav-desktop a {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-light);
}
.nav-desktop a:hover { color: var(--fire-orange); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fire-red); color: #fff; padding: 10px 22px;
  border-radius: 6px; font-family: var(--font-heading); font-size: 0.85rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.header-cta:hover { background: var(--ember); transform: translateY(-1px); }
.menu-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px;
  transition: var(--transition); position: relative;
}
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; }
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }
.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { transform: rotate(45deg); top: 0; }
.menu-toggle.active span::after { transform: rotate(-45deg); top: 0; }
.mobile-nav {
  display: none; position: fixed; top: 80px; left: 0; width: 100%;
  background: var(--black); border-bottom: 2px solid var(--fire-red);
  padding: 16px 24px; flex-direction: column; gap: 4px; z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 16px; font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600; text-transform: uppercase;
  color: var(--white); border-radius: 6px; letter-spacing: 0.05em;
}
.mobile-nav a:hover { background: var(--black-light); color: var(--fire-orange); }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--black); overflow: hidden; padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-fire-wrap { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-fire-video { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: screen; opacity: 0.35; }
.hero-doener-wrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-doener-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.5) 50%, rgba(13,13,13,0.7) 100%);
}
/* Flame glow at bottom */
.hero-bg::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; z-index: 3;
  background: linear-gradient(to top, rgba(226,38,46,0.08), transparent);
}
.hero-content { position: relative; z-index: 2; padding: 60px 0; }
.hero-tag {
  display: inline-block; font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fire-orange); margin-bottom: 20px;
  padding: 8px 16px; border: 1px solid rgba(245,124,32,0.3); border-radius: 4px;
  background: rgba(245,124,32,0.08);
}
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.0;
  margin-bottom: 20px; max-width: 650px; letter-spacing: 0.02em;
}
.hero h1 .fire { 
  background: linear-gradient(135deg, var(--fire-red), var(--fire-orange), var(--fire-yellow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem; color: var(--gray-light); max-width: 480px;
  line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-fire {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--fire-red), var(--ember));
  color: #fff; padding: 16px 32px; border-radius: 6px;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(226,38,46,0.4);
}
.btn-fire:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(226,38,46,0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(255,255,255,0.2); color: var(--white);
  padding: 14px 32px; border-radius: 6px;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-ghost:hover { border-color: var(--fire-orange); color: var(--fire-orange); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--fire-orange); }
.hero-stat-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--black-light); border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04); padding: 24px 0;
}
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px 48px; }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-light);
}
.trust-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(226,38,46,0.12); border: 1px solid rgba(226,38,46,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

/* --- Menu --- */
.menu-section { background: var(--black); }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 40px;
}
.menu-card {
  background: var(--black-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 28px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.menu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--fire-red), var(--fire-orange));
  opacity: 0; transition: var(--transition);
}
.menu-card:hover { border-color: rgba(226,38,46,0.3); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.menu-card:hover::before { opacity: 1; }
.menu-card-icon { font-size: 2rem; margin-bottom: 16px; }
.menu-card h3 { font-family: var(--font-heading); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.menu-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.price-tag {
  display: inline-block; margin-top: 16px; padding: 6px 14px;
  background: rgba(226,38,46,0.1); border: 1px solid rgba(226,38,46,0.2);
  color: var(--fire-orange); border-radius: 4px;
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
}

/* --- About --- */
.about-section { background: var(--black-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
.about-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 2px solid rgba(226,38,46,0.2);
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--fire-red); color: #fff; padding: 10px 18px;
  border-radius: 6px; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase;
}
.about-text h3 { font-family: var(--font-heading); font-size: 1.6rem; text-transform: uppercase; margin-bottom: 16px; }
.about-text p { color: var(--gray-light); margin-bottom: 14px; line-height: 1.8; }
.about-features { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-features li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--white); font-size: 0.95rem;
}
.about-features li::before {
  content: '🔥'; font-size: 0.9rem;
}

/* --- Reviews --- */
.reviews-section { background: var(--black); }
.rating-text { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--fire-orange); }
.rating-count { font-size: 0.9rem; color: var(--gray); margin-top: 4px; }
.stars { color: var(--fire-yellow); font-size: 1.2rem; letter-spacing: 2px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 36px;
}
.review-card {
  background: var(--black-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 24px; transition: var(--transition);
}
.review-card:hover { border-color: rgba(226,38,46,0.3); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: #fff;
}
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-date { font-size: 0.75rem; color: var(--gray); }
.review-stars { color: var(--fire-yellow); margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; font-style: italic; }

/* --- Contact --- */
.contact-section {
  background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.hours-card, .contact-card {
  background: var(--black-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 32px;
}
.hours-card h3, .contact-card h3 {
  font-family: var(--font-heading); font-size: 1.3rem; text-transform: uppercase;
  color: var(--fire-orange); margin-bottom: 20px;
}
.hours-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.9rem;
}
.hours-row:last-child { border: none; }
.hours-row .day { color: var(--gray); }
.hours-row .time { font-weight: 600; }
.hours-row.today .day, .hours-row.today .time { color: var(--fire-orange); }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(226,38,46,0.12); border: 1px solid rgba(226,38,46,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-value { font-size: 1rem; font-weight: 600; }
.contact-value a:hover { color: var(--fire-orange); }
.map-wrap {
  grid-column: 1 / -1; border-radius: var(--radius); overflow: hidden;
  height: 300px; border: 1px solid rgba(255,255,255,0.06);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: invert(0.9) hue-rotate(180deg) saturate(0.3) brightness(0.7); }

/* --- Float CTA --- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: var(--fire-red); color: #fff; padding: 14px 24px;
  border-radius: 8px; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(226,38,46,0.4); transition: var(--transition);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(226,38,46,0.5); background: var(--ember); }

/* --- Footer --- */
.site-footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.04);
  padding: 28px 0; text-align: center;
}
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 10px; }
.footer-links a { font-size: 0.8rem; color: var(--gray); }
.footer-links a:hover { color: var(--fire-orange); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* --- Modal --- */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--black-card); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); max-width: 600px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 36px; position: relative; color: var(--gray-light);
}
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 6px; background: rgba(255,255,255,0.06); display: flex;
  align-items: center; justify-content: center; color: var(--gray); font-size: 1.2rem;
}
.modal-close:hover { background: rgba(226,38,46,0.2); color: var(--fire-red); }
.modal-box h2 { font-family: var(--font-heading); font-size: 1.5rem; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.modal-box h3 { font-size: 1rem; font-weight: 700; margin: 16px 0 6px; color: var(--white); }
.modal-box p { font-size: 0.85rem; line-height: 1.8; }

/* --- Language Switcher --- */
.lang-switch { display: flex; gap: 4px; margin-left: 8px; }
.lang-btn {
  padding: 5px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 700;
  font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gray); background: transparent; border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition); cursor: pointer;
}
.lang-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.lang-btn.active { color: var(--white); background: var(--fire-red); border-color: var(--fire-red); }

/* --- Animations --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.6rem; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-fire, .btn-ghost { justify-content: center; width: 100%; }
  .menu-grid, .reviews-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: center; }
  .section-pad { padding: 56px 0; }
  .wa-float span { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }
}
