.elementor-990 .elementor-element.elementor-element-5173ad35{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-990 .elementor-element.elementor-element-39bc49b7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-990 .elementor-element.elementor-element-593aaef3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-990 .elementor-element.elementor-element-16f3200{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-990 .elementor-element.elementor-element-f2a024a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-990 .elementor-element.elementor-element-578fa7cf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-4de2bffc *//* 💌 Stil für persönlichen Kontaktabschnitt – mit sichtbarem Glitzer, leuchtendem Icon und Logo-Glow */
.kontakt-direkt {
  padding: 100px 20px 80px;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://h-a-l-t.de/wp-content/uploads/2019/08/DALL·E-2025-03-24-04.57.06-A-soft-and-dreamy-blue-gradient-background-without-visible-gradient-lines-in-image-form-not-CSS.-The-image-should-feature-calming-tones-of-sky-blue.webp') center/cover no-repeat;
  border-top: 1px solid #ddd;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ✨ Sichtbare Glitzer-Partikel */
.kontakt-direkt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://h-a-l-t.de/wp-content/uploads/2019/08/lachen_karten_glitter_overlay.gif') center/cover repeat;
  opacity: 0.12;
  pointer-events: none;
  animation: shimmerParticles 20s linear infinite;
  z-index: 0;
}

@keyframes shimmerParticles {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.kontakt-direkt-heading {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  color: #8b1a28;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.6px;
  animation: fadeInDown 1.2s ease both;
  position: relative;
  z-index: 2;
}

.kontakt-direkt-heading::after {
  content: '💖';
  font-size: 1.5rem;
  margin-left: 10px;
  color: #d81b60;
  animation: pulseHeart 2.5s infinite ease-in-out;
}

@keyframes pulseHeart {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

.kontakt-direkt-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  animation: slideInUp 1.2s ease both;
  position: relative;
  z-index: 2;
}

.kontakt-bild img {
  width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(255, 105, 135, 0.25), 0 0 30px rgba(255, 105, 180, 0.1);
  animation: floatImage 6s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.kontakt-bild img:hover {
  transform: scale(1.03);
}

.kontakt-textblock {
  max-width: 460px;
  text-align: left;
  font-family: 'Georgia', serif;
  animation: fadeIn 2s ease both 0.6s;
  position: relative;
  z-index: 2;
}

.kontakt-einleitung {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  background: #fdf0f1;
  padding: 20px 24px;
  border-left: 4px solid #b71c1c;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(183, 28, 28, 0.05);
  animation: fadeIn 2s ease both 0.8s;
}

.kontakt-einleitung a {
  color: #8b1a28;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.kontakt-einleitung a:hover {
  color: #b71c1c;
}

.kontakt-abschluss {
  margin-top: 60px;
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  color: #5c5c5c;
  animation: fadeInUp 2.4s ease both;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Animationen */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .kontakt-direkt-heading {
    font-size: 1.6rem;
  }

  .kontakt-textblock {
    text-align: center;
  }

  .kontakt-bild img {
    width: 220px;
  }

  .kontakt-direkt-wrapper {
    padding: 30px;
  }

  .kontakt-einleitung {
    font-size: 1.1rem;
  }

  .kontakt-abschluss {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-26954bea */.kontakt-video-wrapper {
  padding: 60px 20px;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://h-a-l-t.de/wp-content/uploads/2019/08/DALL·E-2025-03-24-04.57.06-A-soft-and-dreamy-blue-gradient-background-without-visible-gradient-lines-in-image-form-not-CSS.-The-image-should-feature-calming-tones-of-sky-blue.webp') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ddd;
  margin-bottom: 50px;
}

/* ✨ Sichtbare Glitzer-Partikel */
.kontakt-video-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://h-a-l-t.de/wp-content/uploads/2019/08/lachen_karten_glitter_overlay.gif') center/cover repeat;
  opacity: 0.12;
  pointer-events: none;
  animation: shimmerParticles 20s linear infinite;
  z-index: 0;
}

@keyframes shimmerParticles {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.kontakt-video-header {
  margin-bottom: 30px;
}

.kontakt-video-heading {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  color: #8b1a28;
  font-weight: 600;
  letter-spacing: 0.6px;
  animation: fadeInDown 1.2s ease both;
  position: relative;
  z-index: 2;
}

.kontakt-video-content {
  position: relative;
  z-index: 2;
}

.kontakt-video {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  animation: fadeIn 1s ease-in-out both;
}

.kontakt-video:hover {
  transform: scale(1.05);
}

/* Animationen */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Für die Glitzeranimation */
@keyframes shimmerParticles {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* Bildanimation */
@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .kontakt-video-heading {
    font-size: 1.6rem;
  }

  .kontakt-video {
    max-width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-29d6cf0a */@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.zitat-wrapper {
  margin: 100px auto 40px;
  text-align: center;
  max-width: 800px;
  padding: 40px;
  background: rgba(255, 240, 245, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(255, 192, 203, 0.2);
  animation: softFadeIn 2s ease;
  position: relative;
}

.zitat-text {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  color: #4b2c2c;
  margin-bottom: 20px;
  line-height: 1.8;
}

.zitat-signatur {
  font-family: 'Great Vibes', cursive;
  font-size: 2.4rem;
  color: #8b1a28;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  border-right: 2px solid #8b1a28;
  width: 0;
  animation: signaturSchreiben 4s steps(30, end) forwards;
}

.zitat-signatur::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #ff9a9e 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: schweifLeuchten 4s linear forwards;
}

@keyframes signaturSchreiben {
  to {
    width: 100%;
    border-right: none;
  }
}

@keyframes softFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes schweifLeuchten {
  0% {
    opacity: 1;
    right: -10px;
    transform: translateY(-50%) scale(1);
  }
  100% {
    opacity: 0;
    right: 100%;
    transform: translateY(-50%) scale(2);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4595459d *//* 💌 Stil für persönlichen Kontaktabschnitt – mit sichtbarem Glitzer, leuchtendem Icon und Logo-Glow */
.kontakt-direkt {
  padding: 100px 20px 80px;
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://h-a-l-t.de/wp-content/uploads/2019/08/DALL·E-2025-03-24-04.57.06-A-soft-and-dreamy-blue-gradient-background-without-visible-gradient-lines-in-image-form-not-CSS.-The-image-should-feature-calming-tones-of-sky-blue.webp') center/cover no-repeat;
  border-top: 1px solid #ddd;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ✨ Sichtbare Glitzer-Partikel */
.kontakt-direkt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://h-a-l-t.de/wp-content/uploads/2019/08/lachen_karten_glitter_overlay.gif') center/cover repeat;
  opacity: 0.12;
  pointer-events: none;
  animation: shimmerParticles 20s linear infinite;
  z-index: 0;
}

@keyframes shimmerParticles {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.kontakt-direkt-heading {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  color: #8b1a28;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.6px;
  animation: fadeInDown 1.2s ease both;
  position: relative;
  z-index: 2;
}

.kontakt-direkt-heading::after {
  content: '💖';
  font-size: 1.5rem;
  margin-left: 10px;
  color: #d81b60;
  animation: pulseHeart 2.5s infinite ease-in-out;
}

@keyframes pulseHeart {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 1; }
}

.kontakt-direkt-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  animation: slideInUp 1.2s ease both;
  position: relative;
  z-index: 2;
}

.kontakt-bild img {
  width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(255, 105, 135, 0.25), 0 0 30px rgba(255, 105, 180, 0.1);
  animation: floatImage 6s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.kontakt-bild img:hover {
  transform: scale(1.03);
}

.kontakt-textblock {
  max-width: 460px;
  text-align: left;
  font-family: 'Georgia', serif;
  animation: fadeIn 2s ease both 0.6s;
  position: relative;
  z-index: 2;
}

.kontakt-einleitung {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  background: #fdf0f1;
  padding: 20px 24px;
  border-left: 4px solid #b71c1c;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(183, 28, 28, 0.05);
  animation: fadeIn 2s ease both 0.8s;
}

.kontakt-einleitung a {
  color: #8b1a28;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.kontakt-einleitung a:hover {
  color: #b71c1c;
}

.kontakt-abschluss {
  margin-top: 60px;
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  color: #5c5c5c;
  animation: fadeInUp 2.4s ease both;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* Buttons ohne Umrandung */
.contact-btn {
  background-color: #ff69b4;
  color: white;
  padding: 15px 25px;
  font-size: 1.2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 15px 0;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.contact-btn:hover {
  background-color: #f39c12;
}

.email-btn {
  background-color: #ffcc00;
  color: black;
}

.email-btn:hover {
  background-color: #f39c12;
}

/* Popup */
.contact-form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-family: 'Montserrat', sans-serif;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  cursor: pointer;
}

/* Animationen */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .kontakt-direkt-heading {
    font-size: 1.6rem;
  }

  .kontakt-textblock {
    text-align: center;
  }

  .kontakt-bild img {
    width: 220px;
  }

  .kontakt-direkt-wrapper {
    padding: 30px;
  }

  .kontakt-einleitung {
    font-size: 1.1rem;
  }

  .kontakt-abschluss {
    font-size: 1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-62f15f33 *//* 🏁 Stil für den Footer mit Copyright */
.halt-footer {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://h-a-l-t.de/wp-content/uploads/2019/08/DALL·E-2025-03-24-04.57.06-A-soft-and-dreamy-blue-gradient-background-without-visible-gradient-lines-in-image-form-not-CSS.-The-image-should-feature-calming-tones-of-sky-blue.webp') center/cover no-repeat;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ddd;
  margin-top: 50px;
}

/* 🌙 Footer Logo */
.footer-logo img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  animation: fadeIn 1.2s ease both;
}

/* 💬 Abschließender Text */
.footer-text h2 {
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  color: #8b1a28;
  font-weight: 600;
  letter-spacing: 0.6px;
  animation: fadeInUp 1.2s ease both;
  margin-bottom: 20px;
}

/* 🔒 Copyright */
.footer-copyright p {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  color: #5c5c5c;
  opacity: 0.9;
  animation: fadeInUp 1.4s ease both;
}

/* Animationen */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .footer-text h2 {
    font-size: 1.2rem;
  }

  .footer-copyright p {
    font-size: 0.9rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-27756c69 */.fliegende-herzen {
  position: fixed;
  top: -50px;
  left: 0;
  width: 100%;
  font-size: 22px;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  animation: herzenFall 15s linear infinite;
  opacity: 0.5;
}

@keyframes herzenFall {
  0% { transform: translateY(-100px) scale(1); opacity: 0.4; }
  50% { transform: translateY(50vh) scale(1.2); opacity: 0.6; }
  100% { transform: translateY(120vh) scale(1); opacity: 0; }
}/* End custom CSS */