/*
  PizzaBros Egelsbach – Landing Styles
  Modern, clean, responsive. Adjust variables as needed.
*/

/* Font Face Declarations */
/* Hinweis: Font-Dateien werden nicht geladen, da sie nicht vorhanden sind.
   Die Fallback-Fonts werden verwendet:
   - Ganache -> "Playfair Display", serif
   - Proxima Nova -> -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif
   - Calibri -> "Trebuchet MS", Arial, sans-serif
*/

:root {
  --bg: #2a2a2a;
  --panel: #1a1a1a;
  --text: #F68C23;
  --muted: #F68C23;
  --primary: #F68C23;
  --primary-600: #d67a1f;
  --accent: #F68C23;
  --accent-light: #F68C23;
  --accent-dark: #d67a1f;
  --teal: #00A9C8;
  --teal-dark: #0089a3;
  --orange: #F68C23;
  --orange-logo: #F68B22;
  --orange-dark: #d67a1f;
  --blue: #00A9C8;
  --red: #E32228;
  --ok: #00A9C8;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-primary: 0 8px 24px rgba(246, 140, 35, 0.6);
  --shadow-accent: 0 8px 24px rgba(246, 140, 35, 0.5);
  --shadow-teal: 0 8px 24px rgba(0, 169, 200, 0.4);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  overflow-y: scroll;
  /* Restore scrolling */
  overflow-x: hidden;
  /* Prevent horizontal scrollbar on viewport */
}

html,
body {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #ffffff;
  background: var(--bg);
  line-height: 1.6;
  transition: margin-right 0.3s ease;
  min-height: 100vh;
  padding-top: 73px;
  padding-top: 73px;
  overflow-x: visible;
  /* Wichtig für Sticky Positioning */
  overflow-y: visible;
  /* Wichtig für Sticky Positioning */
}

