/*
 Theme Name:   The7 Child
 Theme URI:    https://example.com/
 Description:  Child Theme für The7
 Author:       Michaela
 Author URI:   https://www.audiogaestebuch-expert.de/
 Template:     dt-the7
 Version:      1.0.0
 Text Domain:  the7-child
*/

/* =========================
   Sticky Kontaktbutton (lila)
   ========================= */
.sticky-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  min-height: 44px;                  /* Touch-Target */
  border-radius: 999px;
  background: #5A519F;               /* Lila */
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  z-index: 9999;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sticky-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  filter: brightness(1.05);
}
@media (max-width: 480px) {
  .sticky-contact {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
    font-size: 15px;
  }
}
/* Admin-Bar Abstand */
@media screen and (min-width: 783px) {
  body.admin-bar .sticky-contact { bottom: 52px; }
}
