@charset 'utf-8';

/* 1. Variablendefinitionen - erweitert und optimiert */
:root {
  /* Primäre Farbpalette */
  --primary-color: #F45655;
  --primary-dark: #D50D3C;
  --primary-light: #f07f7f;
  --primary-lighter: #F78888;
  
  /* Sekundäre Farben und Akzente */
  --accent-color: #2B90D9;
  --secondary-color: #99d0f5;
  
  /* Text und Hintergründe */
  --text-dark: #8f0505;
  --text-light: #FFFFFF;
  --text-muted: #6c757d;
  --background-light: #f8f9fa;
  --background-subtle: #f1f1f1;
  
  /* Designelemente */
  --shadow-color: #b50237;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 16px;
  --box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  --box-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --box-shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  
  /* Layout und Animation */
  --transition-speed: 0.3s;
  --base-font-size: 130%;
  --section-padding: 100px 0;
  --section-padding-mobile: 75px 0;
  
  /* Standard-Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

/* 2. Optimierte Font-Definitionen mit verbesserten Performance-Hinweisen */
@font-face {
  font-family: 'Chewy';
  font-style: normal;
  font-weight: 400;
  src: url(/css/fonts/uK_94ruUb-k-wn52KjI.woff2) format('woff2');
  font-display: swap; /* Verbesserte Font-Performance */
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* 3. Normalisierung & Reset - konsolidiert */
[v-cloak] { display: none; }

html, body {
  height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth; /* Sanftes Scrollen zu Ankern */
  font-size: var(--base-font-size);
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* 4. Hintergrund-Elemente - konsolidiert */
video, #fruitsCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  will-change: transform; /* Performance-Optimierung */
}

video {
  object-fit: cover;
  z-index: -1;
  opacity: 0.12;
}

#fruitsCanvas {
  z-index: -2;
  opacity: 0.7;
}

/* 5. Typografie - vereinheitlicht */
p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem; /* Besserer vertikaler Rhythmus */
  line-height: 1.7;
}

p.lead {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
}

p.small {
  font-size: 1em;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: uppercase;
  font-family: 'Chewy', 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem; /* Besserer vertikaler Rhythmus */
  color: var(--primary-dark);
}

h2 {
  text-shadow: -1.5px 0 var(--text-light), 0 1px var(--text-light), 1px 0 var(--text-light), 0 -1px var(--text-light);
  color: var(--primary-color);
  font-size: 2.8rem;
  position: relative;
  padding-bottom: 1rem;
}

/* Dekorative Unterstreichung für Überschriften */
h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 80px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* 6. UI-Komponenten - konsolidiert */
a.button {
  cursor: pointer;
  transition: all 0.3s ease; /* Sanfte Übergänge */
}

.btn {
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-speed);
}

.btn:focus, .btn:active, .btn.active {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(213, 13, 60, 0.25); /* Bootstrap-Stil Focus */
}

.btn-quark {
  color: var(--text-light);
  background-color: var(--primary-color);
  border: none;
  box-shadow: 0 4px 6px rgba(213, 13, 60, 0.11);
}

.btn-quark:hover, .btn-quark:focus, .btn-quark:active {
  color: var(--text-light);
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(213, 13, 60, 0.2);
}

/* 7. Layout-Strukturen - konsolidiert */
section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

section.success {
  color: var(--text-light);
  background: #18bc9c;
}

section:nth-child(even) {
  background-color: var(--background-subtle);
}

/* Header */
header {
  text-align: center;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 8rem 0 6rem;
  position: relative; /* Für absolute Positionierung innerhalb */
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: 3rem;
}

header .container {
  padding-top: 200px;
  padding-bottom: 50px;
  margin-top: -180px;
  position: relative;
  z-index: 2;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('/images/pattern.png');
  opacity: 0.1;
}

header img {
  display: block;
  margin: 0 auto 1px;
  max-width: 200px;
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

header .intro-text .name {
  display: block;
  text-transform: uppercase;
  font-family: 'Chewy', Helvetica, Arial, sans-serif;
  font-size: 2em;
}

header .intro-text .welcome {
  font-size: 1.25em;
  font-weight: normal;
}

/* 9. Navigation - optimiert */
.navbar-default {
  border: 0;
  background: rgba(244, 86, 85, 1);
}

.navbar {
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.7rem 2rem;
}

.navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-weight: normal;
  font-family: 'Chewy', 'Montserrat', sans-serif;
  font-size: 1.6em;
  color: var(--text-light);
  text-shadow: -1.5px 0 var(--shadow-color), 0 1px var(--shadow-color), 1px 0 #d6d4d4, 0 -1px var(--primary-dark);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  margin: 0 0.2rem;
  border-radius: var(--border-radius);
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
  background-color: rgba(255,255,255,0.2);
  text-shadow: -1.5px 0 var(--shadow-color), 0 1px var(--primary-dark), 1px 0 var(--primary-light), 0 -1px var(--primary-dark);
  color: var(--primary-light);
  border-radius: 10px;
}

