/* Grundlegende Styles */
body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #f8f5f0;
  color: #3e2c18;
  font-size: 1.08rem;
  line-height: 1.7;
  user-select: none;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
header {
  background: #6d4c2b;
  color: #fff;
  padding: 1.5rem 0 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
header h1 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: 2px;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  gap: 2rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #c7a17a;
}

.nav-warenkorb {
  background: rgba(196, 161, 122, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  transition: background 0.2s, color 0.2s;
}

.nav-warenkorb:hover {
  background: #c7a17a;
  color: #fff !important;
}
#main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(109,76,43,0.92);
  backdrop-filter: blur(2px);
  transition: background 0.3s;
}
#main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav {
  position: relative;
}
#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 1rem;
}
#nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
#nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 800px) {
  #nav-toggle {
    display: flex;
  }
  #nav-list {
    position: absolute;
    top: 48px;
    right: 0;
    background: rgba(109,76,43,0.98);
    flex-direction: column;
    gap: 1.5rem;
    width: 180px;
    padding: 1.2rem 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(109,76,43,0.13);
    display: none;
  }
  #nav-list.open {
    display: flex;
  }
}
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/img/background.jpg') center/cover no-repeat;
  filter: brightness(0.7) blur(0.5px);
  z-index: 1;
  min-height: 90vh;
}
.hero-bg.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: background-position;
}
@media (max-width: 900px) {
  .hero-bg.parallax {
    background-attachment: scroll;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 4rem 0 3rem 0;
}
.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.cta-btn {
  background: #fff;
  color: #a47551;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.cta-btn:hover {
  background: #c7a17a;
  color: #fff;
}
#leistungen {
  padding: 3rem 0 2rem 0;
  background: #fffaf5;
}
#leistungen h3 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.leistung {
  background: #f3ede7;
  border-radius: 16px;
  padding: 2rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.leistung:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(199,161,122,0.13);
}
.leistung h4 {
  margin-top: 0;
  color: #a47551;
  font-size: 1.3rem;
}
#kontakt {
  padding: 3rem 0 2rem 0;
}
#kontakt h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
#kontakt p {
  text-align: center;
  margin-bottom: 1.5rem;
}
#kontaktformular {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
#kontaktformular input,
#kontaktformular textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
}
#kontaktformular button {
  background: #ff6f00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
