/*
 Theme Name:   twenty twenty five amp child theme
 Template:     twentytwentyfive
 Version:      1.0
*/

@import url("../twentytwentyfive/style.css");

/* Margin am Seitenanfang & Overflow entfernen */
:where(.wp-site-blocks) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

body {
  overflow-x: hidden;
}


/* =========================================
   HERO SECTION – DESKTOP VERSION
   ========================================= */

.murafi-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 90vh;
  background: #f5f5f3;
}

/* -----------------------------------------
   BACKGROUND LAYER
   ----------------------------------------- */

.murafi-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    linear-gradient(
      to right,
      rgba(245, 245, 243, 0.98) 0%,
      rgba(245, 245, 243, 0.95) 12%,
      rgba(245, 245, 243, 0.88) 24%,
      rgba(245, 245, 243, 0.70) 40%,
      rgba(245, 245, 243, 0.38) 56%,
      rgba(245, 245, 243, 0.10) 74%,
      rgba(245, 245, 243, 0.00) 100%
    ),
    url('/wp-content/uploads/2026/03/HeroBackground.jpg');

  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;

  transform-origin: center center;
  animation: murafiBgFloat 10s ease-in-out infinite alternate;
}

/* sichtbarer Glow */
.murafi-hero__bg::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 2;
  pointer-events: none;

  background:
    radial-gradient(
      42% 36% at 84% 76%,
      rgba(146, 176, 210, 0.42) 0%,
      rgba(146, 176, 210, 0.22) 34%,
      rgba(146, 176, 210, 0.00) 72%
    ),
    radial-gradient(
      28% 24% at 81% 28%,
      rgba(230, 236, 242, 0.52) 0%,
      rgba(230, 236, 242, 0.24) 38%,
      rgba(230, 236, 242, 0.00) 76%
    );

  filter: blur(10px);
  opacity: 1;
  transform-origin: center center;
  animation: murafiGlowFloat 4s ease-in-out infinite alternate;
}

/* zusätzlicher sichtbarer Lichtzug */
.murafi-hero__bg::after {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 3;
  pointer-events: none;

  background:
    linear-gradient(
      118deg,
      rgba(255,255,255,0.00) 0%,
      rgba(255,255,255,0.00) 28%,
      rgba(255,255,255,0.18) 42%,
      rgba(255,255,255,0.36) 50%,
      rgba(255,255,255,0.18) 58%,
      rgba(255,255,255,0.00) 72%,
      rgba(255,255,255,0.00) 100%
    );

  mix-blend-mode: screen;
  opacity: 0.9;
  transform-origin: center center;
  animation: murafiSheenFloat 7s ease-in-out infinite alternate;
}

/* zweite weiche Fläche unten rechts */
.murafi-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -12%;
  width: 80%;
  height: 75%;
  z-index: 2;
  pointer-events: none;

  background:
    radial-gradient(
      closest-side,
      rgba(158, 184, 210, 0.34),
      rgba(158, 184, 210, 0.16) 48%,
      rgba(158, 184, 210, 0.00) 100%
    );

  filter: blur(18px);
  transform-origin: center center;
  animation: murafiBlobFloat 4.5s ease-in-out infinite alternate;
}


/* -----------------------------------------
   CONTENT
   ----------------------------------------- */

.murafi-hero__content {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 1140px;
  min-height: 760px;
  margin: 0 auto;
  padding: 118px 24px 96px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  box-sizing: border-box;
}

/* Headline */
.murafi-hero__content h1 {
  margin: 0 0 28px;
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #1d2430;
}

/* Subline */
.murafi-hero__content p {
  margin: 0 0 34px;
  font-size: 20px;
  line-height: 1.55;
  color: #4d5562;
}

/* Button */
.murafi-hero__content .wp-block-button__link,
.murafi-hero__content .gb-button,
.murafi-hero__content a.murafi-hero__button,
.murafi-hero__content .gb-button-wrapper a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 14px;
  background: #315fc9;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(49, 95, 201, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.murafi-hero__content .wp-block-button__link:hover,
.murafi-hero__content .gb-button:hover,
.murafi-hero__content a.murafi-hero__button:hover,
.murafi-hero__content .gb-button-wrapper a:hover {
  background: #2c57b9;
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(49, 95, 201, 0.22);
}

