/* ===========================
   ABELE WEBSITE
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f4f4;
    color:#333;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   NAVIGATION
=========================== */

.navbar{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    padding:25px 70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:999;

}

.logo img{

    height:90px;

}

.menu{

    display:flex;

    list-style:none;

    gap:35px;

}

.menu a{

    color:white;

    text-decoration:none;

    font-weight:600;

    font-size:18px;

    transition:.3s;

}

.menu a:hover{

    color:#7cc243;

}

/* ===========================
   HERO
=========================== */

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.55),
    rgba(0,0,0,.55)),
    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.hero-content{

    max-width:900px;

    padding:20px;

}

.hero-content h1{

    font-size:64px;

    margin-bottom:20px;

    font-weight:800;

}

.hero-content p{

    font-size:22px;

    margin-bottom:40px;

}

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn{

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    color:white;

    font-weight:700;

    transition:.3s;

}

.btn-green{

    background:#1f5d2d;

}

.btn-green:hover{

    background:#2b7d3d;

}

.btn-dark{

    background:#222;

}

.btn-dark:hover{

    background:#000;

}

/* ===========================
   LEISTUNGEN
=========================== */

.leistungen{

    padding:100px 0;

    background:#ffffff;

}

.leistungen h2{

    text-align:center;

    font-size:42px;

    color:#1f5d2d;

    margin-bottom:20px;

}

.section-text{

    text-align:center;

    color:#666;

    margin-bottom:60px;

    font-size:20px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.service-card{

    background:white;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-8px);

}

.service-card img{

    height:260px;

    width:100%;

    object-fit:cover;

}

.service-card h3{

    color:#1f5d2d;

    padding:20px 25px 10px;

}

.service-card p{



    padding:0 25px 25px;

}

/* ===========================
   ÜBER UNS
=========================== */

.about{

    padding:100px 0;

    background:#f4f4f4;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about img{

    border-radius:18px;

}

.about h2{

    color:#1f5d2d;

    margin-bottom:20px;

}

.about p{

    margin-bottom:20px;

}

.about-list{

    list-style:none;

}

.about-list li{

    margin-bottom:12px;

    font-weight:600;

}

/* ===========================
   GALERIE
=========================== */

/* ===========================
   GALERIE
=========================== */

.gallery {
    padding: 100px 0;
    background: #f8f8f8;
}

.gallery h2 {
    text-align: center;
    font-size: 42px;
    color: #1f5d2d;
    margin-bottom: 15px;
}

.gallery p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}



/* ===========================
   KONTAKT
=========================== */

.contact{
    padding:100px 0;
    background:#f4f4f4;
}

.contact h2{
    text-align:center;
    font-size:42px;
    color:#1f5d2d;
    margin-bottom:20px;
}

.contact p{
    text-align:center;
    margin-bottom:20px;
}

.contact-box{
    max-width:700px;
    margin:40px auto;
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-box a{
    color:#1f5d2d;
    text-decoration:none;
    font-weight:600;
}

.contact-box a:hover{
    text-decoration:underline;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#1f5d2d;
    color:white;
    text-align:center;
    padding:30px 20px;
}

footer p{
    margin:10px 0;
}

footer a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

footer a:hover{
    text-decoration:underline;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        padding:20px;
    }

    .menu{
        flex-direction:column;
        gap:15px;
        margin-top:20px;
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .buttons{
        flex-direction:column;
        align-items:center;
    }

}

/* ===========================
   LIGHTBOX
=========================== */

#lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#lightbox.active{
    display:flex;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
    box-shadow:0 0 40px rgba(255,255,255,.2);
}

/* ===========================
   WHATSAPP BUTTON
=========================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:999;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ===========================
   NACH OBEN BUTTON
=========================== */

#topBtn{
    position:fixed;
    right:25px;
    bottom:105px;
    width:55px;
    height:55px;
    background:#1f5d2d;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:22px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:998;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

#topBtn.show{
    opacity:1;
    visibility:visible;
}

#topBtn:hover{
    background:#2e7d32;
}

/* ===========================
   GOOGLE MAPS
=========================== */

.map{
    margin-top:50px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.map iframe{
    display:block;
    width:100%;
    height:450px;
}

.about-list i{
    color:#2e7d32;
    margin-right:10px;
}

.contact-box i{
    color:#2e7d32;
    margin-right:8px;
}