* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  user-select: none; /* verhindert Textauswahl */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

body {
  font-family: "Poppins", sans-serif; /* Standardschrift */
}

h1 {
  font-family: "Changa One", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;

}
#hero-subtitle{
  text-transform: uppercase;
}

h3 {
  font-size: 25px;
}
/* Nur ab 768px Breite (Tablet & Desktop) */
@media (min-width: 200px) {
  .nav-btn {
    color: white !important;
    background-color: #cf0015;
  max-width: 180px;
    border-radius: 10px;
    padding: 6px 6px;
    margin: 5px;
  }
}


.navbar img {
  height: 100px;
  
}
.navbar-brand {
  font-size: 5rem; /* Standard ist ca. 1.25rem → größer machen */
  font-weight: 800; /* Noch fetter */
}
/* Breite automatisch */
/* Logo-Höhe anpassen */
/* .navbar-brand img {
  height: 60px;   
  width: auto;    
} */

p,
a,
li {
  font-family: "Poppins", sans-serif;
}

.hero {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}



.location-card {
  transition: all 0.3s ease;
  border-radius: 15px;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-card .btn {
  border-radius: 15px;
  padding: 12px 20px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

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

/* H1 Grundstil */
/* Startzustand: Buchstaben unsichtbar */
#hero-title span.char {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  animation: fadeInUp 0.5s forwards;
}

/* Keyframes für sanftes Einblenden */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Untertitel Animation (startet versteckt) */
/* Buchstaben-Effekt */
#hero-title span.char {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  animation: fadeInUp 1s forwards;
}

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

/* Untertitel sanft einblenden */
#hero-subtitle {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInSubtitle 1s forwards;
  font-size: 25px;
  font-family:
    "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}
#angebote .col-6 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Button Animationen */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-left {
  animation: slideInLeft 1.2s ease-out both;
}

.animate-right {
  animation: slideInRight 1.2s ease-out both;
}

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

/* Tablet */
@media (min-width: 768px) {
  #hero-title {
    font-size: 3.5rem;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  #hero-title {
    font-size: 5rem;
  }
}

/* Standardgröße (Desktop) */
/* #hero-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
} */

/* Für Smartphones – H1 größer machen */
@media (max-width: 768px) {
  #hero-title {
    font-size: 2.2rem; /* oder 4rem, wenn du es stärker willst */
  }
}

.hero img {
  max-height: 3500px;
}

.angebot-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.zahlung img {
  width: 60px;
  margin: 15px;
}

.angebot-card {
  border-radius: 15px;
}

.rabatt-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #cf0015;
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 50px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.navbar.sticky-top {
  z-index: 1030; /* Bootstrap Default */
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem; /* kleinere Navbar-Höhe */
  }
  .navbar-brand {
    font-size: 2rem;
  }
  .navbar-nav .nav-link {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-size: 0.95rem;
  }
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-img-animated {
  animation: floatUpDown 3s ease-in-out infinite;
}
.gallery {
  width: 100%;
  height: 140px; /* gleiche Höhe für alle Bilder */
  object-fit: cover;
  border-radius: 10px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.gallery:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
/* Sticky Buttons nur auf Mobile sichtbar */
.sticky-order-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  display: none; /* Standard: versteckt */
}

.sticky-order-buttons .glf-button {
  border-radius: 0 !important;
  font-size: 16px;
  text-align: center;
}
#opening-times-list {
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}

#opening-times-list li {
  padding: 8px 0;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

#opening-times-list li .pin-icon {
  display: none; /* Pin nur für heutiges Element sichtbar */
  margin-right: 8px;
  color: #cf0015;
}

#opening-times-list li.active {
  color: #cf0015;
  font-weight: bold;
  border-radius: 8px;
}

#opening-times-list li.active .pin-icon {
  display: inline-block;
}

