*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
font-family:Arial,Helvetica,sans-serif;
line-height:1.6;
color:#333;
background:#f8f8f8;
}
.navbar{
position:sticky;
top:0;
display:flex;
justify-content:space-between;
align-items:center;
padding:1rem 8%;
background:white;
box-shadow:0 2px 12px rgba(0,0,0,.08);
z-index:10;
}
.navbar ul{
display:flex;
list-style:none;
gap:1.5rem;
}
.navbar a{
text-decoration:none;
color:#333;
font-weight:bold;
}

.nav{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 40px;
    height:70px;

    
    box-shadow:0 3px 12px rgba(0,0,0,.12);
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(8px);
}
.kontor{
    margin:80px auto;
    max-width:1200px;
    padding:60px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.logo{
    font-size:1.6rem;
    font-weight:bold;
}

.nav ul{
    display:flex;
    align-items:center;

    list-style:none;

    margin:0;
    padding:0;

    gap:30px;
}

.nav li{
    margin:0;
    padding:0;
}

.nav a{
    display:block;

    padding:10px 14px;

    text-decoration:none;
    color:#333;
    font-weight:600;

    border-radius:8px;

    transition:.25s;
}

.nav a:hover{
    background:#2b7fd0;
    color:white;
}
.nav-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.phone-button{

    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    background:#2b7fd0;
    color:white;

    text-decoration:none;
    font-weight:600;

    border-radius:999px;

    transition:.25s;
}

.phone-button:hover{

    background:#1d66aa;
    transform:translateY(-2px);

}

.phone-button:active{
    transform:none;
}
.hero{
    position:relative;
    margin-top: 30px;
    height:15vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}

.hero-bg{
    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;
}

.hero::before{
    content:"";

    position:absolute;
    inset:0;

    

    z-index:2;
}

.hero-content{
    position:relative;

    z-index:3;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

    color:white;
}

.hero-logo{
    width:340px;
    margin-bottom:30px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:15px;
}

.hero p{
    font-size:1.3rem;
}

.hero h1,
.hero p{
    text-shadow:0 2px 8px rgba(0,0,0,.5);
}
.section-header{
    display:flex;
    align-items:center;
    gap:30px;
    margin-bottom:45px;
}

.section-logo{
    width:160px;
    flex-shrink:0;
}

.lead{
    font-size:1.15rem;
    color:#555;
    margin-top:10px;
}

.section-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:start;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

.service-card{
    padding:20px;
    border-left:5px solid #2c82c9;
    background:#f7f9fc;
    border-radius:10px;
}

.service-card h4{
    margin:0 0 10px;
    color:#2c82c9;
}

.service-card p{
    margin:0;
    font-size:.95rem;
}

.section-images{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.gallery-image{
    width:100%;
    border-radius:12px;
    cursor:pointer;
    transition:.25s;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.gallery-image:hover{
    transform:scale(1.02);
}


.kreativ .service-card{
    border-left:5px solid #16a5a5;
}

.kreativ .service-card h4{
    color:#16a5a5;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.gallery-grid img{
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:.25s;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.gallery-grid img:hover{
    transform:scale(1.04);
}
.rad .service-card{
    border-left:5px solid #8b49a0;
}

.rad .service-card h4{
    color:#8b49a0;
}

.wunsch .service-card{
    border-left:5px solid #95c11f;
}

.wunsch .service-card h4{
    color:#95c11f;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin:40px 0;
}

.about-box{
    background:#f7f9fc;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.center{
    text-align:center;
    margin:50px 0 25px;
}

.kontor-links{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.kontor-links .service-card{
    text-align:center;
}

.drawer{
    position:fixed;
    top:0;
    right:-900px;
    width:min(900px,100%);
    height:100vh;

    background:#fff;

    box-shadow:-10px 0 40px rgba(0,0,0,.25);

    transition:right .35s ease;

    z-index:5000;

    display:flex;
    flex-direction:column;
}

.drawer.open{
    right:0;
}

.drawer-header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:30px;

    border-bottom:1px solid #ddd;
}

.drawer-content{
    padding:35px;
    overflow:auto;
    line-height:1.7;
}

#drawerOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:4999;
}

#drawerOverlay.open{
    opacity:1;
    visibility:visible;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:1rem;
margin-top:2rem;
}
.card{
background:#fafafa;
border-radius:14px;
padding:1.2rem;
border-left:6px solid #ccc;
box-shadow:0 4px 12px rgba(0,0,0,.05);
}
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:1rem;
margin-top:2rem;
}
.placeholder{
height:180px;
display:flex;
justify-content:center;
align-items:center;
background:#ddd;
border-radius:16px;
}
.accent-blue h2{color:#2b7fc1}
.accent-blue .card{border-color:#2b7fc1}
.accent-cyan h2{color:#18a8a0}
.accent-cyan .card{border-color:#18a8a0}
.accent-purple h2{color:#8a43a0}
.accent-purple .card{border-color:#8a43a0}
.accent-green h2{color:#9ac814}
.accent-green .card{border-color:#9ac814}
.contact{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:1rem;
margin-top:2rem;
}
footer{
padding:2rem;
text-align:center;
}
@media(max-width:800px){
.navbar{flex-direction:column;gap:1rem}
.hero h1{font-size:2.6rem}
}