#kontaktformular button:hover {
  background: #ffb300;
}
#form-feedback {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.1rem;
  min-height: 1.5em;
}
footer {
  background: #6d4c2b;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
  font-size: 1rem;
}
#shop {
  padding: 3rem 0 2rem 0;
  background: #fffaf5;
}
#shop h3 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.produkt {
  background: #f3ede7;
  border-radius: 16px;
  padding: 2rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.produkt:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(199,161,122,0.13);
}
.produkt-bild {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 2.2rem;
}
.icon-placeholder {
  font-size: 2.2rem;
  opacity: 0.7;
}
.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #a47551;
  color: #fff;
  font-size: 0.85rem;
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}
.badge-animated {
  animation: badgePop 1.2s infinite alternate cubic-bezier(.7,0,.3,1);
}
@keyframes badgePop {
  0% { transform: scale(1) rotate(-5deg); }
  100% { transform: scale(1.13) rotate(5deg); }
}
.badge-new {
  background: linear-gradient(90deg, #a47551 60%, #c7a17a 100%);
}
.badge-bestseller {
  background: linear-gradient(90deg, #c7a17a 60%, #a47551 100%);
}
.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-social a {
  margin-left: 1.2rem;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

.card {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(109,76,43,0.10);
  background: #f3ede7;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 2.2rem 1.2rem;
  margin-bottom: 0.5rem;
}
.card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 32px rgba(199,161,122,0.18);
}
.anim-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.anim-fadein.visible {
  opacity: 1;
  transform: translateY(0);
}
.preis {
  display: block;
  font-weight: bold;
  color: #3e2c18;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.shop-btn {
  background: #a47551;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: not-allowed;
  opacity: 0.7;
  transition: background 0.2s;
}
.shop-btn:active {
  background: #c7a17a;
}
#testimonials {
  padding: 3rem 0 2rem 0;
  background: #fffaf5;
}
#testimonials h3 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 1.2rem;
  background: #f3ede7;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(109,76,43,0.10);
  min-height: 180px;
  position: relative;
  text-align: center;
}
.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #6d4c2b;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.testimonial-author {
  font-size: 1rem;
  color: #a47551;
  font-weight: bold;
}
@media (max-width: 700px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  .leistungen-grid, .shop-grid {
    grid-template-columns: 1fr;
  }
  header h1 {
    font-size: 1.4rem;
  }
  nav ul {
    gap: 1rem;
  }
  .footer-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
} 
#loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.loader {
  border: 6px solid #c7a17a;
  border-top: 6px solid #a47551;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1.2rem;
  vertical-align: middle;
  transition: filter 0.2s;
}
#theme-toggle:hover {
  filter: brightness(1.2);
}
/* Testimonials Slider */
.testimonials-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.testimonials-slider-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1);
  width: 300%; /* 3 Testimonials, wird im JS dynamisch gesetzt */
  overflow: hidden;
}
.testimonial {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  opacity: 1;
  transition: opacity 0.5s;
  box-sizing: border-box;
}
.slider-btn {
  background: rgba(109,76,43,0.13);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  color: #a47551;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: #a47551;
  color: #fff;
  transform: scale(1.15);
}
#back-to-top {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  background: rgba(109,76,43,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(109,76,43,0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, transform 0.1s;
  z-index: 200;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 700px) {
  .testimonials-slider {
    max-width: 98vw;
  }
  .testimonials-slider-inner, .testimonial {
    max-width: 100vw;
  }
} 
/* Highlight-Produkte Startseite */
#highlight-produkte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

/* Entfernte alte Highlight-Produkt-Regeln */
/*
.highlight-produkt-card { ... }
.highlight-produkt-card:hover { ... }
.highlight-produkt-bild { ... }
.highlight-produkt-info { ... }
.highlight-produkt-name { ... }
.highlight-produkt-beschreibung { ... }
.highlight-produkt-preis { ... }
*/

