body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f6fff7;
  color: #2e3d27;
}

main {
  width: 100vw;
  padding: 0;
  margin: 0;
}

section {
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #4caf50 0%, #a5d6a7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 0 0.7rem 0;
  box-shadow: 0 2px 8px rgba(76,175,80,0.10);
  transition: box-shadow 0.2s;
}

header.sticky {
  box-shadow: 0 4px 24px rgba(76,175,80,0.18);
  background: linear-gradient(90deg, #388e3c 0%, #a5d6a7 100%);
  transition: box-shadow 0.2s, background 0.2s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 2.2rem;
  color: #388e3c;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 1rem 0 0 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #2e3d27;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #ff9800;
}

.hero {
  position: relative;
  text-align: left;
  background: linear-gradient(90deg, #e8f5e9 60%, #a5d6a7 100%);
  padding: 4rem 0 3rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.hero-content {
  max-width: 500px;
}

.hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: 2.8rem;
  color: #388e3c;
  margin-bottom: 1.2rem;
}

.hero-img {
  width: 100%;
  max-width: 420px;
  border-radius: 2rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 24px rgba(76,175,80,0.10);
}

.hero .cta-btn {
  display: inline-block;
  margin-top: 2rem;
  background: #ff9800;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero .cta-btn:hover {
  background: #388e3c;
  color: #fff;
}

#offers {
  background: #fff;
  padding: 2rem 0 2rem 0;
  border-top: 2px solid #a5d6a722;
  border-bottom: 2px solid #a5d6a722;
}

.offers-list, .categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  width: 90vw;
  margin: 2.5rem auto 0 auto;
  justify-items: center;
}

.offer-item, .category {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(76,175,80,0.10);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 0.5rem;
}

.offer-item:hover, .category:hover {
  box-shadow: 0 8px 32px rgba(76,175,80,0.18);
  transform: translateY(-6px) scale(1.03);
}

.offer-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 0.7rem;
}

.old-price {
  text-decoration: line-through;
  color: #bdbdbd;
  margin-left: 0.5rem;
}

.new-price {
  color: #a5d6a7;
  font-weight: bold;
  margin-left: 0.5rem;
}

#sortiment {
  background: #f4f4f4;
  padding: 2rem 0 2rem 0;
}

.category {
  background: #fff;
  border: 1.5px solid #a5d6a7;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 1px 4px rgba(76,175,80,0.06);
  font-size: 1.08rem;
  color: #2e3d27;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.category img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 0.5rem;
}

.info-banner {
  width: 100vw;
  background: #a5d6a7;
  color: #388e3c;
  font-size: 1.15rem;
  padding: 1.2rem 0.5rem;
  margin-bottom: 2rem;
  border-top: 2px solid #a5d6a722;
  border-bottom: 2px solid #a5d6a722;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.info-item {
  background: #fffbe6;
  border-radius: 0.7rem;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(76,175,80,0.06);
}

.services, .payment {
  width: 100vw;
  margin: 2.5rem 0;
  background: #fff;
  padding: 2rem 0;
}

.services-list, .payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.service, .payment-methods img {
  background: #fff;
  border: 1.5px solid #a5d6a7;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  min-width: 180px;
  max-width: 220px;
  box-shadow: 0 1px 6px rgba(76,175,80,0.07);
  font-size: 1.05rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.service img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.3rem;
}

.payment-methods img {
  width: 54px;
  height: 36px;
  object-fit: contain;
  background: #fffbe6;
  border-radius: 0.5rem;
  border: 1px solid #a5d6a722;
  box-shadow: 0 1px 4px rgba(76,175,80,0.04);
  padding: 0.3rem 0.7rem;
}

.label {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #ff9800;
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 0.3rem 0.9rem;
  border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(76,175,80,0.10);
  z-index: 3;
}

.add-cart-btn {
  margin-top: 1.2rem;
  background: #4caf50;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 1.7rem;
  border: none;
  border-radius: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(76,175,80,0.10);
}

.add-cart-btn:hover {
  background: #ff9800;
  color: #fff;
}

.testimonials, .faq {
  background: #e8f5e9;
  border-radius: 2rem;
  margin: 3rem auto;
  max-width: 1100px;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  padding: 2.5rem 2vw;
}

