/* ========== MEGA KEBAP – Global Styles ========== */
/* ============================
   LOKALE MONTSERRAT-FONTS
   ============================ */

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* du kannst optional mehr Schnitte hinzufügen, z. B. Medium oder ExtraBold */
* {
  font-family: 'Montserrat', sans-serif !important;
}


:root{
  --primary:#d60000;      /* helle Rot-Hauptfarbe */
  --dark:#0b0b0b;         /* Schwarz für Akzente */
  --bg:#ffffff;           /* heller Hintergrund */
  --muted:#666666;        /* Sekundärtext */
  --radius:18px;
  --shadow:0 18px 40px rgba(0,0,0,.08);
  --maxw:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Montserrat', sans-serif;
  color:#1a1a1a;
  background:var(--bg);
  line-height:1.55;
}

/* Skip link (a11y) */
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  position:fixed; left:16px; top:16px; width:auto; height:auto; background:#fff; color:#000;
  padding:10px 14px; border-radius:10px; z-index:2000; box-shadow:var(--shadow);
}

/* ======= Header / Nav ======= */
/* Schwarze Hauptnavigation */
/* ===== Navigation (schwarzer Stil) ===== */
.header {
  background: #000;
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

/* ===== Sticky Navigation ===== */
.header, .navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #000; /* oder dein aktueller Menü-Hintergrund */
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}

.brand img {
  height: 55px;   /* vorher 38px */
  width: auto;
  transition: all .3s ease;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #ff1b1b;
}

.menu .cta {
  background: #ff1b1b;
  padding: 6px 14px;
  border-radius: 8px;
  color: #fff !important;
}

.menu .cta:hover {
  background: #d01010;
}

.nav a {
  color: #fff;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ff1b1b; /* Rot beim Hover */
}

.nav .cta {
  background: #ff1b1b;
  color: #fff !important;
}

