@charset "utf-8";
/* CSS Document */

/* font import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');


:root {
    /* Farben */
    --pink: #e42f65;
    --purple: #11182a;
    --black: #0e0e0e;
    --white: #f2f2f2;

    --main-font: 'Quicksand', sans-serif;
    --sec-font: 'Poppins', sans-serif;
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
    padding: 0;
    font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"], 
li{
    list-style: none;
}

html {
    scroll-behavior: smooth;
    color: var(--black);
}

/* Set core body defaults */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}



/* Make images and videos easier to work with */
img, 
video,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



::selection {
    color: var(--white);
    background: var(--pink);
}

body {
    font-family: var(--main-font), sans-serif;
    font-weight: 600;
}

.wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1em;
}

.wrapper-big {
    width: 1600px;
    margin: 0 auto;
}

.hidden {
    display: none;
}

/*Typografie*/
a {
    color: var(--black);
    text-decoration: none;
}

h1 {
    font-family: var(--sec-font);
    font-size: 5em;
    margin: 1rem 0;
    word-wrap: break-word;
}

h2 {
    font-family: var(--sec-font);
    font-size: 2.5em;
    margin: 1rem 0;
    word-wrap: break-word;
}

.h2-rez{
	font-size: 2em;  
}

h3 {
    font-size: 3em;
    margin: 1rem 0;
    word-wrap: break-word;
}

.bolder {
    font-weight: 700;
}

.txt-small {
    font-size: 0.75em;
    line-height: 0;
    margin-bottom: 2em;
}

.txt-big {
    font-size: 1.5em;
}

.txt-line {
    line-height: 1;
}

.txt-line-115 {
    line-height: 1.15;
}

.txt-75 {
    width: 75%;
}

.txt-50 {
    width: 45%;
}

a.txt-hvr-underline:hover {
    text-decoration: underline;
}

.fnt-light {
    font-weight: 100 !important;
}

.fnt-bold {
    font-weight: 900 !important;
}

.clr-pink {
    color: var(--pink);
}

.clr-purple {
    color: var(--purple);
}

.clr-white {
    color: var(--white);
}

.clr-black {
    color: var(--black);
}

.txt-center {
    text-align: center;
    width: 100%;
}

.datenschutz a {
    color: var(--pink);
}

.datenschutz a:hover {
    text-decoration: underline;
}

.datenschutz ul li{
    list-style:disc;
}

/* Spacing */

.padding-bot-1 {
    padding-bottom: 1em;
}

.padding-bot-2 {
    padding-bottom: 2em;
}

.padding-bot-3 {
    padding-bottom: 4em;
}

.padding-top-5 {
    padding-top: 3em;
}

.padding-5 {
    padding: 3em 0em;
}

.margin-0-auto {
    margin: 0 auto;
}

.read-more{
	color: var(--pink);
}

/*Navigation*/
.navbar {
    background-color: rgba(0, 0, 0, 0.336);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 1em;
    position: fixed;
    width: 100%;
    z-index: 10001;
    backdrop-filter: blur(6px);
}

.navbar img {
    width: 200px;
    margin-left: 2em;
}

.menubutton {
    /* position: fixed;
    width: 35px;
    top: 30px;
    right: 60px; */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    transform: scale(100%);
    margin-right: 1em;
}

.menubutton .bar, .menubutton::after, .menubutton::before {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background-color: var(--pink);
    margin: 6px 0px;
    transition: 0.5s;
}

.menubutton.isactive:before {
    transform: rotate(-45deg) translate(-8px, 6px)
}

.menubutton.isactive:after {
    transform: rotate(45deg) translate(-9px, -8px)
}

.menubutton.isactive .bar {
    transform: scaleX(0);
}


.fullscreen-nav {
    position: fixed;
    height: 100vh;
    width: 100%;
    opacity: 0;
    z-index: 10000;
    background-color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;
    transition: all .7s ease-in-out;
    transition-delay: 100ms;
    visibility: hidden;
}

.fullscreen-nav a {
  text-decoration: none;
  color: var(--white);
  line-height: 2;
}

.fullscreen-nav.isactive {
    width: 100%;
    opacity: 100;
    visibility: visible;
}

.fullscreen-nav li {
  text-decoration: none;
  margin: 0;
  padding: 0;
  list-style: none;
   transition: transform .6s ease-in-out;
  /* transition-delay: calc(var(--order) * 200ms);  */
  transform: translateX(70vw);
  font-size: 2em;
}

.fullscreen-nav li:nth-child(1) {
    font-size: 1.1em;
    margin-bottom: .5em;
    font-weight: bold;
    font-family: var(--sec-font);
}

.fullscreen-nav.isactive li {
  transform: translateY(0px); 
}


