/* ===== GRUNDLAYOUT ===== */

body {
    font-family: Arial, sans-serif;
    margin:0;
    background:#EAF5DF;
    background-image:url("bilder/spring.png");
    background-size:1000px auto;
    text-align:center;
}

/* ===== HEADER & LOGOS ===== */

header {
    background:#A8D08D;
    padding:10px 10px;
    border-bottom:3px solid #FFD966;
}

.logo {
    max-width:90%;
    height:auto;
    max-height:110px;
}

.logo-row {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    padding:10px;
}

.main-logo {
    max-height:110px;
    height:auto;
}

.side-logo {
    max-height:80px;
    height:auto;
}

/* ===== NAVIGATION ===== */

.nav {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    padding:15px;
}

.button {
    background:linear-gradient(180deg, #FFD966 0%, #A8D08D 100%);
    padding:14px 28px;
    border-radius:18px;

    border:2px solid #89B86E;

    box-shadow:
    0 4px 0 #6F9B57,
    0 6px 12px rgba(0,0,0,0.18);

    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    color:#4F6F3C;

    transition:0.15s;
}

.button:hover {
    transform:translateY(-2px);

    box-shadow:
    0 6px 0 #6F9B57,
    0 10px 18px rgba(0,0,0,0.22);
}

.button.active {
    opacity:0.6;
    pointer-events:none;
}

/* ===== TEXTBLÖCKE ===== */

.block {
    background:#F6FBEE;
    margin:20px auto;
    padding:20px;
    width:90%;
    max-width:1000px;
    border-radius:10px;
    border:1px solid rgba(168,208,141,0.4);
}

.phone {
    font-weight:bold;
    margin-top:10px;

    display:inline-block;
    padding:8px 14px;

    background:#ffffff !important;
    border:2px solid #A8D08D !important;
    border-radius:8px;

    color:#4F6F3C !important;
}

/* ===== INFO-BEREICHE ===== */

.info {
    background:#F6FBEE;
    margin:20px auto;
    padding:20px;
    max-width:700px;
    border-radius:10px;
    border:1px solid rgba(168,208,141,0.4);
    box-shadow:inset 0 1px 3px rgba(0,0,0,0.05);
}

/* ===== SERVICE-BEREICH ===== */

.services {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    padding:20px;
}

.service {
    background:linear-gradient(180deg, #FFFFFF 0%, #F6FBEE 100%);
    padding:18px;
    border-radius:22px;

    width:300px;

    border:2px solid rgba(168,208,141,0.25);

    box-shadow:
    0 5px 0 rgba(168,208,141,0.25),
    0 12px 20px rgba(0,0,0,0.12);

    transition:0.15s;

    display:flex;
    flex-direction:column;
}

.service:hover {
    transform:translateY(-5px);

    box-shadow:
    0 8px 0 rgba(168,208,141,0.3),
    0 18px 28px rgba(0,0,0,0.18);

    border:2px solid rgba(168,208,141,0.5);
}

.service img {
    width:100%;
    height:200px;
    object-fit:contain;
}

/* ===== PRODUKT-GALERIE ===== */

.gallery {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:20px;
    padding:20px;
}

.card {
    background:linear-gradient(180deg, #FFFFFF 0%, #F6FBEE 100%);
    padding:14px;
    border-radius:18px;

    border:2px solid rgba(168,208,141,0.25);

    box-shadow:
    0 5px 0 rgba(168,208,141,0.25),
    0 10px 18px rgba(0,0,0,0.12);

    text-align:center;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    transition:0.15s;
}

.card:hover {
    transform:translateY(-4px);

    box-shadow:
    0 8px 0 rgba(168,208,141,0.3),
    0 16px 24px rgba(0,0,0,0.18);

    border:2px solid rgba(168,208,141,0.5);
}

.card img {
    width:100%;
    height:200px;
    object-fit:contain;
    margin-bottom:10px;
}

.card h3 {
    font-size:16px;
    margin:8px 0;
}

.card p {
    margin:4px 0;
    font-size:14px;
}

.price {
    font-size:20px;
    font-weight:bold;
    margin:8px 0;
}

/* ===== TYPOGRAFIE ===== */

h2 {
    color:#A8D08D;
}

h3 {
    color:#6B8E4E;
}

a {
    color:#6B8E4E;
    text-decoration:none;
}

a:hover {
    color:#FFD966;
    text-decoration:none;
}

/* ===== FOOTER ===== */

footer {
    margin-top:40px;
    background:#A8D08D;
    padding:30px 15px;
    border-top:3px solid #FFD966;
}

.footer {
    max-width:700px;
    margin:auto;
    font-size:14px;
    color:#FFFFFF;
    text-align:center;
}

.footer h3 {
    margin-bottom:15px;
    color:#FFFFFF;
}

.footer p {
    margin:6px 0;
}

/* ===== MOBILE ===== */

@media (max-width:600px) {

.main-logo {
    max-height:55px;
}

.side-logo {
    max-height:35px;
}

.logo-row {
    gap:8px;
}

.nav {
    gap:8px;
}

.button {
    padding:8px 12px;
    font-size:15px;
}

}