.testimonial, .faq-item {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 1px 6px rgba(76,175,80,0.07);
  padding: 1.5rem 2rem;
  margin-bottom: 1.2rem;
}

.testimonial .author {
  font-weight: bold;
  color: #388e3c;
  font-size: 1.1rem;
}

.newsletter {
  background: #fff;
  padding: 2.5rem 0;
  width: 100vw;
  text-align: center;
}

.newsletter input[type="email"] {
  padding: 0.8rem 1.2rem;
  border-radius: 1.2rem;
  border: 1.5px solid #a5d6a7;
  font-size: 1.1rem;
  margin-right: 0.7rem;
  outline: none;
}

.newsletter button {
  background: #ff9800;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 1.7rem;
  border: none;
  border-radius: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.newsletter button:hover {
  background: #4caf50;
  transform: scale(1.05);
}

footer {
  background: linear-gradient(90deg, #388e3c 0%, #a5d6a7 100%);
  color: #fff;
  text-align: center;
  padding: 2.2rem 0 1.5rem 0;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-top: 2rem;
  border-top: 4px solid #ff9800;
}

footer .footer-links {
  margin: 1.2rem 0 0.7rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

footer .footer-links a {
  color: #fff;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.2s;
}

footer .footer-links a:hover {
  color: #ff9800;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}

.social-links img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.2) brightness(0.9) sepia(0.3) hue-rotate(-10deg) saturate(1.5);
  transition: filter 0.2s;
}

.social-links a:hover img {
  filter: none;
}

h2 {
  color: #388e3c;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1rem;
  margin-bottom: 1.2rem;
}

.menu-list {
  padding-left: 1.2rem;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .hero-content {
    max-width: 100vw;
  }
  .offers-list, .categories {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    width: 98vw;
  }
}

@media (max-width: 700px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fffbe6;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    box-shadow: 0 4px 16px rgba(76,175,80,0.10);
    z-index: 200;
  }
  nav ul.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .logo-text {
    font-size: 1.3rem;
  }
  nav ul {
    gap: 1rem;
    font-size: 0.95rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  section {
    padding: 0 0.3rem;
  }
  .hero-img {
    max-width: 98vw;
  }
  .offers-list, .categories {
    grid-template-columns: 1fr;
    width: 99vw;
    gap: 1.2rem;
  }
  .testimonials, .faq {
    border-radius: 1rem;
    padding: 1.2rem 0.5rem;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ */
.faq {
  background: #fff;
  padding: 2.5rem 0;
  width: 100vw;
}
.faq-list {
  max-width: 900px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: #f9e79f;
  border-radius: 1rem;
  box-shadow: 0 1px 6px rgba(76,175,80,0.07);
  padding: 1.2rem 1.5rem;
}
.faq-question {
  background: none;
  border: none;
  color: #388e3c;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.faq-question.open {
  color: #2e3d27;
}
.faq-answer {
  display: none;
  color: #2e3d27;
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

/* Social Media Grid */
.social-media {
  background: #f6fff7;
  padding: 2.5rem 0;
  width: 100vw;
  text-align: center;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.2rem;
  max-width: 700px;
  margin: 2rem auto 0 auto;
}
.social-img img {
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 1px 6px rgba(76,175,80,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.social-img img:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 24px rgba(76,175,80,0.18);
}

/* Back to Top Button */
#backToTop {
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(76,175,80,0.18);
  cursor: pointer;
  transition: background 0.2s;
  display: none;
  align-items: center;
  justify-content: center;
}
#backToTop:hover {
  background: #388e3c;
}

/* Cookie Banner */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #388e3c;
  color: #fff;
  padding: 1.2rem 1rem;
  z-index: 99999;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 -2px 8px rgba(76,175,80,0.10);
}
#cookieBanner button {
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 0.5rem 1.2rem;
  margin-left: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#cookieBanner button:hover {
  background: #4caf50;
}

/* Lightbox */
#lightboxModal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}
#lightboxModal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px #000;
}

/* Noch bessere Responsivität */
@media (max-width: 600px) {
  .faq-list, .testimonials-list, .social-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .faq-item, .testimonial, .social-img img {
    min-width: 0;
    width: 98vw;
    max-width: 100vw;
  }
}

/* Sanfte Fade-In-Animationen */
.faq, .social-media, .newsletter, .testimonials, .faq-item, .testimonial, .social-img img {
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Live-Suche */
.search-bar {
  width: 100vw;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 101;
}
.search-bar input {
  width: 340px;
  padding: 0.9rem 1.2rem;
  border-radius: 2rem;
  border: 1.5px solid #a5d6a7;
  font-size: 1.1rem;
  outline: none;
  background: #fff;
  color: #2e3d27;
  box-shadow: 0 1px 4px rgba(76,175,80,0.07);
}
.search-results {
  position: absolute;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(76,175,80,0.10);
  margin-top: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  z-index: 200;
  color: #388e3c;
  font-size: 1.1rem;
}
.search-results div {
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  border-bottom: 1px solid #a5d6a7;
}
.search-results div:last-child { border-bottom: none; }
.search-results div:hover { background: #a5d6a7; color: #fff; }

/* Produkt der Woche */
.product-of-week {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 2.2rem 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pow-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.product-of-week img {
  width: 160px;
  height: 160px;
  border-radius: 1.2rem;
  object-fit: cover;
  box-shadow: 0 1px 6px rgba(76,175,80,0.07);
}
.countdown {
  color: #ff9800;
  font-size: 1.2rem;
  margin: 1rem 0;
  font-weight: bold;
}

/* Angebots-Slider */
.offers-slider {
  background: #e8f5e9;
  border-radius: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  padding: 2.2rem 2vw;
}
.slider {
  display: flex;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}
.slide {
  min-width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slide img {
  width: 180px;
  height: 180px;
  border-radius: 1.2rem;
  object-fit: cover;
  margin-bottom: 1rem;
}
.slide-caption {
  color: #388e3c;
  font-size: 1.15rem;
  font-weight: bold;
}
.slider-controls {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.slider-controls button {
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.3rem;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-controls button:hover {
  background: #388e3c;
}

/* Saisonale Themenwelt */
.seasonal-theme {
  background: #fff;
  border-radius: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  padding: 2.2rem 2vw;
}
.theme-products {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.theme-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e8f5e9;
  border-radius: 1.2rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 1px 6px rgba(76,175,80,0.07);
}
.theme-product img {
  width: 90px;
  height: 90px;
  border-radius: 1.2rem;
  object-fit: cover;
  margin-bottom: 0.7rem;
}
.theme-product span {
  color: #388e3c;
  font-weight: bold;
}

/* Quiz/Produktfinder */
.quiz {
  background: #e8f5e9;
  border-radius: 2rem;
  max-width: 700px;
  margin: 2.5rem auto;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  padding: 2.2rem 2vw;
  text-align: center;
}
.quiz-content button {
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 1.7rem;
  margin: 0.7rem 0.7rem 0 0;
  cursor: pointer;
  transition: background 0.2s;
}
.quiz-content button:hover {
  background: #4caf50;
}

/* Stempelkarte */
.stempelkarte {
  background: #fff;
  border-radius: 2rem;
  max-width: 700px;
  margin: 2.5rem auto;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  padding: 2.2rem 2vw;
  text-align: center;
}
.stempel-row {
  margin: 1.2rem 0;
}
.stempelkarte button {
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 1.7rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.stempelkarte button:hover {
  background: #ff9800;
}
#stempelInfo {
  color: #388e3c;
  font-weight: bold;
  margin-top: 0.7rem;
}

/* Google Maps */
.map-section {
  background: #e8f5e9;
  border-radius: 2rem;
  max-width: 900px;
  margin: 2.5rem auto;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  padding: 2.2rem 2vw;
}
#map {
  width: 100%;
  height: 320px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(76,175,80,0.10);
}

@media (max-width: 900px) {
  .pow-content, .theme-products {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .search-bar input {
    width: 90vw;
  }
  .product-of-week, .offers-slider, .seasonal-theme, .quiz, .stempelkarte, .map-section {
    border-radius: 1rem;
    padding: 1.2rem 0.5rem;
  }
}

/* Instagram-Bereich */
.instagram-section {
  background: #fff;
  border-radius: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  padding: 2.2rem 2vw;
  text-align: center;
}
.insta-logo {
  font-size: 2.1rem;
  vertical-align: middle;
  animation: instaPulse 1.8s infinite alternate;
}
@keyframes instaPulse {
  from { filter: drop-shadow(0 0 0 #ff9800); }
  to { filter: drop-shadow(0 0 8px #ff9800); }
}
.insta-desc {
  color: #388e3c;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
  max-width: 700px;
  margin: 2rem auto 1.5rem auto;
}
.insta-img {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(76,175,80,0.07);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.insta-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}
.insta-img:hover img {
  transform: scale(1.07);
}
.insta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,152,0,0.72);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  transition: opacity 0.2s;
}
.insta-img:hover .insta-overlay {
  opacity: 1;
}
.insta-cta {
  background: rgba(255,255,255,0.18);
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 1px 4px rgba(76,175,80,0.10);
}
.insta-follow-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: #ff9800;
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.insta-follow-btn:hover {
  background: #388e3c;
  color: #fff;
  transform: scale(1.04);
}
@media (max-width: 600px) {
  .instagram-section {
    border-radius: 1rem;
    padding: 1.2rem 0.5rem;
  }
  .insta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
}

.cat-desc {
  color: #2e3d27;
  font-size: 1.02rem;
  margin: 0.7rem 0 0.5rem 0;
  min-height: 2.2em;
  text-align: center;
}

/* Kreativer Über uns Bereich */
.about-creative {
  background: #e8f5e9;
  border-radius: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  padding: 2.2rem 2vw;
}
.about-content {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.about-text {
  flex: 2;
  min-width: 260px;
}
.about-img {
  flex: 1;
  min-width: 220px;
  text-align: center;
}
.about-img img {
  width: 100%;
  max-width: 320px;
  border-radius: 1.2rem;
  box-shadow: 0 1px 6px rgba(76,175,80,0.07);
}
.about-icons {
  display: flex;
  gap: 1.2rem;
  margin: 0 0 1.2rem 0;
  padding: 0;
  list-style: none;
}
.about-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.about-quote {
  margin: 1.5rem 0 0.5rem 0;
  font-style: italic;
  color: #388e3c;
  background: #fff;
  border-left: 4px solid #ff9800;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(76,175,80,0.07);
}

/* Kreativer Kontakt Bereich */
.contact-creative {
  background: #fff;
  border-radius: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto;
  box-shadow: 0 2px 12px rgba(76,175,80,0.07);
  padding: 2.2rem 2vw;
}
.contact-box {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-info {
  flex: 2;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.08rem;
  color: #2e3d27;
}
.contact-icon {
  font-size: 1.4rem;
  margin-top: 0.1rem;
}
.contact-social {
  margin: 1.2rem 0 0.5rem 0;
  display: flex;
  gap: 1.2rem;
}
.contact-social img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.2) brightness(0.9) sepia(0.3) hue-rotate(-10deg) saturate(1.5);
  transition: filter 0.2s;
}
.contact-social a:hover img {
  filter: none;
}
.contact-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.7rem;
}
.contact-btn {
  background: #ff9800;
  color: #fff;
  font-size: 1.08rem;
  font-weight: bold;
  padding: 0.8rem 1.7rem;
  border: none;
  border-radius: 1.2rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
  transition: background 0.2s, transform 0.2s;
}
.contact-btn:hover {
  background: #388e3c;
  color: #fff;
  transform: scale(1.04);
}
.contact-map {
  flex: 1.5;
  min-width: 220px;
}
@media (max-width: 900px) {
  .about-content, .contact-box {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .about-img img, .contact-map #map {
    max-width: 100vw;
  }
}
@media (max-width: 600px) {
  .about-creative, .contact-creative {
    border-radius: 1rem;
    padding: 1.2rem 0.5rem;
  }
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
}
.header-row .logo {
  flex-shrink: 0;
}
.header-row nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.header-row .search-bar {
  flex-shrink: 0;
  max-width: 340px;
  margin-left: auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 900px) {
  .header-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 0 1vw;
  }
  .header-row nav {
    justify-content: flex-start;
  }
  .header-row .search-bar {
    margin: 0 auto;
    width: 100%;
    max-width: 98vw;
  }
}

.category, .testimonial, .about-creative, .contact-creative, .instagram-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
}
.btn-bounce {
  animation: bounceBtn 0.3s;
}
@keyframes bounceBtn {
  0% { transform: scale(1); }
  30% { transform: scale(0.95) rotate(-2deg); }
  60% { transform: scale(1.05) rotate(2deg); }
  100% { transform: scale(1); }
} 