nav .logo img {
    min-width: 20%;
    max-width: 50%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--white)
}

nav ul:nth-child(2) li {
    font-size: 1em!important;
}



.nav-link.active {
    color: var(--pink);
}

nav li a:hover {  
    color: var(--pink);
}



.full-size-bg {
    width: 100%;
    padding: 5em 0;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-blend-mode: multiply;
    color: var(--white);
    transition: all ease-in-out .5s;
}

.padding-work {
    padding: 0;
    padding-top: 5em;
}

.arbeiten .full-size-bg {
    min-height: 550px;
    margin: auto 0;
}

.arbeiten .full-size-bg:hover,
.arbeiten .full-size-bg:focus {
    background-position-y: +15%;
}

.arbeiten .pink-bg-overlay:hover, 
.arbeiten .pink-bg-overlay:focus,
.arbeiten .purple-bg-overlay:hover,
.arbeiten .purple-bg-overlay:focus
{
    background-color: darkgray;
}

.full-size-bg-offset-vertical {
    background-position-y: 25%;
}

.pink-bg-overlay {
    background: var(--pink);
}

.purple-bg-overlay {
    background: var(--purple);
    
}

.flex-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.flex-s-b {
    justify-content: space-between;
}

.flex-center {
    justify-content:center;
}

.flex-gap {
    gap: 1em;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-self-center {
    align-self: center;
}


.w-50 {
    width: 45%;
}

.ar-quadrat {
    aspect-ratio: 1;
    object-fit: cover;
}

.icon-grid {
    width: calc(25% - 4em);
}

.grid-fame {
    display: grid;
    grid-template-rows: repeat(auto, auto);
    grid-template-columns: repeat(4, auto);
    gap: 2em;
}

footer {
    padding: 2rem 0;
}



footer .logo {
    width: 25%;
    padding-bottom: 1rem;
    align-self: center;
}

footer a {
    color: var(--pink);
}

footer a:hover {
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer-nav ul {
    list-style: none;
    color: var(--pink);
}

.footer-nav li:nth-child(1) {
    font-size: 1.1em;
    margin-bottom: .3em;
    font-weight: bold;
    color: var(--black);
}

footer p {
    padding-top: 3em;
}

.image-zoom {
    display: grid;
    align-items: end;
    width: calc(50% - 0.5em);
}

.image-zoom>* {
    grid-column: 1/1;
    grid-row: 1/1;
}

.image-zoom a {
    display: block;
    width: 100%;
    align-self: center;
    position: absolute;
    height: 100%;
}

.image-zoom span,
.image-zoom h3 {
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    line-height: 1;
    font-size: clamp(0.8rem, -0.1739rem + 5.2174vw, 1rem);
    padding: 10% 1em;
    font-weight: 800;
    transition: all .3s ease-in-out;
}

.image-zoom h3 {
    font-size: clamp(1em, -0.1739rem + 5.2174vw, 1.2em);
    line-height: 1.5;
}

.image-zoom:hover span,
.image-zoom:focus span,
.image-zoom:hover h3,
.image-zoom:focus h3 {
    opacity: 100%;
    transform: translateY(0px);
}

.image-zoom {
    overflow: hidden;
    position: relative;
}

.image-zoom img {
    transition: all .5s;
    aspect-ratio: 1;
    object-fit: cover;
}

.image-zoom:hover img {
    transform: scale(105%);
    filter: brightness(40%) blur(4px);
}

.container>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(1fr, 1fr);
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
}

.container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.horizontal {
    grid-column: span 2;
    grid-row: span 1;
}

.vertikal {
    grid-column: span 1;
    grid-row: span 2;
}

.quadrat {
    grid-column: span 2;
    grid-row: span 2;
}



.big {
    grid-column: span 4;
    grid-row: span 2;
}



 .card {
    --cardheight: 400px;
    --cardwidth: 230px;
    align-self: flex-end;
    height: var(--cardheight);
    width: var(--cardwidth);
    padding: 2em;
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative; /* Füge eine relative Position hinzu */
}

.card h2 {
    font-size: 2em;
}

.bestseller::before {
    content: 'Bestseller';
    color: var(--white);
    position: absolute;
    text-align: center;
    height: calc(var(--cardheight) / 1 - 2em);
    width: 100%;
    font-weight: 900;
    font-family: var(--sec-font);
    top: -1.65em;
    left: 0; /* Pseudoelement horizontal zu zentrieren */
    right: 0; /* Pseudoelement horizontal zu zentrieren */
}

.bestseller {
    border: #0e0e0e solid 6px;
    border-top-width: 2em;
    border-top-left-radius: 2em;
    border-top-right-radius: 2em;
    height: calc(var(--cardheight) - 6px);
    width: calc(var(--cardwidth) - 6px);
}

.bestseller .button {
    margin-bottom: 0;
}

.card .preis {
    font-size: 3rem;
    font-weight: 900;
    color: var(--pink);
    font-family: var(--sec-font);
    justify-self: end;
   
}

.card .table {
    display: flex;
    justify-content: space-between;
    height: 6lh;
}

.card .table .inhalte {
    text-align: right;
}

.agentur .button {
    background-color: var(--pink);
}



.back::before {
    content: '<';
    display: inline-block;
    margin-right: .5em;  
    transition: translate .3s ease-out;
}

.back:hover::before {
    translate: -50%;
}

.button {
    
    margin-top: 2em;
    margin-bottom: 4em;
    display: inline-block;
    background-color: var(--purple);
    color: var(--white);
    padding: .75em 1.75em;
    margin-bottom: 6px;
    border-radius: 2em;
    text-align: center;
    transition: background-color .3s;
}

.button:hover {
    background-color: var(--pink);
}

.purple-bg-overlay .button:hover {
    background-color: var(--purple);
}

#contact-btn{
	margin-bottom: 4em;
}

