/* Allgemeine Stile */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F0F0F0;
    color: #333;
    line-height: 1.6;
}

h1, h2 {
    color: #333;
}

/* Header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: #A8D5BA; /* Helles Grün */
}

.header-image {
    width: 250px; /* Kleinere Bildgröße */
    height: auto;
    border-radius: 8px;
}

.header-text {
    max-width: 600px;
    padding-left: 2rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
}

/* Abschnittsstruktur */
.content-section {
    padding: 2rem;
    background-color: white;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.alt-background {
    background-color: #A8D5BA; /* Helles Grün als Akzentfarbe */
}

/* Listen */
ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #8FB996; /* Sanftes Grün für den Footer */
    color: #fff;
    padding: 2rem;
}

#footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.impressum, .contact {
    flex: 1;
    padding: 0 1rem;
}

footer p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

footer strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Webshop Sektion */
.external-notice {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 1rem 0;
}

.webshop-button-container {
    text-align: center;
    margin-top: 1.5rem;
}

.webshop-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8FB996;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.webshop-button:hover {
    background-color: #7AA882;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.webshop-button:active {
    transform: translateY(0);
}

/* Informationshinweis (Grafik) */
.construction-notice {
    background: #FFF4E6;
    border-left: 5px solid #FFB366;
    margin: 0;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.construction-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.construction-notice-image {
    display: block;
    max-width: 50%;
    height: auto;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
