/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
}

:root{
    --section-spacing: 60px;
    --section-spacing-sm: 30px;
    --nav-spacing: 100px;
}

@media (min-width: 767px) {
    :root{
    --section-spacing: 80px;
    --section-spacing-sm: 40px;
    --nav-spacing: 120px;
    }
}

@media (min-width: 1024px) {
    :root{
    --section-spacing: 120px;
    --section-spacing-sm: 60px;
    --nav-spacing: 140px;
    }
}

.pMargin p {
  margin-block-end: 0;
  margin-block-start: 0;
}

.elementor-widget-text-editor p a {
  font-size: inherit;
}


.hero-cta-button .elementor-button-content-wrapper{
    align-items: center;
}

.hero-cta-button svg {
    width: 2em !important;
    height: 2em !important;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover svg {
    transform: rotate(45deg);
}

.hero-cta-button svg path {
    fill: #ffffff;
}

.wa-floating-button .elementor-button-content-wrapper{
    align-items: center;
}

.wa-floating-button svg {
    width: 1.6em !important;
    height: 1.6em !important;
}

.elementor .elementor-widget-html .audio-card {
  max-width: 700px;
  margin: 0 auto;
  color: #0E0101;
}

/* PLAYER CARD */
.elementor .elementor-widget-html .audio-card .player-card {
  display: flex;
  gap: 20px;
  background-color: #E9EAEC;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

/* COVER */
.elementor .elementor-widget-html .audio-card .player-card .cover {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
}

/* CONTENT */
.player-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SONG TITLE */
#current-track {
  font-weight: 600;
  margin-bottom: 10px;
}

/* AUDIO PLAYER */
audio {
  width: 100%;
  filter: invert(1);
}

/* TRACKLIST */
.tracklist {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* TRACK */
.track {
  display: flex;
  justify-content: space-between;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
  transition: all 0.2s ease;
}

.track:hover {
  color: #7A0000
}

.track.active {
  color: #7A0000
}

/* ALBUM TEXT */
.album {
  opacity: 0.6;
  font-size: 12px;
}

.showMore {
  text-decoration: underline;
  color: #7A0000;
  font-size: 14px;
  cursor: pointer;
  padding-left: 14px;
}

/* Nur erste 6 anzeigen */
.tracklist.collapsed .track:nth-child(n+7) {
  display: none;
}

/* _______________________*/

.customer-card {
    position: sticky !important;
    top: var(--section-spacing);
}

.customer-heading {
    position: sticky !important;
    top: var(--section-spacing);
}

.customer-card.one {
    transform: rotate(-4deg);
    z-index: 1;
}

.customer-card.two {
    transform: rotate(4deg);
    z-index: 2;
}

/* .customer-card.three {
    transform: rotate(-4deg);
    z-index: 3;
} */



/* =========================
   TABLET (ab 767px)
========================= */

@media (min-width: 767px) {

  .track {
    font-size: 16px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .showMore {
    font-size: 16px;
    padding-left: 40px;
  }
}

/* =========================
   DESKTOP (ab 1024px)
========================= */

@media (min-width: 1024px) {

  .track {
    font-size: 18px;
  }
  .showMore {
    font-size: 18px;
  }

    /* COVER */
  .elementor .elementor-widget-html .audio-card .player-card .cover {
    width: 150px;
    height: 150px;
  }
}
