:root{
    --green:#2e7d32;
    --green2:#66bb6a;
    --bg:#f5fbf6;
    --card:#ffffff;
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:system-ui, Arial, sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color:#1f2a1f;
    line-height:1.7;
}

/* ================= HEADER ================= */

header{
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

/* obere Zeile: Logo + Navigation */
.header-top{
    max-width:1100px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:5px 10px;
    gap:20px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    color:var(--green);
    font-size:1.2rem;
}

.logo-box{
    width:40px;
    height:40px;
    border-radius:10px;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.4rem;
}

/* NAVIGATION DESKTOP */
.nav-desktop{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.nav-desktop a{
    text-decoration:none;
    color:#1f2a1f;
    font-weight:600;
    padding:8px 12px;
    border-radius:999px;
    background:#f3f8f4;
    border:1px solid rgba(0,0,0,0.06);
    transition:0.2s;
    white-space:nowrap;
}

.nav-desktop a:hover{
    background:white;
    color:var(--green);
    border-color:var(--green);
}

/* ================= HERO ================= */

.hero{
    text-align:center;
    padding:30px 20px;
}

.hero h1{
    margin:10px 0 5px;
    font-size:2.2rem;
    color:var(--green);
}

/* ================= CONTENT ================= */

.container{
    max-width:1000px;
    margin:auto;
    padding:20px;
}

.card{
    background:var(--card);
    border-radius:18px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}
h1{color:var(--green);font-size: 1.5em;}
h2{color:var(--green);font-size: 1.5em;}

.hero-grid{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:20px;
    align-items:start;
}

.image-placeholder{
    width:260px;
    height:220px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0.85rem;
    font-weight:600;
    border:2px dashed #66bb6a;
}

.steckbrief{
    background:#f8fbf8;
    padding:15px;
    border-radius:14px;
    border:1px solid rgba(46,125,50,0.12);
}

/* PRODUKTE */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:18px;
}

.product{
    background:#fff;
    border-radius:16px;
    padding:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.button{
    display:inline-block;
    margin-top:10px;
    background:linear-gradient(135deg,var(--green),var(--green2));
    color:white;
    padding:10px 14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.box{
    background:linear-gradient(145deg,#ffffff,#f3faf4);
    border-radius:16px;
    padding:18px;
	text-align: center;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    border:1px solid rgba(46,125,50,0.08);
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}
/* FOOTER */
footer{
    text-align:center;
    padding:30px;
    color:#4a6b4d;
    background:#eef7ef;
    margin-top:30px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px){

    .header-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .nav-desktop{
        width:100%;
        overflow-x:auto;
        flex-wrap:nowrap;
        justify-content:flex-start;
        padding-top:10px;
        -webkit-overflow-scrolling:touch;
    }

    .nav-desktop::-webkit-scrollbar{
        display:none;
    }

    .nav-desktop a{
        flex:0 0 auto;
    }

    .hero h1{
        font-size:1.8rem;
    }

    .hero-grid{
        grid-template-columns:1fr;
    }

    .image-placeholder{
        width:100%;
        height:200px;
    }
}