.category-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.list-group-item {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.list-group-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
/* Kategorie-Bild */
.category-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* List-Group Item */
.list-group-item {
  border-radius: 10px;
  margin-bottom: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.list-group-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Badges */
.badge {
  font-size: 0.8rem;
  padding: 0.4em 0.6em;
  border-radius: 12px;
}

/* Farben der speziellen Badges */
.badge.bg-danger {
  background-color: #cf0015;
} /* Neu */
.badge.bg-success {
  background-color: #28a745;
} /* vegetarisch */
.badge.bg-warning {
  background-color: #ffc107;
  color: #212529;
} /* scharf */
.badge.bg-info {
  background-color: #17a2b8;
  color: #212529;
} /* vegan */

/* Beschreibung der Kategorie */
.text-muted.mb-3 {
  font-size: 1rem;
  margin-bottom: 1rem !important;
}

/* Responsive Grid */
@media (max-width: 768px) {
  .list-group-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .list-group-item span.fw-bold.text-danger {
    margin-top: 8px;
  }
}

/* Mobile Sticky Buttons */
#mobileButtons {
  display: block; /* standardmäßig ausblenden */
  position: fixed;
  bottom: 0;
  left: 0;

  z-index: 1050; /* über allem */
}

#mobileButtons .col-6 span {
  height: 60px; /* Höhe der Buttons */
  line-height: 1;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

/* Nur auf Mobile sichtbar */
@media (max-width: 768px) {
  #mobileButtons {
    display: block;
  }
}
body.speisekarte.html {
  padding-bottom: 60px; /* Höhe der Buttons */
}
.list-group-item .text-end {
  min-width: 150px; /* genug Platz für Preise */
  white-space: nowrap;
}
.category-image {
  max-width: 100%;
  height: auto;
}
.preis-badge {
  display: inline-block;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 4px 10px;
  margin: 4px 2px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

/* Hover-Effekt */
.preis-badge:hover {
  background: #e9ecef;
  border-color: #ccc;
}


.text-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  max-width: 100%; 
}


@media (max-width: 576px) {
  .text-end {
    justify-content: flex-start; 
  }
  .preis-badge {
    flex: 1 1 calc(50% - 8px); 
    text-align: center;
  }
}
.category-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}
.badge {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35em 0.6em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.preis-badge.klein {
  background: #d1f7c4;
  color: #155724;
}
.preis-badge.mittel {
  background: #fff3cd;
  color: #856404;
}
.preis-badge.gross,
.preis-badge {
  background: #f8d7da;
  color: #721c24;
}

.list-group-item small {
  font-size: 0.85rem;
  color: #666;
}
.list-group-item:hover {
  background-color: #f8f9fa; 
  transform: translateY(-2px);
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.badge.popular {
  background-color: #ffc107;
  color: #212529;
  font-weight: 600;
}
.badge.bg-danger {
  animation: pop 0.4s ease-out;
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}


html,
body,
.hero {
  max-width: 100%;
  overflow-x: hidden;
}

.zahlung img {
  max-width: 100%;
  height: auto;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* halbtransparent schwarz */
  z-index: 0;
}

/* Inhalt im Vordergrund */
.hero-content {
  position: relative;
  z-index: 1;
}
/* Über uns Section mit rotem Hintergrund und weißer Schrift */
#about {
  background-color: #cf0015 !important;
  color: #fff;
}

/* Cookie Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none; /* Start hidden, JS zeigt es */
}

.cookie-banner p {
  margin: 0 0 10px 0;
  font-size: 14px;

}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
}

.feature-item:hover .icon-circle {
  transform: scale(1.1);
}


.heading-red {
  background-color: #cf0015; 
  color: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  display: inline-block;
}

.concept-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.concept-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.concept-card h4 {
  margin-bottom: 10px;
}
.cta-box {
  background: linear-gradient(135deg, #111, #2b2b2b);
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

/* leichter Glow Effekt */
.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(220,53,69,0.2), transparent 60%);
  animation: glowMove 6s infinite linear;
}

@keyframes glowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-box h2,
.cta-box p {
  position: relative;
  z-index: 2;
}

.cta-link {
  color: #ff4d4d;
  text-decoration: none;
  font-weight: bold;
}

.cta-link:hover {
  color: #ff1a1a;
  text-decoration: underline;
}
.modal-body {
  max-height: 80vh;
  overflow-y: auto;
}


.menu-scroll {
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
}

/* Bilder Full Width */
.menu-img {
  width: 100%;
  display: block;
}

/* optional: schöner Scrollbar */
.menu-scroll::-webkit-scrollbar {
  width: 6px;
}

.menu-scroll::-webkit-scrollbar-thumb {
  background: #dc3545;
  border-radius: 10px;
}

.menu-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}