.background-color-white {
    background-color: var(--white);
}

.background-color-gradient-purple {
    color: var(--white);
    background: linear-gradient(120deg, var(--purple), var(--black));
    background-size: 120% 300%;
    animation: gradientAnimation 6s ease infinite;
}

.background-color-gradient-pink {
    color: var(--white);
    background: linear-gradient(40deg, var(--pink), #53488d);
    background-size: 120% 300%;
    animation: gradientAnimation 5s ease infinite;
}

.marker {
    background-color: var(--pink);
    color: white;
    padding: 0 .2em;
}

/* Kontakt */
.img-ceos  {
    width: 50%;
    align-self: flex-end;
}

@keyframes gradientAnimation {
    0%{background-position:0% 45%}
    50%{background-position:100% 56%}
    100%{background-position:0% 45%}
}


.bestseller .extra-title {
    position: relative;
    text-align: center;
    width: 100%;
    display: inline-block;
    top: -60px;
    color: var(--white);
}

.angebot  {
    margin: 0 auto;
    line-height: 1;
}

.repertoire .card {
    --cardwidth: 300px;
}

/* Rezensionen */


.swiper {
    padding: 2em!important;
	margin: 2.5em 0em;
}

.swiper-button-next, .swiper-button-prev{
  	margin-top: 2em;
}

.swiper-slide {
    height: auto!important;

}

.rezension-item {
    width: 50%;
    padding: 2em;
    background-color: #f0f0f0;
    border-radius: 2em;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.0)
    ;
	margin-bottom: 3em;
}

.rezension-item h2 {
    margin: 0;
    font-size: 1.5em;
}



.rezension-item .profil {
    display: flex;
    gap: 2em;
    align-items: center;
    margin-bottom: 1em;
    line-height: 1.15;
}

.rezension-item .profil {
    margin-bottom: 1em;
    line-height: 1.15;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2em;
}

.rezension-item .profil img {
    height: 60px;
    width: 60px;
    border-radius: 100%;
}

.rezension-item .profil img {
    height: 60px;
    width: 60px;
    padding: auto;
    border-radius: 100%;
}



/*  .swiper {
    width: 600px;
}  */

.swiper-punkte .swiper-pagination-bullet {
    background: var(--pink);
}

.sterne {
    margin-top: 1em;
}

.fa-star {
    font-size: 1.2em;
    color: var(--pink);
}

.rezension-item .line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

@media only screen and (max-width: 768px) {

    .txt-line-115 {
        line-height: normal;
    }
    
    .button {
        display: block;
    }

    .grid-fame {
        grid-template-columns: repeat(3, auto);
    }

    .txt-75, .txt-50 {
        width: 100%;
    }

    .image-zoom {
        width: 100%;
    }

    .image-zoom span,
    .image-zoom h3 {
        opacity: 100;
        transform: translateY(0%);

        transition: all .3s ease-in-out;
    }

    .img-ceos {
        order: 2;
        width: 100%;
    }

    nav ul:nth-child(2)  {
        display: none; 
    }

	h1,h2,h3 {
        line-height: 1.2;
    }
    
  	.arbeiten .full-size-bg {
      	background-position: center;
  	}
  
    h1{
		font-size: 3em;
	}
    
	h2{
		font-size: 1em;
	}
	
	h3{
		font-size: 1.5em
	}    
    

}


@media screen and (max-width:620px) {
    
    .navbar img {
        margin-left: 0;
    }
    .card {
        width: calc(100% - 8em);
    }


    .grid-fame {
        grid-template-columns: repeat(2, auto);
    }

}