/* Verbesserte Navigation */
.navbar-default {
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition-default);
}

.navbar-scrolled {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  background-color: rgba(255,255,255,0.98);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar-toggle-custom {
  border: none;
  color: var(--primary-color);
}

.navbar-toggle-custom:focus {
  box-shadow: none;
}

.nav-item-animated {
  position: relative;
  overflow: hidden;
}

.nav-item-animated .nav-link {
  position: relative;
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.7rem 0.8rem;
  transition: color 0.3s ease;
}

.nav-item-animated .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-item-animated:hover .nav-link {
  color: var(--primary-color);
}

.nav-item-animated:hover .nav-link::after {
  width: 70%;
}

.nav-item-animated .nav-link.active {
  color: var(--primary-color); /* Konsistente Primärfarbe verwenden */
  font-weight: 700; /* Stärkeres Gewicht für bessere Sichtbarkeit */
  text-shadow: none; /* Keinen Schatten für bessere Lesbarkeit */
}

.nav-item-animated .nav-link.active::after {
  width: 70%;
  background-color: var(--primary-color); /* Primärfarbe für die Unterstreichung */
  height: 3px; /* Etwas dickere Linie für aktive Elemente */
}

/* Navigation Active-Zustand optimieren */

/* Anpassung der Navigation für aktive Elemente */
.nav-item-animated .nav-link.active {
  color: var(--primary-color); /* Konsistente Primärfarbe verwenden */
  font-weight: 700; /* Stärkeres Gewicht für bessere Sichtbarkeit */
  text-shadow: none; /* Keinen Schatten für bessere Lesbarkeit */
}

.nav-item-animated .nav-link.active::after {
  width: 70%;
  background-color: var(--primary-color); /* Primärfarbe für die Unterstreichung */
  height: 3px; /* Etwas dickere Linie für aktive Elemente */
}

/* Responsive Anpassungen für mobile Geräte */
@media (max-width: 767px) {
  .nav-item-animated .nav-link.active {
    background-color: rgba(244, 86, 85, 0.15); /* Angepasst an die Primärfarbe */
    border-radius: var(--border-radius);
    color: var(--primary-color); /* Konsistente Farbgebung */
  }
}

/* Responsive Anpassungen für mobile Geräte beibehalten */
@media (max-width: 767px) {
  .nav-item-animated .nav-link.active {
    background-color: rgba(213, 13, 60, 0.1);
    border-radius: var(--border-radius);
    color: var(--primary-dark); /* Konsistente Farbgebung */
  }
}

/* Responsive angepasst */
@media (max-width: 767px) {
  .navbar-nav {
    margin-top: 1rem;
    padding-bottom: 0.5rem;
  }
  
  .nav-item-animated {
    text-align: center;
    padding: 0.3rem 0;
  }
  
  .nav-item-animated .nav-link::after {
    display: none;
  }
  
  .nav-item-animated .nav-link.active {
    background-color: rgba(213, 13, 60, 0.1);
    border-radius: var(--border-radius);
  }
}

/* 10. Ladeanimation - optimiert und konsolidiert */
.lds-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 9999;
}

.loading-text {
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--primary-dark);
  font-family: 'Chewy', sans-serif;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: -3px 0 0 -3px;
}

/* Positions- und Verzögerungswerte beibehalten */
.lds-roller div:nth-child(1) { animation-delay: -0.036s; }
.lds-roller div:nth-child(1):after { top: 63px; left: 63px; }
.lds-roller div:nth-child(2) { animation-delay: -0.072s; }
.lds-roller div:nth-child(2):after { top: 68px; left: 56px; }
.lds-roller div:nth-child(3) { animation-delay: -0.108s; }
.lds-roller div:nth-child(3):after { top: 71px; left: 48px; }
.lds-roller div:nth-child(4) { animation-delay: -0.144s; }
.lds-roller div:nth-child(4):after { top: 72px; left: 40px; }
.lds-roller div:nth-child(5) { animation-delay: -0.18s; }
.lds-roller div:nth-child(5):after { top: 71px; left: 32px; }
.lds-roller div:nth-child(6) { animation-delay: -0.216s; }
.lds-roller div:nth-child(6):after { top: 68px; left: 24px; }
.lds-roller div:nth-child(7) { animation-delay: -0.252s; }
.lds-roller div:nth-child(7):after { top: 63px; left: 17px; }
.lds-roller div:nth-child(8) { animation-delay: -0.288s; }
.lds-roller div:nth-child(8):after { top: 56px; left: 12px; }