.nav .cta:hover {
  background: #d01010;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--dark)}
.brand img{height:40px; width:auto}
.brand b{font-size:19px; letter-spacing:.3px}
.menu{display:flex; gap:18px; align-items:center}
.menu a{
  text-decoration:none; color:var(--dark); font-weight:700; padding:8px 10px; border-radius:10px;
}
.menu a:hover{background:#f5f5f5}
.cta{background:var(--primary); color:#fff !important; padding:10px 14px !important; border-radius:12px; box-shadow:var(--shadow)}
main{padding-top:0}

/* ======= Hero ======= */
.hero{
  position:relative; color:#fff;
  background:linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
             url('assets/megakebap_innen_lokal.webp') center/cover no-repeat;
}
.hero .wrap{max-width:var(--maxw); margin:0 auto; padding:110px 20px 120px}
.badge{display:inline-block; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.25);
  padding:6px 10px; border-radius:999px; font-weight:700; letter-spacing:.3px}
.hero h1{font-size:56px; margin:16px 0 8px; line-height:1.06}
.hero p{font-size:20px; max-width:760px; color:#f0f0f0}
.actions{display:flex; gap:12px; margin-top:22px}
.btn{display:inline-flex; align-items:center; gap:8px; text-decoration:none; font-weight:800;
  padding:12px 18px; border-radius:14px}
.btn.primary{background:var(--primary); color:#fff; box-shadow:var(--shadow)}
.btn.light{background:#fff; color:#000}

/* ======= Sections ======= */
/* Einheitlicher vertikaler Abstand für alle Sektionen */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 20px; /* größerer, einheitlicher Abstand */
}

/* Überschriften und Untertitel immer gleich */
.section h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 36px;
}

.section .sub {
  margin-bottom: 40px;
  color: var(--muted);
}


/* Intro block */
.intro{
  background:#fff; border:1px solid #eee; border-radius:var(--radius); box-shadow:var(--shadow);
  padding:28px; font-size:18px;
}

/* Grid cards for food placeholders */
.grid{display:grid; gap:22px; grid-template-columns:repeat(12,1fr)}
.card{
  grid-column:span 4; background:#fff; border:1px solid #eee; border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow);
}
.card img {
  width: 100%;
  height: 300px; /* vorher 220px */
  object-fit: cover;
  display: block;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.card .p{padding:16px}
.card h3{margin:0 0 6px}
.tag{color:var(--primary); font-weight:800; font-size:12px; letter-spacing:.3px}

/* Slideshow (optional use on index) */
.slideshow{position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow)}
.slide{display:none}
.slide.active{display:block}
.slideshow img{width:100%; height:520px; object-fit:cover; display:block}
.slide-caption{
  position:absolute; left:0; right:0; bottom:0; color:#fff;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.65));
  padding:18px; font-weight:700
}
.slide-controls{position:absolute; inset:0; display:flex; align-items:center; justify-content:space-between; padding:0 8px}
.arrow{
  width:42px; height:42px; border-radius:50%; border:none; background:rgba(255,255,255,.9);
  display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:18px;
}

/* Menu-board with uploaded menu pages */
.menu-board{background:#fff; border:1px solid #eee; border-radius:var(--radius); padding:16px; box-shadow:var(--shadow)}
.menu-board .flex{display:flex; gap:14px; overflow:auto; scroll-snap-type:x mandatory; padding-bottom:6px}
.menu-board .flex img{height:560px; border-radius:14px; scroll-snap-align:center; border:1px solid #eee}

/* Phone video frame */
.phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px; /* vorher 30px → mehr Abstand zwischen Handy & Text */
}

.phone-wrap > div {
  max-width: 520px;
  margin-left: 20px; /* Text leicht nach rechts verschieben */
}

/* Optional: auf Handy zentriert */
@media (max-width: 900px) {
  .phone-wrap {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .phone-wrap > div {
    margin-left: 0;
  }
}

.phone{
  width:320px; height:640px; border:12px solid #000; border-bottom:28px solid #000; border-top:28px solid #000;
  border-radius:36px; overflow:hidden; background:#000; box-shadow:var(--shadow)
}
.phone video{width:100%; height:100%; object-fit:cover}

/* Footer */
/* Schwarzer Footer durchgehend */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 16px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: #ff1b1b;
}

.footer .legal {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 10px;
}

.footer img {
  filter: brightness(0) invert(1); /* Logo weiß einfärben */
}
.legal{border-top:1px solid #222; margin:0; padding:16px 20px; text-align:center; color:#aaa}

/* Animations (fade-in on scroll) */
.fade{opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease}
.fade.show{opacity:1; transform:none}

/* Responsive */
@media (max-width: 980px){
  .hero h1{font-size:44px}
  .grid .card{grid-column:span 6}
  .slideshow img{height:420px}
}
@media (max-width: 640px){
  .nav .brand b{display:none}
  .menu{display:none}
  .grid .card{grid-column:span 12}
  .hero .wrap{padding:80px 16px 100px}
  .slideshow img{height:320px}
  .phone{width:280px; height:560px}
}
/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  z-index: 9999;
  flex-wrap: wrap;
  gap: 10px;
  transition: opacity .5s ease;
}
.cookie-banner p {
  margin: 0;
  font-size: 15px;
  flex: 1 1 auto;
}
.cookie-banner a {
  color: #ffb3b3;
  text-decoration: underline;
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.cookie-banner button:hover {
  background: #b90000;
}
:root {
  --primary: #d60000;
  --text-dark: #000;
}

/* NAVIGATION */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .logo img {
  height: 45px;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.navbar nav a.active,
.navbar nav a:hover {
  color: var(--primary);
}

/* KONTAKT */
/* KONTAKT – gleiches Layout wie alle anderen Sektionen */
.kontakt-wrapper {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 20px;
  background: #fafafa;
  text-align: left;
}

.kontakt-wrapper h1 {
  font-size: 2.2rem;
  color: #000;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.kontakt-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt-left, .kontakt-right {
  flex: 1 1 420px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  background: white;
}

.kontakt-left {
  padding: 50px 40px;
  text-align: center;
  line-height: 1.8;
}

.kontakt-left h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.kontakt-left a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.kontakt-left a:hover {
  text-decoration: underline;
}

.kontakt-right iframe {
  border-radius: 20px;
  height: 100%;
  min-height: 400px;
}

/* Responsive */
@media (max-width: 900px) {
  .kontakt-box {
    flex-direction: column;
  }
}

/* COOKIE-BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border-radius: 12px;
  padding: 15px 25px;
  display: none;
  align-items: center;
  gap: 15px;
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 15px;
  cursor: pointer;
  font-weight: 600;
}
/* Nur die Kontakt-Sektion auf der Startseite anpassen */
main .kontakt-wrapper h1 {
  color: #000 !important;
  font-size: 2.2rem;
  text-transform: none;
  letter-spacing: 0;
}
main .kontakt-wrapper {
  text-align: left !important;
}
/* ======= Neue Speisekarten-Ansicht ======= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.menu-grid img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}

.menu-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
/* === Menü global auf weiß umstellen === */
.header, 
.nav, 
.menu a, 
.nav a, 
.brand, 
.brand b {
  color: #fff !important;
}

.menu a:visited {
  color: #fff !important;
}

.menu a:hover {
  color: #ff1b1b !important;
}

/* Kontakt-Button bleibt rot */
.menu .cta {
  background: #ff1b1b !important;
  color: #fff !important;
}

.menu .cta:hover {
  background: #d01010 !important;
}
/* ===== Footer (modernes, dreispaltiges Layout) ===== */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-col h3 {
  color: #ff1b1b;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ff1b1b;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-logo {
  width: 180px;   /* vorher 130px */
  height: auto;
  filter: none !important;
  transition: all .3s ease;
}

.footer-slogan {
  font-style: italic;
  color: #ccc;
  margin-top: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}
#bewertungen {
  text-align: left;
  margin-top: 80px;
}

#bewertungen h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

#bewertungen .sub {
  color: #777;
  margin-bottom: 30px;
  font-size: 1rem;
}

.elfsight-app-ab8736bf-983f-4280-9486-934b0fc4b809 {
  max-width: 1100px;
  margin: 0 auto;
}
/* === Cookie-Banner Fix === */
.cookie-banner {
  background: #fff !important;
  color: #000 !important;
}

.cookie-banner p {
  color: #000 !important;
}

.cookie-banner a {
  color: #d60000 !important;
  text-decoration: underline;
}

.cookie-banner button {
  background: #d60000 !important;
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  cursor: pointer;
}

.cookie-banner button:hover {
  background: #b40000 !important;
}
