/* Grundlegendes Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}
/*HorizontalBaner */

.horizontal-banner {
    width: 100%;
    height: 55px; 
    background-color: #1e1e1e;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; 
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  }
  
 
  .banner-content {
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    white-space: nowrap; 
    animation: slideFromRightToLeft 15s linear infinite; 
  }
  
 
  .icon {
    font-size: 30px; 
    color: #ffde00; 
    animation: explode 2s ease-in-out infinite alternate;
    margin-right: 12px; 
  }
  
  
  .banner-text {
    font-size: 22px; 
    font-weight: bold;
    color: #ff5733; 
    margin: 0 20px;
    animation: glowText 2s ease-in-out infinite alternate;
  }
  
  
  .subtext {
    font-size: 16px; 
    color: #b8ff8e;
    font-weight: bold;
    animation: pulseText 2s infinite alternate;
    margin-right: 10px;
  }
  
  
  .cta-link {
    background-color: #ff5733;
    color: #1e1e1e;
    padding: 8px 16px; 
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px; 
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .cta-link:hover {
    background-color: #ff7043;
    transform: scale(1.05); 
  }
  
  
  .cta-icon {
    font-size: 22px; 
    transition: transform 0.3s ease, color 0.3s ease;
    animation: floatIcon 1.5s ease-in-out infinite, bounceIcon 1s ease-in-out infinite; 
    margin-right: 8px; 
   
  }
  
  
  .cta-link:hover .cta-icon {
    transform: translateY(-3px);
    color: #1e1e1e;
    margin-left: 20px;
  }
  
  
  @keyframes glowText {
    0% {
      text-shadow: 0 0 20px #ff5733, 0 0 40px #ff5733, 0 0 60px #ff5733;
    }
    100% {
      text-shadow: 0 0 30px #ff0000, 0 0 50px #ff0000, 0 0 70px #ff0000;
    }
  }
  
  
  @keyframes explode {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    100% {
      transform: scale(1.2);
      opacity: 1;
    }
  }
  
 
  @keyframes floatUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-5px);
    }
  }
  

  @keyframes slideFromRightToLeft {
    0% {
      transform: translateX(100%); 
    }
    100% {
      transform: translateX(-100%); 
    }
  }
  
  
  @keyframes pulseText {
    0% {
      transform: scale(1);
      color: #ff5733;
    }
    100% {
      transform: scale(1.1);
      color: #39ff14;
    }
  }
  
  
  @keyframes floatIcon {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
    100% {
      transform: translateY(0);
    }
  }
  

  @keyframes bounceIcon {
    0% {
      transform: translateX(0);
    }
    20% {
      transform: translateX(-3px);
    }
    40% {
      transform: translateX(3px);
    }
    60% {
      transform: translateX(-2px);
    }
    80% {
      transform: translateX(2px);
    }
    100% {
      transform: translateX(0);
    }
  }
/*HorizontalBaner */

/*HorizontalBaner2 */

/*HorizontalBaner2 */
/*discoountBaner2*/
/* Allgemeine Banner-Stile */
.discount-banner {
  width: 100%;
  height: 80px;
  background-color: #39FF14; /* Hintergrundfarbe: grünes Neon */
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px; /* Abrundung für weicheres Aussehen */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Inhalt des Banners */
.discount-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  animation: slideFromRightToLeft 10s linear infinite, waveEffect 3s ease-in-out infinite;
}

/* Symbole und Texte */
.discount-icon {
  font-size: 40px;
  color: #f5f5f5; /* Weiße Farbe für Symbole */
  margin-right: 10px;
  animation: pulseIcon 1.5s ease-in-out infinite;
}

.discount-text {
  font-size: 28px; 
  font-weight: bold;
  color: #f1f1eb; /* Türkisblau für den Text */
  letter-spacing: 1px;
  
  margin: 0 20px;
  animation: glowText 1.5s ease-in-out infinite alternate;
}

.discount-percent {
  font-size: 32px;
  color: #02862af6; /* Gelb für Rabatt */
  font-weight: bold;
  animation: zoomInOut 2s ease-in-out infinite alternate;
}

