.containerHero {
    display: inline-block;
    align-items: center;
    width: 100vw;
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
    position: relative;
    overflow: hidden;
}

.containerHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  background-image: url("../images/PurpleTeaFotoPlantageCloseUp.jpeg");
  background-position: 75% 2%;
  opacity: 0.7; /* Adjust for fade intensity */
  z-index: -1; /* Place behind content */
  background-size: 100%;                        /* ← Startwert */
  animation: heroZoom 8s ease-in-out forwards;  /* ← langsam & sanft */
}
@keyframes heroZoom {
    0% {
        background-size: 100%;
        opacity: 0;
    }
    100% {
        background-size: 115%;
        opacity: 0.7;
    }
}

.containerHero div {
    background-color: purple;
    width: 60vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin: 0 auto;
    border-radius: 15px;
     transition: transform 0.3s ease; /* ← ergänzen */
}

.containerHero div:hover {
    transform: scale(1.05); /* ← 5% größer, kannst du anpassen */
}

.containerHero h1 {
    color: orange;
    font-size: 5em;
    text-transform: uppercase;
    margin: 0;
    animation: fadeIn 1.5s ease-out;
    opacity: 0;
    animation: slideInFromTopRight 1s ease-out forwards;
    transform: translate(180px, -40px);
}




.containerHero p:nth-child(2) {
    color: #fff;
    font-size: 2.5em;
    animation: slideInFromTopRight 1s ease-out 0.2s forwards;
    opacity: 0;
    transform: translate(180px, -60px);
}


    @keyframes slideInFromTopRight {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}



.containerHero p:nth-child(3) {
    color: #fff;
    font-size: 0.8em;
    position: absolute;
    transform: translate(0, -60px);
    animation: slideInFromTopRight 1s ease-out 0.4s forwards;
    opacity: 0;
    transform: translate(180px, -80px);
}


    @keyframes slideInFromTopRight {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}


.pureMargin {
    margin-top: 160px;
    margin-bottom: 30px;
}


@media screen and (max-width: 768px) {
    .containerHero {
        padding: 10px;
        margin: 0;
    }

    .containerHero div {
        width: 60vw;
        padding: 10px;
        margin: 0;
    }

 
    
}

@media screen and (max-width: 800px) {
.containerHero {
        background-image: url("../images/PurpleTeaFotoPlantageCloseUp.jpeg");
        background-size: 40%;
        width: 80vw;
        margin: 0 auto;
        padding: 10px;
    }

.containerHero div {
        background-color: purple;
        background-size: cover;
        background-position: center;
        width: 60vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        padding: 0;
        margin: 0 auto;

    }

.containerHero h1 {
        color: orange;
        font-size: 2rem;
        margin: 0;
        padding: 0px 20px;
    }

    
.containerHero p:nth-child(2) {
        width: 80%;
        color: #fff;
        font-size: 1rem;
        animation: slideInFromTopRight 1s ease-out 0.2s forwards;
        opacity: 0;
        transform: translate(180px, -60px);
    }

.containerHero p:nth-child(3) {
    display: inline-block;
    width: 80%;
    color: #fff;
    font-size: 0.8em;
    position: relative;
    animation: slideInFromTopRight 1s ease-out 0.4s forwards;
    opacity: 0;
    transform: translate(-80px, -180px);
}

.pureMargin {
    margin-top: 10px;
    margin-bottom: 10px;
}

}