/* Trustline */
.murafi-hero__content .trustline,
.murafi-hero__content p:last-child {
  margin-top: 34px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #69717c;
}


/* -----------------------------------------
   ANIMATIONEN
   ----------------------------------------- */

@keyframes murafiBgFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  100% {
    transform: translate3d(10%, 6%, 0) scale(1.12);
  }
}

@keyframes murafiGlowFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(-12%, 8%, 0) scale(1.14);
    opacity: 1;
  }
}

@keyframes murafiSheenFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  100% {
    transform: translate3d(-10%, 8%, 0) scale(1.16);
    opacity: 1;
  }
}

@keyframes murafiBlobFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.72;
  }
  100% {
    transform: translate3d(-10%, -8%, 0) scale(1.16);
    opacity: 1;
  }
}


/* -----------------------------------------
   DESKTOP FEINTUNING
   ----------------------------------------- */

@media (min-width: 1440px) {
  .murafi-hero__content {
    padding-top: 132px;
    padding-bottom: 108px;
  }

  .murafi-hero__content h1 {
    font-size: 40px;
    max-width: 30ch;
  }

  .murafi-hero__content p {
    font-size: 23px;
  }
}


/* -----------------------------------------
   REDUCED MOTION
   ----------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .murafi-hero__bg,
  .murafi-hero__bg::before,
  .murafi-hero__bg::after,
  .murafi-hero::before {
    animation: none;
  }

  .murafi-hero__content .wp-block-button__link,
  .murafi-hero__content .gb-button,
  .murafi-hero__content a.murafi-hero__button,
  .murafi-hero__content .gb-button-wrapper a {
    transition: none;
  }
}

/* =========================================
   FAQ
   ========================================= */

/* =========================================
   FAQ SECTION
   ========================================= */

.murafi-faq-section__eyebrow {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  text-align: center;

  color: #E84B0F; /* dein Orange */
}


.murafi-faq-section {
  width: 100%;
  padding: 110px 24px;
  background: transparent;
}

.murafi-faq-section__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.murafi-faq-section__header {
  max-width: 920px;
  margin: 0 auto 52px;
  text-align: center;
}

.murafi-faq-section__header h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.08;
  color: #1d2430;
}

.murafi-faq-section__header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #4d5562;
}

.murafi-faq {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid #d8dde4;
}

.murafi-faq__item {
  border-bottom: 1px solid #d8dde4;
}

.murafi-faq__question {
  position: relative;
  width: 100%;
  padding: 28px 56px 28px 0;
  background: transparent;
  border: 0;
  outline: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #173566;
}

.murafi-faq__question span {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.murafi-faq__question::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #2b58b5;
  border-bottom: 2px solid #2b58b5;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.3s ease;
}

.murafi-faq__item.is-open .murafi-faq__question::after {
  transform: translateY(-35%) rotate(-135deg);
}

.murafi-faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.murafi-faq__answer-inner {
  padding: 0 56px 26px 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.murafi-faq__item.is-open .murafi-faq__answer-inner {
  opacity: 1;
  transform: translateY(0);
}

.murafi-faq__answer-inner p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #4d5562;
}

.murafi-faq-note {
  width: 100%;
  max-width: 760px;
  margin: 42px auto 0;
  padding: 18px 24px;
  border-radius: 16px;
  background: #dcecff;
  display: flex;
  align-items: center;
  gap: 16px;
}

.murafi-faq-note__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 999px;
  background: #ffffff;
  color: #173566;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.murafi-faq-note p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #1d2430;
}

.murafi-faq-note a {
  color: #173566;
  text-decoration: none;
  font-weight: 600;
}

.murafi-faq-note a:hover {
  text-decoration: underline;
}

/* Cal Kalender */



.murafi-booking-section {
  width: 100%;
  padding: 90px 24px 80px;
}

.murafi-booking-section__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.murafi-booking-section__eyebrow {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  text-align: center;

  color: #E84B0F; /* dein Orange */
}

.murafi-booking-section__header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.murafi-booking-section__header h2 {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.08;
  color: #1d2430;
}

.murafi-booking-section__header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #4d5562;
}