/* CTA-Schaltfläche */
.cta-link {
  background-color: #edeeee; /* Türkis für den Button */
  color: #ffffff;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.6);
  transition: all 0.3s ease;
}

.cta-link:hover {
  background-color: #fdffff; /* Dunkleres Türkis beim Hover */
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 255, 0, 0.8);
}

/* Animationen */
@keyframes glowText {
  0% {
      text-shadow: 0 0 15px #FF5722, 0 0 30px #FF5722, 0 0 45px #FF5722;
  }
  100% {
      text-shadow: 0 0 25px #FF5722, 0 0 50px #FF5722, 0 0 75px #FF5722;
  }
}

@keyframes zoomInOut {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.3);
  }
  100% {
      transform: scale(1);
  }
}

@keyframes slideFromRightToLeft {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

@keyframes waveEffect {
  0% {
      transform: rotate(0deg);
  }
  25% {
      transform: rotate(3deg);
  }
  50% {
      transform: rotate(0deg);
  }
  75% {
      transform: rotate(-3deg);
  }
  100% {
      transform: rotate(0deg);
  }
}

/* Stil für das Bankkarte-Symbol */
.discount-card-icon {
  font-size: 50px;
 
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(233, 239, 147, 0.3);
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discount-card-icon:hover {
  transform: translateY(-5px) scale(1.1); /* Erhöht beim Hover */
  box-shadow: 0 15px 30px rgba(254, 255, 254, 0.5);
}

/* Animation für die schwebende Bewegung des Einkaufswagens */
@keyframes floatCartIcon {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-5px);
  }
  100% {
      transform: translateY(0);
  }
}

/*discoountBaner2*/
/*discoountBaner3*/ 

/*discoountBaner3*/ 


