:root{
--pink:#ec4b9a;
--pink-dark:#d83c84;
--anthrazit:#4b5563;
--hellrosa:#fff8fb;
}

*{
box-sizing:border-box;
}

body{
margin:0;
font-family:'Montserrat',sans-serif;
color:var(--anthrazit);
background:#fff;
line-height:1.8;
overflow-x:hidden;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
min-height:120px;
background:#fff;
box-shadow:0 5px 20px rgba(0,0,0,.05);
position:sticky;
top:0;
z-index:100;
}

.logo img{
height:170px;
display:block;
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
color:var(--anthrazit);
font-weight:500;
transition:.3s;
}

nav a:hover{
color:var(--pink);
}

/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
padding:90px 8%;
background:linear-gradient(180deg,#fff,#fff8fb);
}

.hero-text{
width:45%;
}

.hero h1{
font-size:72px;
line-height:1.1;
font-family:'Cormorant Garamond',serif;
margin-bottom:30px;
}

.hero span{
color:var(--pink);
}

.hero p{
font-size:22px;
}

.button{
display:inline-block;
background:var(--pink);
color:white;
padding:18px 40px;
border-radius:50px;
text-decoration:none;
transition:.3s;
margin-top:20px;
}

.button:hover{
background:var(--pink-dark);
}

.hero-image{
width:55%;
}

.hero-image img{
width:100%;
border-radius:40px;
box-shadow:0 25px 60px rgba(0,0,0,.1);
display:block;
}

/* ÜBERSCHRIFTEN */

h2{
font-size:60px;
font-family:'Cormorant Garamond',serif;
text-align:center;
margin-bottom:50px;
}

/* SEKTIONEN */

.angebote,
.bewertungen{
padding:100px 8%;
}

.warum{
padding:70px 8%;
background:var(--hellrosa);
}

.warum-text{
max-width:800px;
margin:auto;
text-align:center;
font-size:18px;
margin-bottom:40px;
}

/* KARTEN */

.karten{
max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}

.warum-grid{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.karte{
background:white;
padding:45px;
border-radius:35px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
border:1px solid rgba(236,75,154,.1);
transition:.4s;
}

.warum-box{
background:white;
padding:30px;
border-radius:30px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
border:1px solid rgba(236,75,154,.1);
transition:.4s;
text-align:center;
}

.karte:hover,
.warum-box:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(236,75,154,.15);
}

.icon{
font-size:55px;
margin-bottom:20px;
}

.karte h3{
font-size:32px;
font-family:'Cormorant Garamond',serif;
color:var(--pink);
margin-bottom:15px;
}

.warum-box h3{
font-size:26px;
font-family:'Cormorant Garamond',serif;
color:var(--pink);
margin-bottom:10px;
}

.karte p,
.warum-box p{
font-size:17px;
}

.karte a{
color:var(--pink);
text-decoration:none;
font-weight:600;
}

/* FOOTERWELLE */

.footer-wave svg{
display:block;
width:100%;
height:25px;
}

/* FOOTER */

footer{
background:var(--pink);
}

.footer{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding:35px 8%;
color:white;
}

.footer h3{
font-size:24px;
font-family:'Cormorant Garamond',serif;
margin-bottom:10px;
}

.footer p{
font-size:15px;
line-height:1.7;
margin:0;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:30px;
right:30px;
width:70px;
height:70px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
color:white;
text-decoration:none;
box-shadow:0 15px 40px rgba(0,0,0,.2);
z-index:999;
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.08);
}

/* HANDY */

@media(max-width:1000px){

header{
flex-direction:column;
}

nav{
flex-wrap:wrap;
justify-content:center;
margin-top:20px;
gap:20px;
}

.logo img{
height:130px;
}

.hero{
flex-direction:column;
gap:40px;
padding:60px 8%;
}

.hero-text,
.hero-image{
width:100%;
}

.hero h1{
font-size:50px;
}

.hero p{
font-size:18px;
}

.karten,
.warum-grid{
grid-template-columns:1fr;
}

.footer{
grid-template-columns:1fr;
gap:20px;
padding:30px 8%;
}

.footer h3{
margin-bottom:5px;
}

}