 :root {
        /* Grids & Abstände */

        --radius: 0.9rem;
        --pkg-max: 1180px; /* max. Breite für Paket-Liste */
        --pkg-gap: 2.4rem; /* Abstand zw. den Paketen    */
        /* Farb-Verläufe */
        --pill-grad: linear-gradient(135deg, #ff8800, #ff408d);
        --pkg-grad: linear-gradient(135deg, #ffffff 0%, #bfbfbf 100%);
        --grad-text: linear-gradient(135deg, #ff8800 0%, #ff408d 30%, #00c8ff 60%, #00ff62 100%);

      }



      /* --------------------------------------------------
         Hero-Section
      -------------------------------------------------- */
/* Hero-Bereich */
#hero-bowl {
  position: relative;
  width: 100%;
  height: 40vh;
  margin-top: 60px;
  /* Bild nicht überlaufen lassen */
}

/* Bild fullscreen cover */
#hero-bowl img.bowl-hero__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient-Linie direkt unter dem Bild */
#hero-bowl::after {
  content: "";
  position: absolute;
  bottom: 0;       /* am unteren Rand des Containers */
  left: 0;
  width: 100%;
  height: 4px;     /* Linienhöhe */
  background: var(--grad-text); /* deine Gradient-Variable */
}

/* Media Queries für größere Bildschirme */
@media (min-width: 768px) {
  #hero-bowl {
    height: 50vh;
  }
}

@media (min-width: 1200px) {
  #hero-bowl {
    height: 60vh;
  }
}

      .bowl-hero__tag {
        max-width: 740px;
        margin: 1rem auto 0;
        font-size: clamp(1rem, 1.15vw, 1.3rem);
        line-height: 1.55;
        background: var(--grad-text);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      /* --------------------------------------------------
         Showcase-Block – Einblicke
      -------------------------------------------------- */
      #bowl-showcase {
      padding: 14vh calc(var(--wrap) + var(--wide-margin));
  align-items: start;
  position: relative;
  z-index: 1;}


      .char-desc {
        margin: 2rem 0 0;
        max-width: 760px;
        text-align: left;
        line-height: 1.55;
      }

        @media (max-width: 900px) {
       
      }

      /* --------------------------------------------------
         Pakete
      -------------------------------------------------- */
      .bowl-packages {
        max-width: var(--pkg-max);
        margin: 0 auto;
        padding: 0 var(--wrap);
        display: flex;
        flex-direction: column;
        gap: var(--pkg-gap);
      }

      .pkg {
        display: grid;
        grid-template-columns: minmax(0, 400px) 1fr;
        gap: 1.8rem;

      }

      @media (max-width: 900px) {
        .pkg {
          grid-template-columns: 1fr;
        }
        .pkg__visual {
          aspect-ratio: 16 / 9;
        }
      }

      /* Bildblock mit Hover-Swap */
      .pkg__visual {
        position: relative;
        aspect-ratio: 3 / 2;
        border-radius: var(--radius);
        overflow: hidden;
        background: var(--pkg-grad);
      }
      .pkg__visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.35s;
      }
      .pkg__visual::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.35s;
        background: var(--hover) center / cover no-repeat;
        z-index: 1;
      }
      .pkg__visual:hover img {
        opacity: 0;
      }
      .pkg__visual:hover::after {
        opacity: 1;
      }

      /* Icon-Button */
      @keyframes hueShift {
        to {
          filter: hue-rotate(360deg);
        }
      }
    .pkg__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.1rem;
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);        /* Button-Hintergrund bleibt weiß */
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.pkg__icon-gradient {
  font-size: 1.3rem;
  font-weight: bold;
  background: var(--grad-text);
  background-size: 400% 400%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
      .pkg__icon:hover {
        transform: scale(1.08);
      }

      /* Info-Spalte */
      .pkg__title {
        font-size: 1.55rem;
        margin: 0 0 0.35rem 0;
        color: var(--white);
      }
      .pkg__text {
        line-height: 1.55;
        margin: 0 0 0.6rem 0;
              color: var(--white);
      }

      /* Price & Action Pill */
      .pkg__actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
              color: var(--white);
      }

      .price-pill,
      .btn-primary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 2.75rem; /* gleicher Button-Höhenstandard */
        padding: 0 1.4rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: 0.95rem;
        white-space: nowrap;
        user-select: none;
      }

      .price-pill {
        background: var(--white);
        color: var(--black);
      }

      .btn-primary {
        border: none;
        cursor: pointer;
        background: var(--white);
        color: var(--black);
        transition: background 0.25s;
      }
      .btn-primary:hover {
        background: #e8e8e8;
        color: var(--white);
      }

      /* --------------------------------------------------
         Modal – Angebot konfigurieren
      -------------------------------------------------- */
      #bowl-modal {
        position: fixed;
        inset: 0;
        z-index: 5000;
        display: grid;
        place-items: center;
        pointer-events: none;
      }
      #bowl-modal[hidden] {
        display: none;
      }
      .modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
      }
      .modal {
        position: relative;
        width: min(92vw, 520px);
        max-height: 92vh;
        color: var(--white);
        overflow-y: auto;
        background: var(--pkg-grad);
        border-radius: var(--radius);
        padding: 2.3rem 2.7rem 2.8rem;
        pointer-events: auto;
      }
      .modal__close {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        width: 2.4rem;
        aspect-ratio: 1;
        border: none;
        border-radius: 50%;
        background: rgb(0, 0, 0);
        color: #fff;
        font-size: 1.1rem;
        cursor: pointer;
      }
      .modal__title {
        font-size: 1.35rem;
        font-weight: 700;
        margin: 0 0 1.2rem 0;
        
      }
      .modal__intro {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0 0 1.4rem 0;
        opacity: 0.9;
      }
      fieldset {
        border: none;
        margin: 0 0 1.25rem 0;
        padding: 0;
      }
      legend {
        font-weight: 700;
        margin: 0 0 0.55rem 0;
      }

      /* Chip-Checkbox */
      .chip {
        display: inline-flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.4rem;
        margin: 0.3rem 0.4rem;
        padding: 0.5rem 1.1rem;
        background: rgba(153, 153, 153, 0.238);
        border: 2px solid rgb(255, 255, 255);
        border-radius: 999px;
        cursor: pointer;
        font-size: 0.93rem;
        line-height: 1.3;
      }
      .chip input {
        accent-color: #fff;
      }
      .chip__ttl {
        font-weight: 600;
      }
      .chip__desc {
        opacity: 0.7;
        font-size: 0.78em;
      }
      .chip__prc {
        font-weight: 700;
      }

      /* Formular-Ergänzungen */
      .contact-fields {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.4rem 0;
      }
      .contact-fields input,
      .contact-fields textarea {
        width: 100%;
        padding: 0.55rem 1.1rem;
        border: 1px solid rgb(255, 255, 255);
        border-radius: var(--radius);
        background: rgba(0, 0, 0, 0.08);
        color: #000000;
      }
      .contact-fields textarea {
        resize: vertical;
        min-height: 110px;
      }
      .modal__sum {
        font-weight: 700;
        font-size: 1.05rem;
        text-align: center;
        margin: 1rem 0 1.4rem;
      }
      .legal {
        font-size: 0.8rem;
        line-height: 1.4;
        opacity: 0.7;
        text-align: center;
        margin-bottom: 1.4rem;
      }
      .modal__submit {
        width: 100%;
      }







      