/* Header */
/* advertisment */
.horizontal-banner {
    background-color: #32cd32; 
    color: #ffffff; 
    padding: 15px 20px; 
    text-align: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1em; 
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    gap: 50px; 
  }
  
  .icon {
    font-size: 1.5em; 
    animation: blink 0.5s infinite alternate; 
  }
  
  @keyframes blink {
    0% { opacity: 1; transform: scale(1); } 
    100% { opacity: 0.3; transform: scale(1.2); } 
  }
  
  .banner-text {
    font-size: 1.4em; 
    font-weight: bold;
    animation: text-blink 1s infinite alternate; 
  }
  
  @keyframes text-blink {
    0% { color: #ffffff; } 
    100% { color: #fef100; } 
  }
  
  .subtext {
    font-size: 1em; 
    animation: text-blink 1.2s infinite alternate; 
  }
  
  .cta-link {
    background-color: #ffffff; 
    color: #32cd32; 
    padding: 8px 15px; 
    border-radius: 5px; 
    font-weight: bold;
    text-decoration: none; 
    transition: background-color 0.3s, color 0.3s; 
  }
  
  .cta-link:hover {
    background-color: #32cd32; 
    color: #ffffff; 
  }
/* advertisment */



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #3AA94E;
    color: #fff;
}

header .logo  {
    color: #00ec37;
    
   
  
}
.imgloco{
    border:1px solid #46e806 ;
    border-radius: 10px;
    width: 300;
    margin-left: 30px;
}
 .text{
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
   
    border-radius: 5px;
    transition: all 0.3s ease;

}
.text:hover {
    background-color: #84f406;
    color: #fff;
}


header nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

header nav input[type="text"] {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

header nav button {
    padding: 10px 15px;
    background-color: #fff;
    color: #3AA94E;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

header nav button:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero {

    background-image: url(/img/Bild\ \(1\).jpg.jfif);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #e9f7e9;
}
.item{
    flex:1;
    margin: 0 10px;
    padding: 20px;
    text-align: center;
    
}


.hero-text h2 {
    color: #3AA94E;
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-text input[type="email"],
.hero-text button {
    padding: 10px;
    border-radius: 5px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

.hero-text button {
    background-color: #3AA94E;
    color: #fff;
    cursor: pointer;
}

/* Angebote Section */
.angebote {
  padding: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-image: url('') ; /* URL for the section background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Individual product cards */
.angebot {
  width: 250px;
  height: 350px;  /* Adjust height */
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

/* Set individual backgrounds for each .angebot */
#angebot1 {
  background-image: url('/img/belibt/veggie-brigade-unveiling-tales-vegetable-characters_984027-720.avif'); /* URL for the first product's background */
}

#angebot2 {
  background-image: url('/img/belibt/ein-kuerbis-mit-einem-gesicht-darauf-das-sagt-es-ist-ein-gesicht_737852-85174.jpg'); /* URL for the second product's background */
}
#angebot3 {
  background-image: url('/img/belibt/veggie-brigade-unveiling-tales-vegetable-characters_984027-671.avif'); /* URL for the second product's background */
}
#angebot4 {
  background-image: url('/img/belibt/froehliche-cartoon-erdbeerfigur-mit-einem-laecheln-auf-blauem-hintergrund_464863-1777.avif'); /* URL for the second product's background */
}

/* Styling for text inside each card */
.angebot h3 {
  
  font-size: 18px;
  color: #fff; /* White text for visibility */
  margin-bottom: 10px;
}

.angebot p {
  
  font-size: 14px;
  color: #fff; /* White text for visibility */
  margin-bottom: 15px;
}

.angebot button {
  margin-top: 190px;
  padding: 10px 20px;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.angebot button:hover {
  background-color: #2ecc71;
}

/* Hover effect for card */
.angebot:hover {
  transform: scale(1.05);
}
/*image-merquee1*/
.carousel-wrapper {
  position: relative;
  width: 1200px; 
  height: 200px;
  margin: 0 auto;
  overflow: hidden;
}

/* Group of Images */
.image-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.image-group img {
  width: 300px; 
  height: 100%;
  margin: 1px;
  object-fit: cover;
  border-radius: 8px;
}

/* Active group visible */
.image-group.active {
  opacity: 1;
}

/*image-merquee1*/


/* Produktliste */
.produkte {
    padding: 50px;
    text-align: center;
    background-color: #fff;
}

.produkt-kategorien {
    margin-bottom: 20px;
}

.produkt-kategorien button {
    padding: 10px;
    margin: 5px;
    border: none;
    background-color: #3AA94E;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.produkt-galerie {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.produkt {
    background-color: #ffffff;
    border: 1px solid #08f13e;
    border-radius: 10px;
    padding: 15px;
    width: 150px;
    text-align: center;
    box-shadow: 0 0 5px rgba(152, 151, 151, 0.1);
}

.produkt img {
    width: 100%;
    border-radius: 5px;
}

.produkt h3 {
    color: #1d2407;
    margin: 10px 0;
}

.produkt p {
    color: #127500;
    font-size: 14px;
}

.produkt .original-price {
    text-decoration: line-through;
    color: #f80000;
}

/* Neukunde Rabatt Banner */
.neukunde-rabatt {
    padding: 30px;
    text-align: center;
    background-color: #029a4b;
    color: #fff;
    font-size: 24px;
}
.Details{
background-color: #7bbd5a;
border: 1px solid #f4e80d;
border-radius: 1px;
color: rgb(27, 27, 27);
}

/* Beliebte Produkte Section */
.beliebte-produkte {
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
}

.beliebte-produkte .produkt-slider {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.beliebte-produkte .produkt {
    width: 100px;
}


/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px;
}

footer .footer-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

footer .footer-payment,
footer .footer-contact {
    text-align: center;
    margin-top: 20px;
}

footer .footer-payment img {
    width: 150px;
    margin-top: 10px;
}

footer input[type="email"] {
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer button {
    padding: 10px;
    background-color: #3AA94E;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer p {
    text-align: center;
    margin-top: 20px;
}

/* LOGIN */
form {
    display: flex;
    flex-direction: column;
}

label {
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="email"],
input[type="password"],
input[type="text"],
textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
