/* ===== Scoped design tokens (only affect #hg-offers) ===== */
/* ===== Scoped design tokens (only affect #hg-offers) ===== */
#hg-offers {
    --brand: #134d02;
    --brand-600: #16473e;
    --text: #1b1b1b;
    --muted: #6b7280;
    --bg: #ffffff;
    --bg-soft: #f6f7f8;
    --border: #e5e7eb;
    --radius: 14px;
    --shadow: 0 10px 25px rgba(0,0,0,.08);
    --shadow-soft: 0 6px 16px rgba(0,0,0,.06);
    --container: 1180px;
    
    color: var(--text)
}

#hg-offers img {
    max-width: 100%;
    height: auto;
    display: block
}

#hg-offers a {
    text-decoration: none; 
    border-bottom: 1px dotted #124d00;
    color: #124d00;
     color: inherit; 
}

.hg-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(12px,2vw,24px)
}

.hg-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(12px,2vw,24px)
}

/* ===== HERO ===== */
.hg-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 48vh;
    color: #fff;
    background: linear-gradient(0deg,rgba(0,0,0,.35),rgba(0,0,0,.35)),url('https://www.hochsteg.at/images/Paar-Im_Wellnes-Ebensee.webp') center/cover no-repeat;
    border-bottom: 1px solid var(--border)
}

.hg-hero__inner {
    padding: clamp(20px,5vw,56px);
}

/* 1) Bild abdunkeln: Overlay auf dem Hero-Hintergrund */
.hg-hero { position: relative; }
.hg-hero::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.40), rgb(30 63 32 / 13%));
  z-index: 0;
}
/* Inhalt über das Overlay heben */
.hg-hero > .hg-hero__inner { position: relative; z-index: 1; }

/* 2) Lesbare Text-Pane hinter Headline/Copy/Chips */
.hg-hero__inner.hg-container{
  background: rgb(0 0 0 / 0%);              /* halbtransparentes Schwarz */
  -webkit-backdrop-filter: blur(2px) saturate(110%);
  backdrop-filter: blur(1px) saturate(110%);
  border-radius: 16px;
  padding: clamp(16px,4vw,28px);
  box-shadow: 0 8px 24px rgba(0,0,0,.30);
  /* font-size: larger;  ← bitte entfernen, macht zu große Zeilen */
}

/* 3) Typo & Chips: hoher Kontrast + Schatten */
.hg-hero h1{
  color:#fff; font-weight:700; line-height:1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.55), 0 0 1px rgba(0,0,0,.2);
  text-wrap: balance;
  font-size: clamp(28px,4.2vw,44px);
}
.hg-hero p{
  color:#eef2f7; line-height:1.45;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
  max-width: 68ch; margin: 0 0 12px;
  font-size: clamp(16px,2vw,19px);
}
.hg-chiprow{ gap:10px; margin-top:12px; }
.hg-chip{
  background: rgba(255,255,255,.95);
  color:#1b1b1b;
  border:1px solid rgba(255,255,255,.7);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

/* Mobil: noch stärker abdunkeln, weil das Bild kleiner/kontrastreicher wirkt */
@media (max-width: 680px){
  .hg-hero::before{
    background: linear-gradient(180deg, rgb(0 0 0 / 2%), rgb(0 0 0 / 27%));
  }
  .hg-hero__inner.hg-container{/* background: rgb(0 0 0 / 2%); */}
}

/* Fallback: wenn kein (backdrop-)blur unterstützt wird */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
  .hg-hero__inner.hg-container{ background: rgba(0,0,0,.55); }
}


.hg-hero h1 {
    margin: 0 0 6px;
    font-size: clamp(26px,4vw,42px);
    line-height: 1.1;
    color: white
}

.hg-hero p {
    margin: 0 0 12px;
    max-width: 70ch;
    opacity: .95
}

.hg-chiprow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 16px
}

.hg-chip {
    font-size: 1.5em;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.4);
    color: #c24808;
    padding: 8px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px)
}

.hg-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px
}

.hg-btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s transform ease,.2s background-color ease,.2s opacity ease
}

.hg-btn--primary {
    background: var(--brand);
    color: #fff
}

.hg-btn--primary:hover {
    background: var(--brand-600);
    transform: translateY(-1px)
}

.hg-btn--ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.7);
    color: #fff
}

.hg-bestprice {
    margin-top: 6px;
    font-size: large;
    opacity: .9;
    font-size: large;
}

/* ===== OFFER CARDS ===== */
.hg-offer-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin: 22px 0
}

@media(max-width: 760px) {
    .hg-offer-grid {
        grid-template-columns:1fr
    }
}

.hg-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #fff;
    overflow: hidden
}
.hg-card:hover{
    background-color: #fff7ed
}

.hg-card__hd {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border)
}

.hg-card__hd h2 {
    margin: 0;
    font-size: 20px
}

.hg-card__hd .hg-muted {
    margin-top: 4px
}

.hg-card__bd {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px 16px
}

.hg-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 12px;
    font-size: 1.7em
}

.hg-price strong {
    font-size: 22px
}

.hg-muted {
    color: var(--muted);
   
}
.hg-final__inner .hg-muted, .hg-card__hd .hg-muted{
    font-size: 1.7em;
    line-height: 1.7em;
}

.hg-benefits {
    padding: 0 16px 12px;
    color: #374151;
    font-size: 14px
}

.hg-card__cta {
    display: flex;
    gap: 10px;
    padding: 0 16px 16px;
    font-size: 1.4em;
    color: white;
}

    #hg-offers a.btn.btn-secondary { 
    /* background: #fff;
    border: 1px solid #999;
    color: green; */

    color: green;
    background-color: white;
}


/* ===== SECTION HEADINGS ===== */
#hg-offers h2 {
    font-size: clamp(20px,3vw,26px);
    margin: 22px 0 10px
}

.hg-lead {
    font-size: 18px;
    color: #374151;
    margin: 6px 0 16px
}

/* ===== DETAILS & LISTS ===== */
.hg-bullets {
    margin: 8px 0 14px;
    padding-left: 18px
}

.hg-bullets li {
    margin: 12px 16px;
    list-style: initial;
}

details.hg-box {
    font-size: 1.7em;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    background: #4ba33040;
    /* padding-top: 4px; */
}

details.hg-box+details.hg-box {
    margin-top: 10px
}

/* ===== FINAL CTA ===== */
.hg-final {
    position: relative;
    overflow: hidden;
    margin: 26px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg,#ffffff,#f5faf8)
}

.hg-final__inner {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    padding: clamp(14px,3vw,24px)
}

/* ===== MINI STICKY BAR (mobile/desktop) ===== */
.hg-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    z-index: 50;
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center
}

.hg-sticky .hg-btn {
    padding: 10px 14px
}

/* Accessibility */
#hg-offers :focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px
}

.hero--card .card {
    position: absolute;
    bottom: 16px;
    left: 16px;
    max-width: min(520px, 90%);
    background: rgba(0,0,0,.55);
    color: #fff;
    padding: 14px 16px;
    border-radius: 10px;
    backdrop-filter: saturate(120%) blur(2px);
    /* dezent, kann man weglassen */
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.hero--card .card h2 {
    margin: 0 0 .25em;
    font-size: 1.6rem;
    line-height: 1.15;
}

.hero--card .card p {
    margin: 0;
    font-size: 1rem;
}
