.banner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80vh;
    position: relative;
	margin: 0 50px;
	overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    /*inset: 2rem;*/
    background-image: url("https://carlatowardsthehorizon.com/wp-content/uploads/2025/07/segelboot-carla-e1752043535154.webp");
    background-size: cover;
    background-position: center;
    z-index: -1;
    mask-image: url("https://carlatowardsthehorizon.com/wp-content/uploads/2025/07/ink-wave-min.gif");
    mask-size: cover;
    mask-position: center;
		border-radius: 26px;
	
	top: 2rem;                      /* Abstand zum oberen Rand der Banner-Box */
    bottom: 2rem;                   /* Abstand zum unteren Rand */
    right: 2rem;                    /* Abstand zum rechten Rand */
    width: 60%;                     /* Bild nimmt 60% der Breite des Banners ein */
	z-index: -1;                    /* liegt hinter dem Text */
}

.banner h1 {
	font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 700;
	z-index: 1;
    max-width: 45%;  
}


.banner p {
    position: relative;
	max-width: 30%;
}

@media (max-width: 756px) {
	.banner {
		   height: 81vh;
	}
	
	.banner::before {
	top: 0rem;
    bottom: unset;
    right: -1rem;
    width: 72%;
	height: 10rem;
	}
	
	.banner h1, .banner p {
		max-width: 100%;
		margin-top: 1rem;
	}
	.banner h1 {
		padding-top: 2rem;
	}
	
	.sonne {
		max-width: 200px;
	}
}


.sonne {
	  transform-origin: center;
}

.wasser-text,
.wasser-text span,
.wasser-text div {
  display: inline-block;
  transition: transform 0.18s cubic-bezier(.5,.2,.6,1);
  will-change: transform;
}



.pll-switcher-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: 1px solid #000;
  border-radius: 0.5rem;
  background-color: transparent;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

  transition: all 0.2s ease;
  cursor: pointer;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,50 70,100 120,50' fill='none' stroke='%23333' stroke-width='20' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.pll-switcher-select:focus {
  outline: none;
  border-color: #999;
  box-shadow: 0 0 0 3px rgba(100, 100, 255, 0.2);
}


