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

body{
    font-family:Arial, sans-serif;
    color:#111;
    background:white;
}

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;

    height:100px;

    padding:0 70px;

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

    z-index:999;

    background:rgba(0,0,0,0.7);
    backdrop-filter:blur(8px);
}

.logo img{
    height:150px;
    width:auto;
    display:block;
}

.footer-logo img{
    height:165px;
    width:auto;
    display:block;
    margin:0 auto 20px auto;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

/* Aktiver Menüpunkt */

.nav-links a{

    position:relative;

    color:white;

    text-decoration:none;

}


.nav-links a.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-12px;

    width:100%;

    height:3px;

    background:#59d14f;

    border-radius:5px;

}

nav a:hover{
    color:#59d14f;
}

.cta-btn{
    background:#59d14f;
    color:black;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.hero{
    height:100vh;
    background:url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    display:flex;
    align-items:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    padding:0 90px;
    max-width:850px;
}

.small-title,
.section-title{
    color:#59d14f;
    font-weight:bold;
    letter-spacing:2px;
    margin-bottom:20px;
}

.hero h1{
    font-size:88px;
    line-height:1;
    margin-bottom:25px;
}

.hero h1 span{
    color:#59d14f;
}

.hero-text{
    font-size:22px;
    line-height:1.6;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.green-btn,
.dark-btn{
    padding:16px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.green-btn{
    background:#59d14f;
    color:black;
}

.dark-btn{
    border:1px solid white;
    color:white;
}

.about,
.services,
.projects,
.contact{
    padding:120px 90px;
}

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:18px;
}

.about h2,
.projects h2,
.contact h2,
.services h2{
    font-size:52px;
    margin-bottom:25px;
}

.about p{
    line-height:1.7;
    color:#555;
}

.stats{
    display:flex;
    gap:40px;
    margin-top:35px;
}

.stats h3{
    color:#59d14f;
    font-size:32px;
}

.services{
    background:#f5f5f5;
}

.center{
    text-align:center;
}

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

.service-card{
    background:white;
    padding:40px;
    border-radius:15px;
    transition:0.3s;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    margin-bottom:15px;
    color:#59d14f;
}

.projects{
    background:black;
    color:white;
}

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

.project-grid img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:15px;
    transition:0.3s;
}

.project-grid img:hover{
    transform:scale(1.02);
}

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

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

.contact-form input,
.contact-form textarea{
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.contact-form textarea{
    min-height:180px;
}

.contact-form button{
    background:#59d14f;
    border:none;
    padding:18px;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
}

/* FOOTER */

footer{

    background:#DCDCDC;

    color:black;

    padding:80px 70px 30px;

}



.footer-top{

    display:flex;

    justify-content:space-between;

    gap:80px;

    padding:0 80px;
}



.footer-brand img{

    height:170px;

}

.footer-icon{

    color:#59d14f;

    margin-right:8px;

    font-size:20px;

}

.footer-brand p{

    margin-top:25px;

    color:#59d14f;

    font-size:24px;

    font-weight:700;

    line-height:1.4;

    letter-spacing:0.3px;

}



.footer-nav,
.footer-contact{

    display:flex;

    flex-direction:column;

    gap:15px;

}



.footer-nav h3,
.footer-contact h3{

    color:#59d14f;

    margin-bottom:15px;

}



.footer-nav a{

    color:black;

    text-decoration:none;

}



.footer-bottom{

    margin-top:50px;

    padding-top:30px;

    border-top:1px solid #222;

    color:#333;

}

.honeypot{
    position:absolute;
    left:-9999px;
}



/* IMPRESSUM */

.legal-page{

    background:#111;

    color:white;

    min-height:100vh;

    padding:160px 70px 100px;

}


.legal-page h1{

    font-size:60px;

    margin-bottom:70px;

}


.legal-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:50px;

}

.legal-grid a{

    color:white;

    text-decoration:none;

    transition:0.3s;

}

.legal-grid a:hover{

    color:#59d14f;

}

.legal-item{

    border-bottom:
    1px solid #222;

    padding-bottom:30px;

}


.legal-item h3{

    color:#59d14f;

    margin-bottom:15px;

}


.legal-item p{

    color:#d0d0d0;

    line-height:1.8;

}

/* Nur Impressum Header Logo */

.impressum-logo{

    height:150px;

    width:auto;

    display:block;

}

/* DATENSCHUTZ / RECHTSTEXTE */

.legal-text-page{

    background:#111;

    color:white;

    min-height:100vh;

    padding:160px 70px 100px;

}



.legal-text-page h1{

    font-size:60px;

    margin-bottom:80px;

}



.legal-text-block{

    max-width:1100px;

    margin-bottom:90px;

}



.legal-text-block h2{

    color:#59d14f;

    font-size:34px;

    margin-bottom:35px;

}



.legal-text-block p{

    color:#d0d0d0;

    font-size:19px;

    line-height:1.9;

    margin-bottom:25px;

}

.menu-toggle{

    display:none;

}


@media (max-width:768px){


    header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:15px 20px;

}

.project-grid{

    grid-template-columns:1fr;

}

.project-card img{

    width:80%;

    height: 200px;

    object-fit:contain;

}

    .logo{

    position:static;

    transform:none;

    margin-left:15px;

}



    nav{

    display:flex;

    position:fixed;

    top:90px;

    left:0;

    width:280px;

    height:calc(100vh - 90px);

    background:rgba(0,0,0,0.97);

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:35px;

    transform:translateX(-100%);

    transition:transform 0.35s ease;

    z-index:998;

}



    nav.active{

    transform:translateX(0);

}



    section{

        width:100%;

        max-width:100%;

    }

.hero{

    padding-top:120px;

}

    .hero h1{

        font-size:42px;

        line-height:1.1;

    }



    .hero-text{

        font-size:20px;

    }



    .hero-buttons{

        flex-direction:column;

        gap:15px;

    }



    .hero-buttons a{

        width:100%;

        text-align:center;

    }



    .about,
    .services,
    .projects,
    .contact{

        padding:70px 20px;

    }



    .about,
    .contact{

        grid-template-columns:1fr;

    }



    .footer-top{

    display:flex !important;

    flex-direction:column !important;

    align-items:flex-start !important;

    gap:40px !important;

    text-align:left !important;

}
.footer-brand,
.footer-nav,
.footer-contact{


    display:flex;

    justify-content:center;


    width:100%;

    text-align:left;

}

.legal-page h1{

    font-size:clamp(38px, 10vw, 54px);

    line-height:1.05;

    word-break:break-word;

    overflow-wrap:break-word;

}

.legal-page h2{

    font-size:clamp(22px, 6vw, 30px);

    line-height:1.15;

    word-break:break-word;

    overflow-wrap:break-word;

}

    .legal-page{

    padding:140px 20px 80px;

    overflow:hidden;

}



    .legal-grid{

        grid-template-columns:1fr;

    }
.menu-toggle{

    display:block;

    font-size:34px;

    color:white;

    cursor:pointer;

    margin-right:auto;

    z-index:1000;

}

}