.landing-page {
  background:
    radial-gradient(circle at top, rgba(246, 140, 35, 0.32) 0, transparent 55%),
    radial-gradient(circle at bottom, rgba(0, 169, 200, 0.18) 0, transparent 55%),
    #141414;
  padding-top: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

h1,
h2,
h3 {
  line-height: 1.2;
  color: #F68C23 !important;
}

h1 {
  font-family: "Ganache", "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw + 1rem, 3.2rem);
  margin: 0 0 12px;
  color: var(--text);
  font-weight: normal;
}

h2 {
  font-family: "Ganache", "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.2vw + 0.6rem, 2rem);
  margin: 0 0 16px;
  color: var(--text);
  font-weight: normal;
}

h3 {
  font-family: "Ganache", "Playfair Display", serif;
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--text);
  font-weight: normal;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  backdrop-filter: saturate(180%) blur(10px);
  background: color-mix(in srgb, var(--panel) 95%, transparent);
  border-bottom: 1px solid rgba(246, 140, 35, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.header-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.header-logo-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header-logo:hover .header-logo-img {
  box-shadow: 0 4px 12px rgba(246, 140, 35, 0.4);
}

.header-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.header-brand-name .brand-pizza {
  color: var(--red);
}

.header-brand-name .brand-bros {
  color: #ffffff;
}

.header-phone {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--primary);
}

/* Telefon-Icon Dropdown für Mobile */
.header-phone-dropdown {
  position: relative;
  display: none;
  /* Standard: versteckt, wird auf Mobile angezeigt */
}

.header-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(246, 140, 35, 0.1);
  border: 1px solid rgba(246, 140, 35, 0.3);
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.header-phone-icon:hover,
.header-phone-icon:focus {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  outline: none;
}

.header-phone-icon[aria-expanded="true"] {
  background: var(--primary);
  border-color: var(--primary);
}

/* Make phone icons white */
.header-phone img,
.header-phone-icon img {
  filter: brightness(0) invert(1);
}

.phone-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--panel);
  border: 1px solid rgba(246, 140, 35, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  z-index: 1000;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.phone-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-dropdown-item:last-child {
  border-bottom: none;
}

.phone-dropdown-item:hover {
  background: rgba(246, 140, 35, 0.15);
  color: var(--primary);
}

.phone-dropdown-item .phone-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.phone-dropdown-item .phone-label {
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 60px;
}

.phone-dropdown-item .phone-number {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  flex: 1;
  text-align: right;
}

@media (max-width: 768px) {

  /* Zeige Telefon-Icon auf mobilen Geräten */
  .header-phone-dropdown {
    display: block;
  }

  /* Verstecke Desktop-Telefonnummern auf mobilen Geräten */
  .header-phone {
    display: none;
  }

  .header-left {
    gap: 12px;
  }

  .header-logo-img {
    width: 38px;
    height: 38px;
  }

  .header-brand-name {
    font-size: 1.25rem;
  }

  .header-phone {
    font-size: 0.95rem;
  }

  .header-actions {
    gap: 6px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .header-whatsapp,
  .header-login,
  .header-logout,
  .header-admin,
  .header-account {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  /* Login-Button auf Tablets etwas größer */
  .header-login.nav-login {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  /* Login/Account Buttons - JavaScript steuert die Sichtbarkeit */
  /* Keine !important Regeln mehr, damit JavaScript die Kontrolle hat */
}

@media (max-width: 480px) {

  /* Verstecke Telefonnummern auf sehr kleinen Bildschirmen, um Platz für Login-Button zu schaffen */
  .header-phone {
    display: none;
  }

  .header-left {
    gap: 8px;
  }

  .header-logo-img {
    width: 35px;
    height: 35px;
  }

  .header-brand-name {
    font-size: 1.1rem;
  }

  .header-actions {
    gap: 6px;
  }

  /* Größerer Login/Account-Button auf sehr kleinen Bildschirmen */
  /* Removed !important to allow JavaScript full control over visibility */
  .header-login,
  .header-account {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
    background: rgba(246, 140, 35, 0.2);
    border: 2px solid rgba(246, 140, 35, 0.5);
    box-shadow: 0 2px 8px rgba(246, 140, 35, 0.3);
  }

  /* Login-Button Order - aber keine !important, damit JavaScript die Kontrolle hat */
  .header-login.nav-login {
    order: -1;
    /* Zeige Login-Button zuerst */
  }

  /* Warenkorb-Button auf Mobile komplett ausblenden (wird durch Floating Button ersetzt) */
  .desktop-cart-button,
  .cart-button-wrapper,
  #cart-button {
    display: none !important;
    visibility: hidden !important;
  }
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-whatsapp,
.header-login,
.header-logout,
.header-admin,
.header-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(246, 140, 35, 0.1);
  border: 1px solid rgba(246, 140, 35, 0.3);
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  /* Display wird von JavaScript gesteuert - keine Standard-Display-Regel */
}

.header-whatsapp:hover,
.header-login:hover,
.header-logout:hover,
.header-admin:hover,
.header-account:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.header-admin {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Desktop Warenkorb-Button - nur auf Desktop sichtbar */
.desktop-cart-button {
  display: block;
}

.cart-button-wrapper {
  display: flex;
}

/* Auf Mobile komplett ausblenden - sowohl Desktop-Button als auch Wrapper */
@media (max-width: 1023px) {

  /* Alle Varianten des Desktop-Warenkorbs ausblenden */
  .desktop-cart-button,
  .cart-button-wrapper.desktop-cart-button,
  .header-actions .cart-button-wrapper,
  .header-actions .desktop-cart-button,
  .header-actions #cart-button,
  .header-actions button#cart-button,
  #cart-button,
  button#cart-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  /* Auch den Wrapper komplett ausblenden */
  /* Auch den Wrapper komplett ausblenden */
  .header-actions>.cart-button-wrapper,
  .header-actions .cart-button-wrapper {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

#cart-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
}

#cart-button:hover {
  background: var(--primary-600);
}

#cart-count {
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-size: 0.8rem;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.brand:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.brand:hover img {
  box-shadow: 0 4px 12px rgba(246, 140, 35, 0.4);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav a:not(.btn) {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav a:not(.btn):hover {
  color: var(--primary);
}

/* Navigation Buttons - gleich groß und auf gleicher Höhe */
.nav .btn,
.nav button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav .nav-account,
.nav .nav-logout,
.nav .nav-login {
  min-width: auto;
  height: 44px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn.primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.btn.primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.7);
  transform: translateY(-2px);
}

.btn.ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-1px);
  color: var(--text);
}

.btn.w-full {
  width: 100%;
}

/* WhatsApp button styling */
.btn img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.btn.ghost img {
  filter: brightness(0) invert(0.8);
}

.btn.ghost:hover img {
  filter: brightness(0) invert(1);
}

/* Lieferadresse-Check */
.delivery-check-section {
  padding: 20px 0;
  background: var(--panel);
  border-bottom: 1px solid rgba(246, 140, 35, 0.2);
}

.delivery-check {
  max-width: 600px;
  margin: 0 auto;
}

.delivery-check label {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.delivery-check-input-group {
  display: flex;
  gap: 12px;
}

.delivery-check-input-group input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(246, 140, 35, 0.3);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
}

.delivery-check-input-group input:focus {
  outline: none;
  border-color: #F68C23;
  box-shadow: 0 0 0 3px rgba(246, 140, 35, 0.1);
}

.delivery-check-result {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 600;
}

.delivery-check-result.success {
  background: rgba(0, 169, 200, 0.2);
  border: 1px solid rgba(0, 169, 200, 0.5);
  color: #00A9C8;
}

.delivery-check-result.error {
  background: rgba(227, 34, 40, 0.2);
  border: 1px solid rgba(227, 34, 40, 0.5);
  color: #E32228;
}

/* Promo Banner - Schwebend oberhalb des Logos */
#promo-banner-container {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 20px;
}

.promo-banner {
  background: linear-gradient(135deg, #F68C23 0%, #d67a1f 50%, #F68C23 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 8px 16px;
  box-shadow:
    0 8px 32px rgba(246, 140, 35, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 4px 16px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  position: relative;
  animation: promoBannerFloat 3s ease-in-out infinite;
  max-width: 320px;
  width: 100%;
  backdrop-filter: blur(10px);
}

@keyframes promoBannerFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.promo-banner-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.promo-banner-image {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: 2px;
}

.promo-banner-text {
  flex: 1;
}

.promo-banner-text h3 {
  margin: 0 0 2px;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.promo-banner-text p {
  margin: 0;
  color: #ffffff;
  font-size: 0.7rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  font-weight: 400;
  line-height: 1.3;
}

.promo-banner-close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #F68C23;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.promo-banner-close:hover {
  background: #ffffff;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  #promo-banner-container {
    top: 60px;
    padding: 0 16px;
    z-index: 220;
  }

  .promo-banner {
    padding: 6px 12px;
    border-radius: 12px;
    max-width: 280px;
  }

  .promo-banner-text h3 {
    font-size: 0.75rem;
  }

  .promo-banner-text p {
    font-size: 0.65rem;
  }

  .promo-banner-image {
    max-width: 50px;
    max-height: 50px;
  }

  .promo-banner-close {
    width: 20px;
    height: 20px;
    font-size: 0.85rem;
    top: -4px;
    right: -4px;
  }
}

/* Hero */
.hero {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  text-align: center;
  min-height: calc(100vh - 73px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.landing-page .hero {
  min-height: 100vh;
  width: 100%;
}

.hero-opening-hours {
  position: static;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  z-index: auto;
  margin-bottom: 16px;
  width: 100%;
  max-width: 500px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-opening-hours .hours-label {
  display: inline;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #F68C23;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.hero-opening-hours .hours-times {
  display: inline;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

/* Hero Logo Center - sehr präsent wie bei WildBeef */
.hero-logo-center {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0 auto 40px;
  padding: 0 20px;
  padding-top: 60px;
  animation: fadeInScale 1.2s ease-out;
  position: relative;
  z-index: 10;
}

/* Badges Container */
.hero-badges-left,
.hero-badges-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 auto;
}

.hero-badges-left {
  align-items: flex-end;
  text-align: right;
}

.hero-badges-right {
  align-items: flex-start;
  text-align: left;
}

/* Badge Styling */
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  width: 180px;
  min-height: 70px;
  animation: fadeInScale 1.2s ease-out;
}

.hero-badges-left .hero-badge {
  animation-delay: 0.2s;
}

.hero-badges-right .hero-badge {
  animation-delay: 0.4s;
}

.hero-badge:nth-child(2) {
  animation-delay: 0.6s;
}

.hero-badge:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(246, 140, 35, 0.4);
  border-color: rgba(246, 140, 35, 0.3);
}

.badge-icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.badge-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  white-space: normal;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
}

/* Hero Brand Name */
.hero-brand-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
  font-weight: 700;
  color: #F68C23 !important;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 2px;
  line-height: 1.1;
  animation: fadeInScale 1.2s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.hero-brand-location {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInScale 1.2s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.hero-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
}

.hero-main-logo {
  width: clamp(240px, 38vw, 420px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 12px rgba(0, 0, 0, 0.55),
    0 22px 60px rgba(0, 0, 0, 0.9),
    0 0 80px rgba(246, 140, 35, 0.55);
  animation: floatLogo 3s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Hero CTAs zentriert */
.hero-ctas-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 48px;
  animation: fadeInUp 1.2s ease-out 0.4s both;
  width: 100%;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Großer Button wie bei WildBeef */
.btn-large {
  font-size: 1.1rem;
  padding: 16px 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 14px 40px rgba(246, 140, 35, 0.7);
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(246, 140, 35, 0.5);
}

/* Responsive - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-logo-center {
    max-width: 1000px;
    gap: 30px;
  }

  .hero-badge {
    width: 160px;
    min-height: 65px;
    padding: 14px 18px;
  }

  .badge-text {
    font-size: 1rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 0;
    min-height: calc(100vh - 73px);
    padding-top: 20px;
  }

  /* Spezielle Anpassung für die Landingpage mobil */
  .landing-page .hero {
    min-height: 100vh;
    padding: 0 16px;
    padding-top: 20px;
  }

  .hero-opening-hours {
    position: static;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    max-width: calc(100% - 32px);
    width: auto;
    font-size: 0.8rem;
  }

  .hero-opening-hours .hours-label {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .hero-opening-hours .hours-times {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .landing-page .hero-logo-center {
    width: 100%;
    margin-bottom: 32px;
    padding: 0;
    padding-top: 100px;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    margin-top: 20px;
  }

  .landing-page .hero-logo-wrapper {
    order: 1;
    gap: 8px;
  }

  .landing-page .hero-main-logo {
    width: min(82vw, 340px);
  }

  .hero-brand-name {
    font-size: clamp(2rem, 6vw, 3rem);
    letter-spacing: 1px;
  }

  .hero-brand-location {
    font-size: clamp(0.85rem, 2vw, 1rem);
    letter-spacing: 0.5px;
  }

  .hero-badges-left,
  .hero-badges-right {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }

  .hero-badges-left {
    order: 2;
    align-items: center;
    text-align: center;
  }

  .hero-badges-right {
    order: 2;
    align-items: center;
    text-align: center;
  }

  .hero-badge {
    width: calc(50% - 6px);
    min-height: 60px;
    padding: 10px 12px;
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 4px);
  }

  .badge-text {
    font-size: 0.75rem;
    white-space: normal;
    line-height: 1.2;
  }

  .landing-page .btn-large {
    font-size: 1rem;
    padding: 14px 30px;
    width: 100%;
    max-width: none;
  }

  .landing-page .hero-ctas-center {
    margin-top: 16px;
    margin-bottom: 40px;
    padding-top: 4px;
  }

  .landing-page .hero {
    padding-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .landing-page .hero-logo-center {
    padding: 0;
    padding-top: 90px;
    gap: 10px;
    z-index: 10;
    margin-top: 10px;
  }

  .hero-logo-wrapper {
    gap: 6px;
  }

  .hero-brand-name {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    letter-spacing: 0.5px;
  }

  .hero-brand-location {
    font-size: clamp(0.75rem, 2.5vw, 0.9rem);
    letter-spacing: 0.3px;
  }

  .hero-opening-hours {
    position: static;
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: calc(100% - 24px);
    width: auto;
    font-size: 0.75rem;
    gap: 6px;
  }

  .hero-opening-hours .hours-label {
    font-size: 0.7rem;
  }

  .hero-opening-hours .hours-times {
    font-size: 0.75rem;
  }

  #promo-banner-container {
    top: 50px;
  }

  .landing-page .hero-main-logo {
    width: min(88vw, 280px);
  }

  .hero-badge {
    width: calc(50% - 6px);
    min-height: 60px;
    padding: 10px 12px;
    max-width: calc(50% - 4px);
  }

  .badge-text {
    font-size: 0.7rem;
    white-space: normal;
    line-height: 1.2;
  }

  .landing-page .btn-large {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}

/* Hero für Unterseiten (kleineres Logo) */
.hero-menu-page {
  padding: 60px 0 40px;
  min-height: auto;
}

.hero-logo-small {
  max-width: 200px;
  margin-bottom: 20px;
}

.hero-menu-page h1 {
  margin-top: 0;
  animation: fadeInUp 1.2s ease-out 0.2s both;
}

@media (max-width: 768px) {
  .hero-menu-page {
    padding: 40px 0 30px;
  }

  .hero-logo-small {
    max-width: 150px;
    margin-bottom: 15px;
  }
}

/* Alte Hero-Styles (werden nicht mehr verwendet, aber bleiben für Kompatibilität) */
.hero-two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  text-align: left;
}

.hero-subtitle {
  color: var(--muted);
  margin: 8px 0 18px;
  font-size: 1.05rem;
}

.hero-ctas {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  background: #111;
}

@media (max-width: 900px) {
  .hero-logo-badge {
    position: static;
    margin-bottom: 8px;
  }
}

/* Urlaubs-Banner */
.holiday-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #F68C23, #d67a1f, #F68C23);
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 6px 30px rgba(246, 140, 35, 0.4);
  animation: slideDown 0.5s ease-out, pulse 2s infinite;
  border-bottom: 3px solid #F68C23;
  display: none;
}

/* Banner versteckt */
.holiday-banner.banner-hidden {
  display: none !important;
}

.holiday-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.holiday-icon {
  font-size: 2rem;
  animation: bounce 1s infinite;
}

.holiday-date {
  font-weight: 800;
  text-decoration: underline;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.holiday-close {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.holiday-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Hero Closure Notice */
.hero-closure-notice {
  margin-top: 15px;
  margin-bottom: 10px;
  animation: fadeIn 0.8s ease-out;
}

.closure-badge {
  display: inline-block;
  background: rgba(227, 34, 40, 0.15);
  color: #ff4d4d;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(227, 34, 40, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(227, 34, 40, 0.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 6px 30px rgba(246, 140, 35, 0.4);
  }

  50% {
    box-shadow: 0 8px 40px rgba(246, 140, 35, 0.6);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Hero mit Banner anpassen */
.hero.with-banner {
  padding-top: 80px;
}

.hero.with-banner .hero-logo-center {
  padding-top: 20px;
}

@media (max-width: 768px) {
  .hero.with-banner {
    padding-top: 100px;
  }

  .hero.with-banner .hero-logo-center {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  .hero.with-banner {
    padding-top: 90px;
  }

  .hero.with-banner .hero-logo-center {
    padding-top: 110px;
  }
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.hero-logo {
  animation: fadeInUp 0.8s ease-out;
}

.hero-logo img {
  filter: drop-shadow(0 8px 24px rgba(246, 140, 35, 0.4));
}

.hero-pizza-image {
  animation: fadeInUp 0.8s ease-out 0.3s both;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.pizza-display-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 8px 24px rgba(246, 140, 35, 0.3));
}

@media (min-width: 768px) {
  .hero-visual {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .hero-pizza-image {
    flex: 1;
    max-width: 500px;
  }

  .pizza-display-image {
    max-width: 100%;
  }
}

.hero-app-promo {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-app-promo h2 {
  margin-bottom: 20px;
  color: var(--text);
}

.app-download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.app-download-btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--panel);
  border: 2px solid rgba(246, 140, 35, 0.3);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.app-download-btn:hover {
  background: #F68C23;
  border-color: #F68C23;
  transform: translateY(-2px);
}

.app-download-btn img {
  height: 40px;
  width: auto;
}

.hero-payment-methods {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-payment-methods p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 600;
}

.payment-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-icons span {
  padding: 8px 16px;
  background: var(--panel);
  border: 1px solid rgba(246, 140, 35, 0.2);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
}

.usp {
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
  color: var(--muted);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.usp li {
  position: relative;
  padding-left: 20px;
}

.usp li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: bold;
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}


/* Sections */
.section {
  padding: 56px 0;
  background: #000000;
}

.section.alt {
  background: #000000;
  border-block: 1px solid rgba(255, 255, 255, .1);
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F68C23, #F68C23, #00A9C8);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 10, 0.9);
}

.card h3 {
  transition: color 0.3s ease;
  color: var(--text);
}

.card:hover h3 {
  color: #F68C23;
}

.card p {
  color: var(--muted);
}

.card .price {
  margin-top: 8px;
  display: inline-block;
  font-weight: 700;
  color: var(--orange);
  transition: transform 0.3s ease;
}

.card:hover .price {
  transform: scale(1.05);
  color: var(--orange);
}

.note {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 10px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.feature-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(10, 10, 10, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F68C23, #F68C23, #00A9C8);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(15, 15, 15, 0.9);
}

.feature p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #F68C23, #d67a1f);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(246, 140, 35, 0.5);
  text-transform: uppercase;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}

.logo-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.logo-badge img {
  filter: drop-shadow(0 4px 12px rgba(246, 139, 34, 0.5));
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px;
}

.logo-badge:hover img {
  transform: scale(1.05);
}

.logo-badge span {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.banner {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  color: var(--text);
}

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: var(--text);
}

.hours li span:first-child {
  color: var(--text);
  font-weight: 600;
}

.hours li span:last-child {
  color: var(--muted);
}

.address {
  font-style: normal;
  color: var(--text);
}

.address strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.address span {
  color: var(--muted);
  display: block;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, .05);
  transition: all 0.3s ease;
}

.chip:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}

.chip img {
  filter: brightness(0) invert(0.8);
  transition: filter 0.3s ease;
}

.chip:hover img {
  filter: brightness(0) invert(1);
}

.map-section {
  height: 360px;
  border-block: 1px solid rgba(255, 255, 255, .1);
  background: #000000;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.3) saturate(.8) contrast(1.1) brightness(0.9);
}

.contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.contact li {
  color: var(--text);
}

.contact li strong {
  color: var(--text);
}

.contact a {
  color: var(--orange);
  transition: color 0.3s ease;
  text-decoration: none;
}

.contact a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.contact-form {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #F68C23;
  box-shadow: 0 0 0 3px rgba(246, 140, 35, 0.2);
}

.form-note {
  color: var(--muted);
  font-size: .85rem;
}

/* Footer */
/* Footer auf Menü-Seite - reduzierter Abstand */
body:has(#menu-page) .site-footer,
#menu-page ~ .site-footer {
  margin-top: 0;
  padding-top: 16px;
}

/* Alternative für Browser ohne :has() Support */
.menu-page-footer {
  margin-top: 0 !important;
  padding-top: 16px !important;
}

.site-footer {
  padding: 20px 0;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.footer-brand small {
  color: var(--muted);
}

/* Dezenter Entwickler-Hinweis im Footer */
.footer-credit {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}

.footer-credit a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-brand img {
  filter: drop-shadow(0 2px 8px rgba(246, 139, 34, 0.5));
  transition: transform 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 3px;
}

.footer-brand:hover img {
  transform: scale(1.1);
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text);
}

/* Footer-Layout für Menu-Seite: Links in der Mitte */
.footer-menu-layout {
  position: relative;
  justify-content: center;
}

.footer-menu-layout .footer-brand {
  position: absolute;
  left: 0;
}

.footer-menu-layout .footer-links-center {
  display: flex;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 768px) {
  .footer-menu-layout {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .footer-menu-layout .footer-brand {
    position: static;
    order: 2;
  }

  .footer-menu-layout .footer-links-center {
    order: 1;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .nav {
    display: none;
    position: absolute;
    right: 4%;
    top: 60px;
    flex-direction: column;
    background: var(--panel);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .nav a {
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .nav-toggle:hover {
    transform: scale(1.1);
  }

  .grid.cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .usp {
    flex-direction: column;
    gap: 8px;
  }
}

/* Modern scroll animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

#menu.scroll-animate {
  opacity: 1;
  transform: none;
}

/* Enhanced hover effects */
.card,
.contact-form,
.feature {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Loading states */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Simple Restaurant Menu Styles - Compact */
.menu-category {
  margin-bottom: 32px;
}

.menu-category-title {
  font-family: "Ganache", "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #F68C23;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-title-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.2s ease;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.menu-item:hover {
  border-color: #F68C23;
  background: rgba(246, 140, 35, 0.05);
  box-shadow: 0 2px 8px rgba(246, 140, 35, 0.2);
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-family: "Proxima Nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  min-width: 0;
}

.menu-item-price {
  font-family: "Calibri", "Trebuchet MS", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F68C23;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.menu-order-btn {
  display: none;
}

.menu-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.menu-add-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (max-width: 1023px) {
  .menu-add-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #F68C23;
    color: #F68C23;
  }
}

@media (min-width: 1024px) {
  .menu-add-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
    position: relative;
    overflow: hidden;
    background: rgba(246, 140, 35, 0.12);
    border: 1px solid rgba(246, 140, 35, 0.4);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(246, 140, 35, 0.25);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    opacity: 1;
  }

  .menu-add-btn::after {
    content: '+';
    font-size: 1.4rem;
    line-height: 1;
    transform: translateY(1px);
    transition: transform 0.2s ease;
    color: inherit;
    font-weight: 700;
  }

  .menu-add-btn:hover::after {
    transform: translateY(1px) scale(1.1);
  }

  .menu-add-btn:hover {
    background: #F68C23;
    border-color: #F68C23;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(246, 140, 35, 0.35);
  }

  .menu-add-btn:disabled::after {
    opacity: 0.4;
  }

  .menu-add-btn:disabled {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    transform: none;
    box-shadow: none;
  }
}

.mobile-cart-bar {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-cart-bar {
    display: none !important;
  }

  body.mobile-cart-bar-visible main {
    padding-top: 0;
  }

  .mobile-cart-bar-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-cart-label {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
  }

  .mobile-cart-count {
    color: var(--muted);
    font-size: 0.8rem;
  }

  .mobile-cart-total {
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .menu-item {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .menu-item-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-item-info {
    gap: 8px;
  }

  .menu-order-btn {
    width: 100%;
    text-align: center;
  }

  .menu-item-actions {
    width: 100%;
    gap: 6px;
  }

  .menu-add-btn {
    width: 100%;
    text-align: center;
  }

  .menu-category-title {
    font-size: 1.3rem;
  }

  .menu-item-name {
    font-size: 0.95rem;
  }

  .menu-item-desc {
    font-size: 0.8rem;
  }

  .menu-item-price {
    font-size: 0.95rem;
  }
}

.loading {
  animation: pulse 2s infinite;
}

/* Focus states for accessibility */
.btn:focus-visible,
.nav a:focus-visible {
  outline: 2px solid #F68C23;
  outline-offset: 2px;
}

/* PWA Install Button */
#install-pwa-button {
  margin-top: 12px;
  animation: fadeInUp 0.6s ease-out;
}

#install-pwa-button:hover {
  background: rgba(246, 140, 35, 0.15);
  border-color: rgba(246, 140, 35, 0.5);
}

/* PWA Standalone Mode */
body.pwa-standalone {
  /* Optional: Anpassungen für Standalone-Modus */
}

body.pwa-standalone #install-pwa-button {
  display: none !important;
}

/* Delivery Areas in Hero */
.hero-delivery-areas {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 auto 32px;
  padding: 0 20px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  font-family: "Proxima Nova", sans-serif;
  letter-spacing: 0.4px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease-out 0.2s both;
  margin-top: 0;
}

.hero-delivery-areas::before {
  content: "Liefergebiete: ";
  color: #F68C23;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-delivery-areas {
    font-size: 0.8rem;
    margin: 0 auto 24px;
    padding: 0 16px;
    line-height: 1.4;
  }
}
