/* ==========================
STYLE TEIL 1 - Grundlayout
========================== */

:root{
 --bg:#0b0b0b;
 --bg2:#141414;
 --red:#d71920;
 --text:#ffffff;
 --muted:#cfcfcf;
 --radius:18px;
 --max:1200px;
}

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

html{
 scroll-behavior:smooth;
}

body{
 font-family:Arial,Helvetica,sans-serif;
 background:var(--bg);
 color:var(--text);
 line-height:1.7;
}

.container{
 width:min(92%,var(--max));
 margin:auto;
}

img{
 max-width:100%;
 display:block;
}

a{
 text-decoration:none;
 color:inherit;
}

section{
 padding:110px 0;
}

.section-title{
 text-align:center;
 max-width:760px;
 margin:0 auto 60px;
}

.section-title span{
 color:var(--red);
 text-transform:uppercase;
 font-weight:700;
 letter-spacing:2px;
}

.section-title h2{
 font-size:clamp(2rem,4vw,3.4rem);
 margin:14px 0;
}

.section-title p{
 color:var(--muted);
}

.btn-primary,
.btn-secondary{
 display:inline-block;
 padding:15px 30px;
 border-radius:999px;
 transition:.3s;
 font-weight:700;
}

.btn-primary{
 background:var(--red);
 color:#fff;
}

.btn-primary:hover{
 transform:translateY(-3px);
}

.btn-secondary{
 border:2px solid #fff;
 color:#fff;
 margin-left:12px;
}

.btn-secondary:hover{
 background:#fff;
 color:#000;
}

/* Ende Style Teil 1 */

/* ==========================
STYLE TEIL 2 - Header & Hero
========================== */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:rgba(10,10,10,.75);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo img{
height:58px;
}

nav{
display:flex;
gap:32px;
align-items:center;
}

nav a{
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#d71920;
}

.btn-whatsapp{
background:#25D366;
padding:12px 22px;
border-radius:999px;
font-weight:700;
color:#fff;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.75)),
url("../images/hero.jpg") center/cover no-repeat;
}

.hero-content{
max-width:820px;
padding:120px 20px 60px;
}

.hero-subtitle{
display:block;
color:#d71920;
font-weight:700;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:18px;
}

.hero h1{
font-size:clamp(3rem,7vw,5.5rem);
line-height:1.05;
margin-bottom:22px;
}

.hero h1 span{
color:#d71920;
}

.hero p{
max-width:700px;
margin:0 auto 40px;
color:#d0d0d0;
font-size:1.15rem;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

.scroll-indicator{
position:absolute;
bottom:35px;
left:50%;
transform:translateX(-50%);
}

.scroll-indicator span{
display:block;
width:2px;
height:45px;
background:#fff;
animation:scrollMove 1.8s infinite;
}

@keyframes scrollMove{
0%{opacity:0;transform:translateY(-8px);}
50%{opacity:1;}
100%{opacity:0;transform:translateY(12px);}
}

/* Ende Style Teil 2 */

/* ==========================
STYLE TEIL 3
Leistungen • Vorher/Nachher • Galerie
========================== */

.highlights,
.services{
background:#111;
}

.highlight-box,
.service-card{
background:#181818;
border:1px solid rgba(255,255,255,.08);
border-radius:18px;
padding:32px;
transition:.35s ease;
}

.highlight-box:hover,
.service-card:hover{
transform:translateY(-8px);
border-color:#d71920;
box-shadow:0 15px 35px rgba(215,25,32,.18);
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:28px;
margin-top:50px;
}

.service-card h3{
margin-bottom:14px;
font-size:1.3rem;
}

.service-card p{
color:#cfcfcf;
}

.before-after{
background:#0f0f0f;
}

.compare-box{
position:relative;
overflow:hidden;
border-radius:22px;
margin-top:50px;
box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.compare-box img{
width:100%;
display:block;
}

.before-wrapper{
position:absolute;
left:0;
top:0;
height:100%;
width:50%;
overflow:hidden;
}

#compare-slider{
width:100%;
margin-top:28px;
accent-color:#d71920;
}

.gallery{
background:#131313;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:22px;
margin-top:45px;
}

.gallery-grid img{
width:100%;
height:260px;
object-fit:cover;
border-radius:18px;
transition:.35s;
cursor:pointer;
}

.gallery-grid img:hover{
transform:scale(1.03);
filter:brightness(1.08);
}

/* Ende Style Teil 3 */

/* ==========================
STYLE TEIL 4
Kontakt • Footer • Responsive
========================== */

.contact{
background:#101010;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
margin-top:50px;
}

.contact-info p{
margin:14px 0;
color:#d3d3d3;
}

.contact-form{
display:flex;
flex-direction:column;
gap:18px;
}

.contact-form input,
.contact-form textarea{
background:#1a1a1a;
border:1px solid rgba(255,255,255,.08);
border-radius:14px;
padding:16px;
color:#fff;
font-size:1rem;
}

.contact-form textarea{
min-height:170px;
resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
outline:none;
border-color:#d71920;
}

.footer{
background:#080808;
border-top:1px solid rgba(255,255,255,.08);
padding:45px 0;
text-align:center;
}

.footer-logo img{
height:70px;
margin:0 auto 20px;
}

.footer p{
color:#bdbdbd;
margin-bottom:18px;
}

.footer-links{
display:flex;
justify-content:center;
gap:22px;
flex-wrap:wrap;
}

.footer-links a:hover{
color:#d71920;
}

@media (max-width:900px){

nav{
display:none;
}

.contact-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:2.8rem;
}

.section-title h2{
font-size:2.2rem;
}

.btn-primary,
.btn-secondary{
display:block;
width:100%;
margin:10px 0;
text-align:center;
}

.gallery-grid,
.service-grid{
grid-template-columns:1fr;
}

}

/* Ende Style Teil 4 */