.feiern-section {
  color: #000;
  padding: 100px 0;
	background: #fff;
}

.feiern-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Linke Spalte */
.feiern-text {
  flex: 1 1 40%;
  padding-left: var(--main-padding);
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.feiern-text p {
	padding-left:20%;
	margin-bottom: 20px;
}

/* Der untere Bereich mit den Pfeilen */
.arrow-holder {
  margin-top: auto; /* drückt das Element ganz nach unten */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
}




.arrow-holder {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  padding-top: 40px;
}

.arrow-holder .swiper-button-prev,
.arrow-holder .swiper-button-next {
  position: static; /* wichtig! sonst verschieben sie sich nicht */
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.arrow-holder .swiper-button-next:after, .swiper-button-prev:after {
    font-size:30px !important;
}



.feiern-text p {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.5;
}

/* Rechte Spalte (Swiper) */
.feiern-slider {
  flex: 1 1 60%;
  overflow: hidden;
  padding-bottom: 40px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.party-mask-card {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.party-mask-top {
  position: relative;
  width: 100%;
  height: 450px;
}

.party-mask-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: var(--radius); /* optional: weiche Ecken */
}

.party-mask-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.4s ease;
}


.party-mask-card:hover .party-mask-image img {
  transform: scale(1.1);
}

.party-mask-bottom {
  background-color: var(--farbe-1);
  color: #fff;
  padding: 25px 20px;
  width: calc(100% - 40px);
  margin: 0 auto;
  text-align: left;
	margin-top:-50px;
	position: relative;
	z-index: 3;
	height: 120px;
	display: flex;
	flex-direction: column;
    justify-content: center;
	border-bottom-left-radius: var(--radius);
	border-bottom-right-radius: var(--radius);
}

.party-mask-bottom h3 {
  margin: 0 0 10px;
	font-size: 35px !important;
	color:#FFF !important;
}

.party-mask-bottom p {
  margin: 0;
  color: #f5e6c8;
  font-size: 0.95rem;
  line-height: 1.5;
}


@media (max-width: 767px) {
	.feiern-container {
		flex-direction: column;		
		   padding-left: 0;
		width: calc(100% -  var(--main-padding) * 3);
}
	
	.feiern-text {
flex: 1 1 100%;
        padding-left: 0;
        text-align: center;
        justify-content: center;
        align-items: center;
}
	.feiern-text p {
    padding-left: 0;
}
	
	.feiern-container .feiern-slider {
		width: 100% !important;
	}
	
	.party-mask-top, .party-mask-image {
    height: 550px;
}
	
}



