body {
    margin: 0;
    padding: 0;
}

.container {
    display: grid;
    grid-template-areas:
    "header header"
    "conten content"
    "footer footer";
    grid-template-columns:  5fr;
    background-color: white;

}

.container div.header {
    grid-area: header;
    overflow: hidden;
    zoom: 100%;
    background: linear-gradient(135deg, #255925, #357a35, #4a9e4a);
    display: flex;
    align-items: center;
    height: 50px; /* Definierte Höhe für Kompaktheit */
    padding: 0 20px;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);


}

.container .header-title{
    grid-area: header;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.container .header .topbar {
    grid-area: header;
    display: flex;
    gap: 8px;
    margin-left: auto; /* Schiebt die Links ganz nach rechts */
}

.container .header .topbar a {
    grid-area: header;
    color: #f2f2f2;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;

}

/* change color when hovering*/
.container .header .topbar a:hover {
    grid-area: header;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}


.container .content .hero {
    background: linear-gradient(160deg, #f4faf1 0%, #e8f5e2 60%, #d6edd0 100%);
    padding: 56px 24px 48px;
    text-align: center;
    border-bottom: 1px solid #C8DFB8;
    height: 452px;
}
.container .content .hero-tag {
    display: inline-block; background: #d6edd0; color: #2D6A1F;
    font-size: 11px; font-weight: 500; padding: 3px 12px;
    border-radius: 20px; margin-bottom: 16px; border: 1px solid #C8DFB8;
}
.container .content .hero h1 { font-size: 32px; font-weight: 800; color: #1A3A12; margin-bottom: 12px; line-height: 1.2; }
.container .content .hero p { font-size: 14px; color: #4E7A42; max-width: 420px; margin: 0 auto 28px; line-height: 1.6; }
.container .content .hero-btn {
    display: inline-block; background: #2D6A1F; color: #fff;
    font-size: 14px; font-weight: 600; padding: 11px 28px;
    border-radius: 99px; text-decoration: none; transition: all 0.15s;
    border: none; cursor: pointer;
}
.container .content .hero-btn:hover { background: #255925; }




/*/////// footer ///////*/
.container div.footer {
    grid-area: footer;
    border-style: none;
    height: 100px;
    background: linear-gradient(to bottom, #947352, #704F38);

    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;

}

.container .footer .footer-left {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-left: auto;
}
.container .footer .footer-left span {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
.container .footer .footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
}
.container .footer .footer-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: all 0.15s;
}
.container .footer .footer-right a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.container .footer .dot {
    color: rgba(255,255,255,0.2);
    font-size: 14px;
}
.container .footer .li-icon {
    width: 14px; height: 14px;
    background: #0A66C2;
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; color: white;
    flex-shrink: 0;
}
