/*:root {*/
/*    --black: black;*/
/*    --green: #183b37;*/
/*    --light-green:#dce3e3;*/
/*    --floral-white: #f6f5ef;*/
/*    --yellow: #d9ea1f;*/
/*    --old-lace: #e9e6d6*/
/*}*/

:root {
    --black: black;
    --green: #333333;
    --light-green: #e3dee0;
    --floral-white: #f6f5ef;
    --pink: #fd32b0;
    --old-lace: #eddee6;
    --background: #f8f8f8;
}

.hidden {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--background);
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}


.container {
    text-align: center;
}


.head {
    position: relative;
    width: 100%;
    height: 100%
}

.spacer.middle {
    height: 86px;
}

h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3.3rem;
    font-weight: 500;
    line-height: 1.15;
}

.main-wrapper {
    background: #ffffff;
    height: 50vw;
    color: var(--pink);
    display: flex;
    justify-content: center; /* Changed to center to accommodate slider */
    align-items: center;
    text-align: center;
    flex-direction: column;
    overflow: hidden; /* Hide overflow for slider transitions */
}

.hero-slider {
    position: relative; /* Set relative so it doesn't overlap */
    z-index: 1; /* Stays below the nav-bar */
    height: 100%; /* Full viewport height */
    width: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
    color: #fff;
    padding-top: 20vw;
    opacity: 0.85;
    width: 100%;
    margin-right: 30%;
    text-align: left;
    padding-left: 5%;
}

.slide-content h1 {
    font-size: 3rem;
}

.main-wrapper h1 {
    font-size: 7vw;
    line-height: 7.4vw;
    font-weight: bold;
    text-transform: uppercase;
    mix-blend-mode: hard-light;
}
.main-wrapper h2 {
    font-size: 2.5vw;
    line-height: 3.5vw;
    font-weight: bold;
    /*text-transform: uppercase;*/
    mix-blend-mode: hard-light;
}

.prev, .next {
    z-index: 1000;
    display: none;
}