@keyframes lds-roller {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Moderne Card-Gestaltung */
.card {
  border-radius: var(--border-radius);
  border: none;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  overflow: hidden;
  margin-bottom: 2rem;
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.8rem;
}

.card-title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Moderne Feature-Boxen */
.feature-box {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--text-light);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* Media Queries - optimiert */
@media (min-width: 768px) {
  .img-responsive {
    margin-top: 60px;
  }

  header .container {
    margin-top: -180px;
    padding-top: 200px;
    padding-bottom: 85px;
  }

  header .intro-text .name {
    font-size: 4.75em;
  }

  header .intro-text .welcome {
    font-size: 1.75em;
  }
}

@media (max-width: 991px) {
  :root {
    --base-font-size: 120%;
  }
  
  h2 {
    font-size: 2.4rem;
  }
  
  header {
    padding: 6rem 0 4rem;
  }
}

@media (max-width: 767px) {
  :root {
    --base-font-size: 110%; /* Kleinere Basis-Schriftgröße auf mobilen Geräten */
    --section-padding: 70px 0;
    --section-padding-mobile: 50px 0;
  }
  
  section {
    padding: var(--section-padding-mobile);
  }
  
  section.first {
    padding-top: 75px;
  }
  
  p {
    font-size: 1em;
  }
  
  h2 {
    font-size: 2rem; /* Kleinere Überschriften auf mobilen Geräten */
  }
  
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar-nav .nav-item .nav-link {
    font-size: 1.3em; /* Kleinere Navigation auf mobilen Geräten */
  }
  
  header {
    padding: 4rem 0 3rem;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }
}

/* Print-Styles - Neu hinzugefügt */
@media print {
  video, .lds-container {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000 !important;
    background: #fff !important;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
  
  header {
    background: none !important;
    color: #000 !important;
    clip-path: none;
    padding: 1cm 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Verbessern Sie den Kontrast für Inhalte über dem Canvas */
.container {
  position: relative;
  z-index: 1;
}

/* Fügen Sie diesen Code zur app.css hinzu */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gestaffelte Animation für mehrere Elemente */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.3s; }
.fade-in:nth-child(3) { transition-delay: 0.5s; }
.fade-in:nth-child(4) { transition-delay: 0.7s; }

/* News-Komponenten Styling */
.news-card {
  transition: transform 0.3s ease;
  overflow: hidden;
  border-radius: 8px;
}

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

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #333;
  position: relative;
}

.info-icon {
  color: #d9534f;
}

/* Animation für die Erdbeere */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.bounce {
  animation: bounce 2s infinite ease-in-out;
}

.divider-custom {
  margin: 1.25rem 0 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.divider-custom-line {
  width: 100%;
  max-width: 7rem;
  height: 0.25rem;
  background-color: rgba(0,0,0,0.1);
  border-radius: 1rem;
  border-color: rgba(0,0,0,0.1);
}

.divider-custom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
}

/* Content-Bereich Optimierungen */

/* Gemeinsame Content-Stile */
.content-section {
  padding: 5rem 0;
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-lighter), transparent);
  opacity: 0.5;
}

.content-header {
  text-align: center;
  margin-bottom: 3rem;
}

.content-header h2 {
  display: inline-block;
}

