/* Grundstile für die gesamte Seite */
body {
    background-color: #f9f7e7;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #3f572c;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* --- Container zur Zentrierung der Hauptbereiche --- */
.header, .main-nav, .main-content, .footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Header-Bereich --- */
.header {
    text-align: center;
    padding: 0; /* Entfernt unnötigen Padding hier */
}

.banner-container {
    text-align: center;
}
.banner-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Navigationsleiste --- */
.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 20px;
    background-color: #f9f7e7;
    gap: 20px;
    margin-top: 20px;
}
.navi-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    color: #3f572c;
}
.navi-link:hover {
    color: #7da340;
}

/* --- Allgemeine Link-Stile --- */
a {
    text-decoration: none;
    color: inherit; /* Vererbt die Textfarbe */
}
a:hover {
    color: #7da340;
    text-decoration: underline;
}
/* --- Hauptinhaltsbereich --- */
.main-content {
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}
.content-section, .content-placeholder {
    margin-bottom: 30px;
}
.content-heading {
    color: #3f572c;
}
.webshop-link {
    display: block;
    text-align: center;
    margin-top: 20px;
}
.webshop-image {
    max-width: 100%;
    height: auto;
}
/* --- Impressum-spezifische Stile --- */
.kontakt-table a {
    color: #3f572c !important; /* Erzwingt die Textfarbe, die Sie verwenden möchten */
    text-decoration: none !important; /* Erzwingt die Entfernung der Unterstreichung */
}

/* Stil für Links bei Mouseover */
.kontakt-table a:hover {
    color: #7da340 !important;
    text-decoration: underline !important;
}
/* --- Footer-Bereich --- */
.footer {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #3f572c;
}

/* --- Media Queries für mobile Geräte --- */
@media (max-width: 768px) {
    .header, .main-nav, .main-content, .footer {
        padding: 10px;
    }
    .main-nav {
        flex-direction: column;
        align-items: center;
    }
}