* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Allgemein: Verhindert horizontales Scrollen */
html, body ,.hero{
  max-width: 100%;
  overflow-x: hidden;
}
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;
  color: #F57C00;
      
    }
    h2 {
  font-family: 'Hind', sans-serif;
  letter-spacing: 4px;
  font-weight: 600;
  
}

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

 
}

    
    .navbar img{
      height: 100px;
    }
    .navbar-brand {
  font-size: 3rem;   /* 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 {
  max-height: 80vh;
  position: relative;
  overflow: hidden;
  border-bottom: #F57C00 solid 15px;
}

.hero-bg {
  background: url("hero.jpg") center center / cover no-repeat;
  z-index: 0;
}





.hero-overlay {
  background: rgba(0, 0, 0, 0.0); /* dunkles Overlay für bessere Lesbarkeit */
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 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-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
 
  
}
#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: 3.5rem; /* 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; 
}

/* Hover Effekte */
.angebot-card img,
.gallery img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* .angebot-card:hover img,
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
} */

.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: 0.9rem;
  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: #F57C00;
}

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

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

 

/* 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;
    
  }
}




/* Galerie- und Zahlungs-Icons auf mobile Breite beschränken */
 .zahlung img {
  max-width: 100%;
  height: auto;
}



    /* Overlay (dunkler Filter für bessere Lesbarkeit) */
    .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: #F57C00 !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;
}

.angebote-section{
    background:#FFF3E0;
}

.angebote-title{
    font-size:36px;
    font-weight:700;
    color:#E65100;
}

.angebot-card{
    background:white;
    border-radius:15px;
    transition:0.3s;
}

.angebot-card:hover{
    transform:translateY(-5px);
}

.angebot-card h4{
    color:#F57C00;
    font-weight:600;
}