.content-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.content-card:hover .content-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Produkt-Karten */
.product-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: var(--text-light);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-tag {
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 5px 35px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-body {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.product-text {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.product-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

/* Standorte-Karten */
.location-card {
  position: relative;
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.location-header {
  position: relative;
  height: 150px;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.location-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.location-name {
  position: relative;
  z-index: 2;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}

.location-content {
  padding: 1.5rem;
}

.location-schedule {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.location-schedule li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.location-schedule li:last-child {
  border-bottom: none;
}

.location-day {
  font-weight: 600;
}

.location-time {
  color: var(--primary-dark);
}

.location-address {
  margin-top: 1rem;
  padding: 1rem;
  background-color: var(--background-subtle);
  border-radius: var(--border-radius);
  position: relative;
}

.location-address i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* News-Bereich Verbesserungen */
.news-container {
  position: relative;
  padding: 2rem;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.news-card {
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: none !important;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(213, 13, 60, 0.1);
}

.news-date {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: var(--primary-light);
  color: var(--text-light);
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(213, 13, 60, 0.1);
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

/* Verbesserte Trennelemente */
.divider-custom {
  margin: 1.5rem 0 2.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.divider-custom-line {
  width: 100%;
  max-width: 7rem;
  height: 0.25rem;
  background-color: var(--primary-lighter);
  opacity: 0.3;
  border-radius: 1rem;
}

.divider-custom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.5rem;
}

.divider-custom-icon img {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Catering-Bereich Optimierungen */
.catering-info {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.catering-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.catering-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  width: 100%;
}

.catering-feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.catering-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 3rem;
  border-radius: var(--border-radius);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(213, 13, 60, 0.3);
}

.catering-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('/images/pattern-dots.png');
  opacity: 0.1;
  z-index: 0;
}

.catering-cta-content {
  position: relative;
  z-index: 1;
}

.catering-cta h3 {
  color: var(--text-light);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.catering-image-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
}

.catering-image-container img {
  transition: transform 0.5s ease;
  width: 100%;
}

.catering-image-container:hover img {
  transform: scale(1.05);
}

.catering-intro h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.service-card {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: rgba(213, 13, 60, 0.1);
  color: var(--primary-color);
  font-size: 1.8rem;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background-color: var(--primary-color);
  color: var(--text-light);
}

.service-card h4 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

.section-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
  position: relative;
}

.section-subtitle:after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0.8rem auto 0;
}

/* Process Timeline */
.catering-process {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
  margin: 3rem 0;
}

.process-timeline {
  position: relative;
  padding-left: 60px;
}

.process-step {
  position: relative;
  padding-bottom: 2rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step:before {
  content: '';
  position: absolute;
  left: -30px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background-color: rgba(213, 13, 60, 0.2);
}

.process-step:last-child:before {
  display: none;
}

.step-number {
  position: absolute;
  left: -45px;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.step-content h5 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Testimonial */
.catering-testimonial {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  position: relative;
  margin: 4rem 0;
  box-shadow: var(--box-shadow);
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.catering-testimonial blockquote {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
}

.author-company {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: normal;
}

/* Contact Card */
.contact-card {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--box-shadow);
}

.contact-info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.contact-info {
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.contact-icon {
  height: 50px;
  width: 50px;
  background-color: rgba(213, 13, 60, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.contact-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(0,0,0,0.1);
  margin: 0 1rem;
}

/* About-Bereich Optimierungen */

/* About-Sektion */
.about-image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.5s ease;
  margin-bottom: 2rem;
}

.about-image-container:hover {
  transform: translateY(-5px);
}

.about-image {
  transition: transform 0.5s ease;
  width: 100%;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

.about-content h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-highlight {
  padding: 1.5rem;
  background-color: rgba(255,255,255,0.9);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 2rem 0;
  box-shadow: var(--box-shadow);
}

/* Timeline Styling */
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
  margin: 0 auto;
  max-width: 900px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background-color: rgba(213, 13, 60, 0.2);
  z-index: 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.9), 0 0 0 7px rgba(213, 13, 60, 0.1);
  font-size: 1.1rem;
}

.timeline-content {
  width: 45%;
  background-color: var(--text-light);
  padding: 20px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 25px;
  height: 25px;
  background-color: var(--text-light);
  transform: rotate(45deg) translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -12px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -12px;
}

.timeline-content h4 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

/* About Card Styling */
.about-card {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.about-card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.about-card:hover .about-card-icon {
  transform: scale(1.1);
}

.about-card h4 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

/* Gallery Styling */
.gallery-section {
  margin-top: 4rem;
}

.section-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
  transition: transform 0.5s ease;
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Testimonials */
.testimonial-card {
  padding: 2rem;
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  position: absolute;
  top: 15px;
  left: 15px;
  color: var(--primary-lighter);
  font-size: 5rem;
  opacity: 0.3;
  line-height: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animationen für Content-Elemente */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gestaffelte Animation */
.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.3s; }
.stagger-item:nth-child(3) { transition-delay: 0.5s; }
.stagger-item:nth-child(4) { transition-delay: 0.7s; }

/* Responsive Anpassungen */
@media (max-width: 991px) {
  .content-section {
    padding: 4rem 0;
  }
  
  .catering-cta {
    padding: 2rem;
  }
  
  .catering-cta h3 {
    font-size: 1.8rem;
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-marker {
    left: 40px;
    width: 60px;
    height: 60px;
  }
  
  .timeline-content {
    width: calc(100% - 100px);
    margin-left: 80px !important;
  }
  
  .timeline-content::before {
    left: -12px !important;
  }

  .service-card {
    height: auto;
    margin-bottom: 2rem;
  }
  
  .process-timeline {
    padding-left: 40px;
  }
  
  .catering-testimonial {
    padding: 2rem;
  }
  
  .catering-testimonial blockquote {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .content-section {
    padding: 3rem 0;
  }
  
  .product-card {
    margin-bottom: 1.5rem;
  }
  
  .product-image {
    height: 180px;
  }
  
  .location-header {
    height: 120px;
  }
  
  .news-container {
    padding: 1.5rem;
  }
  
  .catering-cta {
    padding: 1.5rem;
    text-align: center;
  }
  
  .catering-cta h3 {
    font-size: 1.6rem;
  }
  
  .about-badge {
    bottom: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
  }
  
  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }

  .order-lg-1 {
    order: 1;
  }
  
  .order-lg-2 {
    order: 2;
  }
  
  .contact-info-container {
    flex-direction: column;
  }
  
  .contact-info {
    margin-bottom: 1.5rem;
  }
  
  .contact-divider {
    width: 80%;
    height: 1px;
    margin: 0.5rem 0 1.5rem;
  }
  
  .service-icon {
    height: 60px;
    width: 60px;
    font-size: 1.5rem;
  }
  
  .catering-process {
    padding: 1.5rem;
  }
}

/* Standorte-spezifische Styles */
.location-card {
  position: relative;
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.location-header {
  position: relative;
  height: 120px;
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.location-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 1;
}

.location-name {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;

}

.location-content {
  padding: 1.5rem;
}

.location-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.location-badge-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.location-schedule {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.location-schedule li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.location-schedule li:last-child {
  border-bottom: none;
}

.location-day {
  font-weight: 600;
}

.location-time {
  color: var(--primary-dark);
}

.location-address {
  padding: 0.8rem 1rem;
  background-color: var(--background-subtle);
  border-radius: var(--border-radius);
  font-weight: 500;
}

.location-address i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.location-map {
  height: 100%;
  min-height: 250px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

/* Mini-Karten für weitere Standorte */
.mini-card .location-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(213, 13, 60, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.2rem;
}

.mini-schedule {
  margin-bottom: 0.5rem;
}

.mini-schedule li {
  padding: 0.3rem 0;
}

.mini-address {
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
}

/* Location Gallery */
.location-gallery {
  display: flex;
  flex-direction: column;
}

.carousel-caption {
  background-color: rgba(0,0,0,0.5);
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
  .location-header {
    height: 100px;
  }
  
  .location-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .location-content .row {
    flex-direction: column-reverse;
  }
  
  .location-map {
    margin-bottom: 1.5rem;
    min-height: 200px;
  }
}

/* Styling für die Lecker-Komponente */

.product-carousel {
  max-height: 480px;
  box-shadow: var(--box-shadow);
}

.product-feature {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(213, 13, 60, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.feature-content h5 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.feature-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Produkt-Karten */
.product-card {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-body {
  padding: 1.5rem;
}

.product-icons {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.product-icon {
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.1);
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.product-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.product-badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  background-color: rgba(213, 13, 60, 0.1);
  color: var(--primary-color);
}

/* Saisonale Karten */
.seasonal-card {
  border: 2px dashed rgba(213, 13, 60, 0.3);
  position: relative;
}

.seasonal-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.season-header {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--background-subtle);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.season-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Toppings */
.topping-info {
  background-color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.topping-steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.step-number {
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
}

.step-text {
  font-weight: 600;
}

.topping-card {
  display: flex;
  align-items: center;
  background-color: var(--text-light);
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

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

.topping-icon {
  margin-right: 1rem;
  display: flex;
}

.topping-name {
  font-weight: 600;
}

/* Testimonial Sektion */
.testimonial-section {
  position: relative;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  border-radius: var(--border-radius);
  margin: 3rem 0;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.testimonial-quote {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote i {
  font-size: 2rem;
  color: var(--primary-lighter);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
}

.author-info {
  font-size: 0.9rem;
  color: var (--text-muted);
  font-weight: normal;
}

.attribute-note {
  color: var(--text-muted);
  margin-top: 3rem;
}

/* Tabs Styling */
.product-tabs {
  margin-top: 3rem;
}

.nav-tabs .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  border: none;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: var(--primary-dark);
  background-color: transparent;
  border-bottom: 3px solid var(--primary-color);
}

.tab-content {
  padding: 2rem 0;
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
  .product-carousel {
    margin-bottom: 2rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .product-features {
    flex-direction: column;
  }
  
  .feature-item {
    margin-bottom: 1rem;
  }
  
  .testimonial-section {
    padding: 2rem 1rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .nav-tabs .nav-link {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}