.kontakt-map-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(109,76,43,0.10);
}
.footer-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-links a:hover {
  opacity: 1;
}
/* Einheitliches Layout für Bereiche */
#leistungen, #highlight-produkte, #kontakt {
  padding: 3rem 0 2rem 0;
  background: #fffaf5;
  margin-bottom: 2rem;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(109,76,43,0.06);
}
#leistungen h3, #highlight-produkte h3, #kontakt h3 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
/* ToTop-Button nicht im Footer anzeigen */
footer {
  position: relative;
  z-index: 1;
}
#back-to-top.hide-in-footer {
  display: none !important;
} 
/* Kontaktbereich im Footer */
.kontakt-flex {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.kontakt-formular {
  flex: 1 1 320px;
  max-width: 420px;
}
.kontakt-map-wrapper {
  flex: 1 1 320px;
  max-width: 420px;
}
@media (max-width: 900px) {
  .kontakt-flex {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .kontakt-formular, .kontakt-map-wrapper {
    max-width: 100%;
  }
} 
/* Verbesserter, einheitlicher Kontaktbereich */
.kontakt-flex-modern {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.kontakt-info-modern, .kontakt-formular-modern, .kontakt-map-modern {
  background: linear-gradient(135deg, #fffaf5 70%, #f3ede7 100%);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(109,76,43,0.10);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.kontakt-info-modern {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  align-items: flex-start;
}
.kontakt-formular-modern {
  flex: 2 1 260px;
  min-width: 180px;
  max-width: 320px;
  padding: 1.2rem 0.8rem 1rem 0.8rem;
}
.kontakt-formular-modern form {
  gap: 0.6rem;
}
.kontakt-formular-modern input,
.kontakt-formular-modern textarea {
  padding: 0.55rem 0.7rem;
  font-size: 0.97rem;
  border-radius: 7px;
}
.kontakt-formular-modern button {
  padding: 0.7rem;
  font-size: 1rem;
  border-radius: 7px;
  margin-top: 0.2rem;
}
.kontakt-formular-modern h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.kontakt-map-modern {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 340px;
  padding: 1.2rem 1rem 1rem 1rem;
  align-items: center;
}
.kontakt-info-modern:hover, .kontakt-formular-modern:hover, .kontakt-map-modern:hover {
  box-shadow: 0 8px 32px rgba(109,76,43,0.16);
  transform: translateY(-4px) scale(1.02);
}
.kontakt-info-modern h3 {
  font-size: 1.5rem;
  color: #a47551;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.kontakt-liste {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem 0;
  width: 100%;
}
.kontakt-liste li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.08rem;
  margin-bottom: 0.7em;
  color: #3e2c18;
  word-break: break-word;
}
.kontakt-icon {
  font-size: 1.3em;
  opacity: 0.8;
  min-width: 1.7em;
  text-align: center;
}
.kontakt-liste a {
  color: #a47551;
  text-decoration: underline;
  transition: color 0.2s;
}
.kontakt-liste a:hover {
  color: #ff6f00;
}
.kontakt-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.kontakt-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  box-shadow: 0 2px 8px rgba(109,76,43,0.10);
  transition: background 0.2s, box-shadow 0.2s, filter 0.2s;
  border: none;
  outline: none;
  cursor: pointer;
  opacity: 0.93;
  font-size: 1.2rem;
}
.kontakt-social-btn svg {
  display: block;
  width: 24px;
  height: 24px;
  filter: grayscale(0.2) brightness(0.95);
}
.kontakt-social-btn:hover {
  background: #a47551;
  opacity: 1;
  filter: brightness(1.1);
}
.kontakt-formular-modern form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kontakt-formular-modern input,
.kontakt-formular-modern textarea {
  padding: 0.9rem;
  border: 1.5px solid #e0d3c2;
  border-radius: 10px;
  font-size: 1rem;
  resize: none;
  background: #f8f5f0;
  transition: border 0.2s, box-shadow 0.2s;
}
.kontakt-formular-modern input:focus,
.kontakt-formular-modern textarea:focus {
  border: 1.5px solid #a47551;
  box-shadow: 0 0 0 2px #f3ede7;
  outline: none;
}
.kontakt-formular-modern button {
  background: #a47551;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(109,76,43,0.08);
}
.kontakt-formular-modern button:hover {
  background: #ff6f00;
}
#form-feedback {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1rem;
  min-height: 1.5em;
}
@media (max-width: 900px) {
  .kontakt-flex-modern {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .kontakt-info-modern, .kontakt-formular-modern, .kontakt-map-modern {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .kontakt-info-modern, .kontakt-formular-modern, .kontakt-map-modern {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .kontakt-liste li {
    font-size: 0.98rem;
  }
  .kontakt-info-modern h3 {
    font-size: 1.18rem;
  }
} 
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background: #a47551;
  text-decoration: none;
}

.footer-social a svg {
  width: 24px;
  height: 24px;
  display: block;
} 
.header-logo {
  height: 72px;
  width: auto;
  margin-right: 1.2rem;
  object-fit: contain;
  opacity: 0.8;
} 
.katalog-bild {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
} 

.katalog-produkt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.katalog-info {
  text-align: center;
}

/* Konsistente Styles für Katalog-Produkte auf der Startseite */
.katalog-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #a47551;
}

.katalog-beschreibung {
  font-size: 0.97rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.katalog-preis {
  font-size: 1.1rem;
  color: #2e7d32;
  font-weight: bold;
} 