.murafi-booking-embed {
  width: 100%;
  min-height: 760px;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

/* Cal-Skeleton ausblenden */
#skeleton-container,
#skeleton-container.light {
  display: none !important;
}

/* Smoothes Springen zu HTML Markern*/
html {
  scroll-behavior: smooth;
}

/*Styling der Nav-Bar */

.murafi-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(245, 245, 243, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 36, 48, 0.08);
}

/* EIngansanimation */

.murafi-hero__content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: murafiFadeUp 1.4s ease forwards;
}

.murafi-hero__content h1 {
  animation-delay: 0.08s;
}

.murafi-hero__content p {
  animation-delay: 0.18s;
}

.murafi-hero__content .wp-block-button,
.murafi-hero__content .gb-button-wrapper,
.murafi-hero__content .murafi-hero__button {
  animation-delay: 0.28s;
}

.murafi-hero__content .trustline {
  animation-delay: 0.38s;
}

@keyframes murafiFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .murafi-hero__content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Styling Social Störer */

.stoerer-socialmedia {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 520px;
  background: #E84B0F;
  isolation: isolate;
}

.stoerer-socialmedia__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Weiche Ausfederung am rechten Rand des Videos */
.stoerer-socialmedia__media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  width: 30%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(232, 75, 15, 0) 0%,
    rgba(232, 75, 15, 0.18) 24%,
    rgba(232, 75, 15, 0.48) 52%,
    rgba(232, 75, 15, 0.82) 78%,
    rgba(232, 75, 15, 1) 100%
  );
}

/* Video bewusst kleiner und links positioniert */
.stoerer-socialmedia__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: grayscale(1) contrast(1.05) brightness(0.72);
}

/* globaler Farbverlauf: links transparenter, rechts voll orange */
.stoerer-socialmedia__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(232, 75, 15, 0.08) 0%,
      rgba(232, 75, 15, 0.14) 18%,
      rgba(232, 75, 15, 0.24) 34%,
      rgba(232, 75, 15, 0.42) 48%,
      rgba(232, 75, 15, 0.68) 60%,
      rgba(232, 75, 15, 0.90) 74%,
      rgba(232, 75, 15, 1) 100%
    );
}

.stoerer-socialmedia__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1140px;
  min-height: 520px;
  margin: 0 auto;
  padding: 84px 48px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.stoerer-socialmedia__eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.stoerer-socialmedia__inner h2 {
  margin: 0 0 20px;
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.stoerer-socialmedia__inner p {
  margin: 0;
  max-width: 34ch;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

/* Buttons jetzt sicher im sichtbaren Bereich */
.stoerer-socialmedia__cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stoerer-socialmedia__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.stoerer-socialmedia__button:hover {
  background: #ffffff;
  color: #E84B0F;
  transform: translateY(-1px);
}

.stoerer-socialmedia {
  margin-block-start: 0 !important;
}

/* Störer Klinik */

/* =========================================
   KLINIK STÖRER
   ========================================= */

.stoerer-klinik {
  width: 100%;
  padding: 120px 24px;
  background: #FBFAF3;
}

.stoerer-klinik__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.stoerer-klinik__media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 24px;
  background: #e9ecef;
  box-shadow: 0 20px 50px rgba(20, 28, 36, 0.08);
}

.stoerer-klinik__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.04) 0%,
      rgba(255,255,255,0.00) 24%,
      rgba(0,0,0,0.08) 100%
    );
}

.stoerer-klinik__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.02) brightness(0.94);
}

.stoerer-klinik__content {
  position: relative;
}

.stoerer-klinik__eyebrow {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.stoerer-klinik__content h2 {
  margin: 0 0 24px;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #1d2430;
}

.stoerer-klinik__lead {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.6;
  color: #394150;
}

.stoerer-klinik__text {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.75;
  color: #5a6270;
}

.stoerer-klinik__facts {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgba(232, 75, 15, 0.18);
  padding-left: 20px;
}

.stoerer-klinik__facts li {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #2d3440;
}

.stoerer-klinik__facts li + li {
  margin-top: 10px;
}

.stoerer-klinik__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  color: #e84b0f;
  text-decoration: none;
}

.stoerer-klinik__link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.stoerer-klinik__link:hover::after {
  transform: translateX(3px);
}

#faq {
  margin-block-start: 0 !important;
}