

/* ===== Erlebnis Abschnitt auf volle Breite (angepasst wie erlebnis) ===== */
#erlebnis-section {
    padding: 40px 0;
    background-color:#e8aeb6;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin-top: 5px
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

/* ===== Überschrift für Erlebnis ===== */
#erlebnis-section h2 {
    font-size: 2.2em;
    color: #1d2a75;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== Flex-Container (Text links, Bild rechts überlappend) ===== */
.erlebnis-flex-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px 25px;
  flex-wrap: wrap;

  /* 💡 Hier die eigentliche Verschiebung */
  transform: translateX(-20px);
}

/* Flex-Wrapper zum Verschieben der gesamten Sektion */
.erlebnis-flex-wrapper {
  display: flex;
  justify-content: center;
  transform: translateX(-8%);
}


/* ===== Bild als überlappender Container rechts ===== */
.erlebnis-image-container {
    position: absolute;
    right: 0;
    top: -50px;
    width: 50%;
    height: calc(100% + 50px);
    z-index: 1;
    pointer-events: none;
}

.erlebnis-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    opacity: 1;
}

/* ===== Text-Container (links) ===== */
.erlebnis-text-container {
    position: relative;
    width: 55%;
    z-index: 10;
    text-align: left;
    background-color: transparent;
    padding: 50px;
    margin-right: 20px;
    border-radius: 15px;
    box-shadow: none;
    /*transition: box-shadow 0.3s ease; */
}

.transparent-background-text {
    background-color: rgba(255, 255, 255, 0);
    color: #333;
    padding: 10px;
    display: inline-block;
}

/*.erlebnis-text-container:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}*/

/* ===== Erlebnisboxen darunter ===== */
.erlebnis-flex-box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 70px auto 0;
    max-width: 1200px;
    padding: 0 20px;
}

/* ===== Box-Stil (modern, wie erlebnis) ===== */
.erlebnis-box {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    border-top: 5px solid #1e88e5;
}

.erlebnis-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.erlebnis-box h3 {
    color: #1e88e5;
    font-size: 1.7em;
    margin-bottom: 15px;
}

.erlebnis-box p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* ===== PREISBLOCK ZENTRIERT ===== */
.erlebnis-prices-wrapper {
  background-color: #ffffff;
  border: 1px solid #ddd;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  width: fit-content;
  margin: 0 auto 30px auto;
}

.erlebnis-special-offer {
  font-size: 1.1rem;
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.erlebnis-prices-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: baseline;
}

.price {
  font-size: 2.4rem;
  color: #d32f2f;
  font-weight: 800;
}

.old-price {
  font-size: 1.4rem;
  color: #888;
  text-decoration: line-through;
}

/* ===== CTA BUTTON ZENTRIERT UND 50% BREITE ===== */
.erlebnis-cta-button {
  background: linear-gradient(135deg, #c62828, #8e0000);
  color: white;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin: 5px auto 0 auto;
  width: 50%;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.erlebnis-cta-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ff3d00, #b71c1c); /* kräftiger Hover */
  box-shadow: 0 10px 25px rgba(255, 61, 0, 0.5);
  color: #fff; 
}

/* ===== HINWEISTEXT UNTER BUTTON ===== */
.erlebnis-bestellnotes {
  font-size: 1.11rem;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-top: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .erlebnis-flex-container {
    flex-direction: column;
    min-height: auto;
    padding: 20px;
  }

  .erlebnis-image-container {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 1;
    margin-bottom: 30px;
  }

  .erlebnis-image-container img {
    height: auto;
    border-radius: 12px;
  }

  .erlebnis-text-container {
    width: 100%;
    margin-left: 0;
  }

  .erlebnis-cta-button {
    width: 80%;
  }
}



/* ===== Responsives Verhalten ===== */
@media (max-width: 992px) {
    .erlebnis-flex-container {
        flex-direction: column;
        min-height: auto;
    }

    .erlebnis-image-container {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: auto;
        opacity: 1;
        pointer-events: auto;
        margin-bottom: 25px;
    }

    .erlebnis-image-container img {
        object-fit: contain;
        border-radius: 15px;
    }

    .erlebnis-text-container {
        width: 100%;
        padding: 35px;
        text-align: center;
    }

    .erlebnis-text-container h2,
    .erlebnis-text-container p {
        text-align: center;
    }

    .erlebnis-flex-box-container {
        grid-template-columns: 1fr;
    }
}
