/* -----------------------------------------
   PAGE TITLE
   Selektor: .entry-title
------------------------------------------ */
.page .entry-title {
    color: #006d6f !important;
    font-size: 26px !important;     /* ← Desktop: anpassen */
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important; /* optional */
}

/* -----------------------------------------
   H1 – falls im Content verwendet
------------------------------------------ */
h1 {
    color: #006d6f;
    font-size: 24px;                /* ← Desktop: anpassen */
    font-weight: 600;
    line-height: 1.25;
}

/* -----------------------------------------
   H2 – Abschnittstitel
------------------------------------------ */
h2 {
    color: #006d6f;
    font-size: 22px;                /* ← Desktop: anpassen */
    font-weight: 500;
    line-height: 1.3;
}

/* -----------------------------------------
   H3 – kleine Untertitel
------------------------------------------ */
h3 {
    color: #006d6f;
    font-size: 20px;                /* ← Desktop: anpassen */
    font-weight: 500;
    line-height: 1.35;
}

/* -----------------------------------------
   MOBILE (unter 768px)
------------------------------------------ */
@media (max-width: 768px) {

    .page .entry-title {
        font-size: 22px !important; /* ← Mobile: anpassen */
        margin-bottom: 16px !important;
    }

    h1 {
        font-size: 21px;            /* ← Mobile: anpassen */
    }

    h2 {
        font-size: 20px;            /* ← Mobile: anpassen */
    }

    h3 {
        font-size: 19px;            /* ← Mobile: anpassen */
    }
}








/* Erzwingt Parallax-Effekt auf allen Devices */
.panel-image {
	background-attachment: fixed !important;
	background-position: center center;
	background-size: cover;
}
/* Parallax Ende */






/* CTA Einbettung /*
/* Brand-Farbe aus deinem Upload */
:root {
  --brand-orange: #F37021;       /* Orange aus deinem Bild */
  --brand-orange-hover: #D85F1C; /* etwas dunkler für Hover */
}

.booking-cta {
  position: fixed !important;
  top: 20px;
  right: 20px;
  z-index: 99999;

  background-color: var(--brand-orange);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 8px;          /* kleine Rundungen */
  display: inline-block;

  border: none;
  box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

/* Hover-Effekt */
.booking-cta:hover,
.booking-cta:focus {
  background-color: var(--brand-orange-hover);
  color: #ffffff;
  text-decoration: none;
}

/* Tooltip nur Desktop */
@media (hover: hover) {
  .booking-cta::after {
    content: "078 215 83 80";
    position: absolute;
    top: 110%;
    right: 0;
    background-color: rgba(0,109,111,1.1);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease 0.5s, transform 0.2s ease 0.5s; /* Verzögerung */
    pointer-events: none;
  }

  .booking-cta:hover::after,
  .booking-cta:focus::after {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CTA Ende */






/* Rundet iFrame Youtube Video ab */
.wp-block-embed__wrapper iframe {
  border-radius: 8px;
  overflow: hidden;
}
/* iFrame Rundung Ende */
