/* einfacheinonlineshop.de — gemeinsamer Stil.

   13.08.2026 aus dem <style>-Block der Startseite herausgeloest. Seit die
   Rechtstexte eine eigene Seite haben, waere inline zweimal dieselbe Kopie
   geworden — und Kopien driften. */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2b2b2b;
    background: #fff;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: #6b8a6b;
    color: #fff;
    padding: 8px 16px;
    z-index: 100;
    font-size: 14px;
}

.skip-link:focus {
    top: 0;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #6b8a6b;
    outline-offset: 2px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #efefef;
    padding: 20px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.header-inner a {
    display: inline-block;
}

.header-inner img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.header-contact {
    font-size: 14px;
    color: #7c7c7c;
    text-align: right;
}

.header-contact a {
    color: #6b8a6b;
    text-decoration: none;
}

.header-contact a:hover {
    text-decoration: underline;
}

/* Hero */
.hero {
    background: #2a4a4a;
    background-image: url("images/hintergrund.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.38);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-text h1 em {
    font-style: normal;
    color: #a0c4a0;
}

.hero-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.hero-text ul li {
    padding: 4px 0;
    color: #e0e0e0;
    font-size: 15px;
}

.hero-text ul li::before {
    content: "\2713";
    color: #a0c4a0;
    font-weight: bold;
    margin-right: 10px;
}

.btn {
    display: inline-block;
    background: #6b8a6b;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn:hover {
    background: #5a745a;
}

.hero-portrait {
    flex-shrink: 0;
}

.hero-portrait img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

/* Services */
.services {
    padding: 60px 0;
    background: #fff;
}

.services h2 {
    font-size: 24px;
    color: #2b2b2b;
    margin-bottom: 35px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.service-item {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 4px;
    border-top: 3px solid #6b8a6b;
}

.service-item strong {
    color: #2b2b2b;
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.service-item span {
    color: #7c7c7c;
    font-size: 14px;
}

/* Contact form section */
.contact-section {
    background: #f4f4f4;
    padding: 60px 0;
}

.contact-section h2 {
    font-size: 24px;
    color: #2b2b2b;
    margin-bottom: 25px;
    text-align: center;
}

.contact-info {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    color: #7c7c7c;
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-info a {
    color: #6b8a6b;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Cookie notice */
.cookie-info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 30px;
    font-size: 13px;
    color: #7c7c7c;
    text-align: center;
}

/* Legal sections */
.legal-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 40px;
}

.legal[open] > .legal-content {
    padding: 0 0 30px;
}

.legal-content h3 {
    font-size: 15px;
    color: #2b2b2b;
    margin: 20px 0 8px;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 10px;
    color: #7c7c7c;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content a {
    color: #6b8a6b;
}

/* Footer */
.site-footer {
    border-top: 1px solid #efefef;
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    color: #7c7c7c;
}

.site-footer a {
    color: #6b8a6b;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 8px;
}

.footer-links a {
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        justify-content: center;
        text-align: center;
    }

    .header-contact {
        text-align: center;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .hero-text ul {
        text-align: left;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .header-inner img {
        max-width: 260px;
    }
}

/* --- Seite "Impressum und Datenschutzerklaerung" ------------------------- */

.rechtsseite {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.rechtsseite h1 {
    font-size: 26px;
    color: #1b3a57;
    margin-bottom: 8px;
}

.rechtsseite > p.stand {
    color: #667;
    font-size: 14px;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 20px;
    color: #1b3a57;
    margin: 34px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #dde;
}

.zurueck {
    display: inline-block;
    margin-top: 34px;
}