.prev:hover, .next:hover {
    background-color: rgba(255,255,255,1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.indicators {
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    z-index: 1000;
}

.indicator {
    display: inline-block;
    width: 0.7vw;
    height: 0.7vw;
    margin: 0 .5vw;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active, .indicator:hover {
    background-color: rgba(255, 255, 255, 1);
}

.banner-container {
    width: 100%;
    display: block;
    position: relative;
}

.banner {
    background-color: var(--green);
    color: #fff;
    text-align: center;
    width: 100%;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-message {
    letter-spacing: .005rem;
    font-size: .85rem;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.nav-bar {
    position: absolute; /* Make it an overlay */
    top: 0; /* Align it to the top */
    left: 0; /* Align it to the left */
    width: 100%; /* Full width of the screen */
    z-index: 10; /* Ensure it stays on top of other content */
    /* Add some padding for spacing */
    display: flex; /* Flexbox for layout */
    justify-content: space-between; /* Spread items */
    color: white; /* Ensure text is visible */
    background: linear-gradient(to bottom, rgb(0 0 0 / 16%), rgba(0, 0, 0, 0));
    padding: 1rem 1rem 1rem 5%;
}

.nav-bar .button {
    margin: 16px 0;
}

.nav-bar a.home {
    font-size: 3vw;
    font-weight: 800;
    line-height: 3vw;
    padding-right: 30px;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-bar ul li {
    margin: 0 15px;
    text-align: center;
}

.nav-bar ul li a, .nav-bar .home {
    color: #ffffff;
    text-transform: uppercase;
    border-bottom: 1px solid #0000;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2px;
    padding: 2px 0 1px;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s;
    display: flex;
    position: relative;
    justify-content: center;

}

.button {
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .4rem 1rem;
    border: 1px solid #ffffffbf;
    border-radius: 40px;
    text-align: center;
    background-color: #33333300;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    margin: 16px 0 0;
}

.button span {
    color: #ffffff; /* Default text color */
    transition: color 0.3s ease; /* Smooth text color change */
}

.button:hover {
    background-color: #ffffff;
    transform: translate(1px, 1px);
    box-shadow: 0 0 #d9ea1f4d;
}

.button:hover span {
    color: #333333; /* Change text color on hover */
}

.button.dark {
    border: 1px solid transparent;
    background-color: var(--pink); /* Transparent background */
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth background and border color change */
}

.button.dark > * {
    color: #ffffff; /* Default text color */
}

.button.dark:hover {
    background-color: #ffffff;
    border-color: var(--green);
}

.button.dark:hover > * {
    color: #333333; /* Change text color on hover */
}

.fbg {
    font-size: .9rem;
    font-weight: 800;
    padding-top: 8px;
    margin-bottom: 16px;
}

.dark .fbg {
    color: #ffffff;
}

.main-content {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    box-shadow: 0px -2px 20px 0px rgba(0, 0, 0, 0.5);
}

.main-content h2 {
    /*font-size: 2.8rem;*/
}

.main-content p {
    /*max-width: 800px;*/
    margin: 0 auto;
    /*padding: 20px 0;*/
}

/*
cards
*/

.usp-grid-quarter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
    justify-content: center;
    gap: 20px;
}

.card-box {
    border: 2px solid #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    padding: 16px 16px 24px 24px;
    transition: all .2s;
    display: flex;
    position: relative;
    border-radius: 40px;
    min-width: 200px;
    max-width: 300px;
}

.carousel .card-box {
    border-color: #ffffff0a;
    background: rgb(58 58 58);
    background: linear-gradient(90deg, rgb(58 58 58) 0%, rgb(51 51 51) 48%, rgb(57 57 57) 100%);}

.card-box--content {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: column;
    display: flex;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    padding: 20px 3rem;
    margin-right: auto;
    margin-left: auto;
}

.container h1 {
    font-size: 12rem;
    line-height: 13rem;
}

.container h2 {
    font-size: 2.8rem;
    text-align: start;
}

.container.center h2 {
    text-align: center;
}

.container h3  {
    font-size: 1.1rem;
}

.container p {
    font-size: 1.1rem;
    line-height: 1.6rem;
    padding: 20px 0;
    text-align: left;
}

.container.center p {
    text-align: center;
}

.container.middle {
    max-width: 1300px;
}

.main-content.dark {
    background-color: var(--green);
    color: white;
    text-align: center;
}

.main-content h2 {
    margin-bottom: 20px;
}

.footer {
    text-align: center;
    padding: 15px;
    color: #fff;
    text-transform: uppercase;
    background-color: #333333;
}

.footer .links ul {
    list-style-type: none; /* Entfernt Standard-Aufzählungszeichen */
    padding: 0;
    margin: 0;
    display: flex; /* Macht die Links horizontal */
    justify-content: center;
    gap: 20px; /* Fügt Abstand zwischen den Links hinzu */
}

.footer .links ul li {
    display: inline-block;
}

.footer .links ul li a {
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    transition: color 0.3s ease; /* Weiche Farbänderung bei Hover */
}

.footer .links ul li a:hover {
    color: var(--pink); /* Ändert die Farbe bei Hover, hier z.B. pink */
}

.footer .basic {
    padding: 5px 0;
    font-size: 0.85rem;
}


.footer {
    text-align: center;
    padding: 15px;
    color: #fff;
    text-transform: uppercase;
    background-color: #ffffff;
}

.carousel-container {
    overflow: hidden;
    margin: 3rem auto;
    /* max-width: 1400px; */
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

.carousel {
    display: flex;
    width: 100%;
    justify-content: center;
}



.group {
    display: grid;
    gap: 20px;
    justify-content: center;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 600px) {
    .group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .group {
        grid-template-columns: repeat(4, 1fr);
    }
}


.carousel-item {
    min-width: 100%;
    color: white;
    border-radius: 24px;
    box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 20px 0;
    padding: 20px;
    font-size: xx-large;
    justify-content: center;
    align-items: center;
    display: flex; /* Center content */
}

/* Assign background colors to the cards */
.carousel-item:nth-child(1) {
    background: #7958ff;
}

.carousel-item:nth-child(2) {
    background: #5d34f2;
}

.carousel-item:nth-child(3) {
    background: #4300da;
}



/* Animation keyframes */
@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.carousel-container:hover .carousel {
    animation-play-state: paused;
}


/* Container for the two columns */
.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.flex.reverse {
    flex-direction: row-reverse;
}

.info-text p {
    padding: 0;
}

.flex.reverse .dot {
    display: none;
}

/* Left column takes up 1/3 of the width */
.flex .left {
    flex: 1 1 30%;
    padding: 20px;
    max-width: 800px;
}

.flex .left .img {
    flex: 1 1 30%;
    height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    width: auto;
}

.img.sticker {
 // background-image: url(../assets/images/sticker.jpg);
	background-image: url(../assets/images/stelldirvor_neu.jpg);
}

.img.fb {
    background-image: url(../assets/images/fb_h.jpg);
	background-image: url(../assets/images/waslernstdu_neu_5.jpg);

}

.img.intro {
    // background-image: url(../assets/images/intro.jpg);
	background-image: url(../assets/images/uebermich_neu_2.jpg);
}

.img.kennst {
  //  background-image: url(../assets/images/kennst.jpg);
	background-image: url(../assets/images/kennstdudas_neu.jpg);
}

.flex .left img {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
}

/* Right column takes up 2/3 of the width */
.flex .right {
    flex: 1 1 65%; /* 65% base width to fill the remaining space */
    padding: 20px;
}

#sticker .right h2 {
    margin-left: 70px;
}

.info-list {
    padding: 40px 0;
}

.info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    flex-direction: row;
}

.info-list .dot {
    width: 60px;
    height: 60px;
    background-color: #fd32b033;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid #fd32b01f;
}

.info-text {
    text-align: left;
}

.info-list .info-text h3 {
  margin: 0;
}

.info-list .info-text p {
  margin: 5px 0 0;
}

/* start items  */

.item-container {
    text-align:center;
    color:#999;
    text-transform: uppercase;
    font-weight:bold;
    width:100%;
    bottom:45%;
    display:block;
}

.vertical-items {
    height:60px;
    overflow:hidden;
}

.vertical-items > div > h2 {
    color:#fff;
    height:45px;
    margin-bottom:45px;
    display:inline-block;
}

.vertical-items div:first-child {
    animation: show 8s linear infinite;
}

.vertical-items div h2 {
    color: #fd32b0;
}

/*.vertical-items div div {*/
/*    background:#42c58a;*/
/*}*/
/*.vertical-items div:first-child div {*/
/*    background:#4ec7f3;*/
/*}*/
/*.vertical-items div:last-child div {*/
/*    background:#DC143C;*/
/*}*/

		/*
@keyframes show {
    0% {margin-top:-270px;}
    5% {margin-top:-180px;}
    33% {margin-top:-180px;}
    38% {margin-top:-90px;}
    66% {margin-top:-90px;}
    71% {margin-top:0px;}
    99.99% {margin-top:0px;}
    100% {margin-top:-270px;}
}
		*/

		
@keyframes show {
    0%, 20% { margin-top: -270px; }  
    25%, 45% { margin-top: -180px; } 
    50%, 70% { margin-top: -90px; } 
	75%, 92%{ margin-top: 0px; }   
    100% { margin-top: -270px; }    
}

	
		


/* imprint *

.imp-data .main-content h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
    color: var(--green);
}

.imp-data .main-content h3 {
    text-align: left;
}

.imp-data .main-content p {
    font-size: 1rem;
    line-height: 1.6rem;
    /*margin-bottom: 20px;*/
    text-align: left;
}

.imp-data .main-content p strong {
    color: var(--green); /* Hebt wichtige Infos hervor */
    font-weight: 600;
}

.imp-data .main-content a {
    color: var(--pink);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.imp-data .main-content a:hover {
    color: var(--green); /* Farbänderung beim Hover */
}

.imp-data .main-content em {
    font-size: 0.9rem;
    color: #999;
}

.imp-data ul {
    list-style-position: inside;
    list-style-type: disc;
    text-align: left;
    padding-left: 20px;
}





@media (max-width: 768px) {

    .flex .left .img {
        height: 400px; /* Set a lower height for mobile */
    }

    .container {
        padding: 20px 1rem;
    }

    .container h1 {
        font-size: 7rem;
        line-height: 7rem;
    }

    .container h2  {
        font-size: 1.8rem;
    }

    .container h3  {
        font-size: 1rem;
    }

    .container p {
        font-size: 1rem;
    }

    .container.center p {
        font-size: 1rem;
        text-align: center;
    }

    .flex {
        flex-direction: column;
    }

    .flex .left, .flex .right {
        flex: 1 1 100%;
        width: 100%;
    }

    .nav-bar a.home {
        font-size: 4vw;
    }

    .nav-bar .button {
        margin: 0;
    }

    .indicator {
        width: 1vw;
        height: 1vw;
    }

    /* facebook link */
    /* Change the button to use the Facebook image on mobile */
    .button.mobile-min {
        display: inline-block;
        width: 30px;
        height: 30px;
        padding: 0;
        background: url('/assets/icons/fb.png') no-repeat center center;
        background-size: cover;
        border: none;
        text-indent: -9999px; /* Hide the text for the button */
    }

    /* Additional styling for mobile, if needed */
    .button.mobile-min.dark {
        background-color: transparent; /* Remove background color for the dark button */
    }

    /* If you want to adjust the size or shape for the button */
    .button.mobile-min:hover {
        background-color: transparent; /* Keep the background transparent on hover */
        transform: none;
    }

    .card-box {
        min-height: 300px;
    }

    .carousel-container {
        margin: 20px 0;
    }
}