/* Allgemeine Body-Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Hellgrauer Hintergrund */
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header-Styles */
.site-header {
    background-color: #333; /* Dunkelgrauer Header */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.site-header h1 {
    color: #ffd700; /* Gold/Gelb für den Haupttitel */
    margin-bottom: 10px;
    font-size: 2.8em;
}

.site-header .address,
.site-header .contact-info {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.site-header .contact-info a {
    color: #ff8c00; /* Orange für den E-Mail-Link */
    text-decoration: none;
}

.site-header .contact-info a:hover {
    text-decoration: underline;
}

.site-header .opening-hours {
    margin-top: 20px;
    background-color: #444;
    padding: 15px;
    border-radius: 8px;
    display: inline-block; /* Damit es den Inhalt umschließt */
}

.site-header .opening-hours h2 {
    color: #33ff33; /* Grün für den Titel der Öffnungszeiten */
    margin-top: 0;
    font-size: 1.5em;
}

.site-header .opening-hours p {
    color: #eee;
    margin: 5px 0;
}

/* Hauptinhaltsbereiche */
.main-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.pickup-info {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pickup-info .pickup-image {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border: 3px solid #ddd;
    border-radius: 5px;
}

.pickup-info h2 {
    color: #007bff; /* Blau für Abschnittsüberschriften */
    font-size: 2em;
    margin-bottom: 15px;
}

.product-showcase {
    margin-bottom: 40px;
    text-align: center;
}

.product-showcase h2 {
    color: #007bff;
    font-size: 2em;
    margin-bottom: 25px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Abstand zwischen den Bildern */
}

.gallery figure {
    margin: 0;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    flex: 1 1 300px; /* Ermöglicht Flexibilität für Responsivität */
    max-width: 300px; /* Maximale Breite für jeden Bildcontainer */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gallery img {
    max-width: 100%;
    height: auto;
    display: block; /* Entfernt zusätzlichen Platz unter dem Bild */
    margin-bottom: 10px;
    border-radius: 3px;
}

.gallery figcaption {
    font-weight: bold;
    color: #555;
}

.gallery a {
    text-decoration: none;
    color: inherit;
}

.gallery a:hover figcaption {
    color: #007bff;
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Abstand zwischen den Spalten */
    justify-content: space-around;
    margin-top: 40px;
}

.category-column {
    flex: 1 1 300px; /* Flexible Spalten */
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.category-column h3 {
    color: #0056b3; /* Dunkleres Blau für Kategorietitel */
    margin-top: 0;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.category-column ul {
    list-style: none; /* Entfernt Standard-Aufzählungspunkte */
    padding: 0;
    margin: 0;
}

.category-column ul li {
    margin-bottom: 10px;
}

.category-column ul li a {
    color: #007bff; /* Blau für Links */
    text-decoration: none;
}

.category-column ul li a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.category-column .service-note,
.category-column .call-to-action {
    margin-top: 20px;
    font-style: italic;
    font-weight: bold;
    color: #dc3545; /* Rot für den Servicehinweis */
    text-align: center;
}

.category-column .call-to-action a {
    color: #ff6600; /* Orange für den Call-to-Action-Link */
    font-size: 1.2em;
    text-decoration: none;
}

.category-column .call-to-action a:hover {
    text-decoration: underline;
}

/* Footer-Styles */
.site-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 5px solid #007bff; /* Akzentleiste */
}

.site-footer p {
    margin: 5px 0;
}

.site-footer a {
    color: #ff8c00;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Horizontale Linie zur Trennung */
hr {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 40px 0;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 2em;
    }

    .site-header .opening-hours {
        padding: 10px;
    }

    .product-categories {
        flex-direction: column; /* Spalten auf kleineren Bildschirmen stapeln */
        align-items: center;
    }

    .category-column {
        width: 90%; /* Mehr Breite auf kleinen Bildschirmen einnehmen */
        max-width: 500px; /* Maximale Breite für bessere Lesbarkeit begrenzen */
    }

    .gallery figure {
        flex: 1 1 100%; /* Bilder auf kleinen Bildschirmen volle Breite einnehmen lassen */
        max-width: 400px;
    }
}

/* Zusätzliche Styles für Impressum und Datenschutzerklärung */

.impressum-datenschutz-body .site-header {
    background-color: #333; /* Dunkelgrauer Header */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.impressum-datenschutz-body .site-header h1 {
    color: #fff; /* Weiß für den Titel, oder passend zum Rest der Seite */
    font-size: 2.5em;
    margin-bottom: 0;
}

.impressum-section h2,
.datenschutz-section h2 {
    color: #007bff; /* Blau für Hauptüberschriften */
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.impressum-section h3,
.datenschutz-section h3 {
    color: #0056b3; /* Dunkleres Blau für Unterüberschriften */
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.impressum-section p,
.datenschutz-section p,
.datenschutz-section ul {
    margin-bottom: 15px;
    line-height: 1.8;
}

.impressum-section a,
.datenschutz-section a {
    color: #007bff;
    text-decoration: none;
}

.impressum-section a:hover,
.datenschutz-section a:hover {
    text-decoration: underline;
}

.datenschutz-section ul {
    list-style-type: disc; /* Normale Aufzählungszeichen */
    margin-left: 20px;
    padding-left: 0;
}

.datenschutz-section ul li {
    margin-bottom: 5px;
}

.back-button-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.button {
    display: inline-block;
    background-color: #28a745; /* Grüner Button */
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #218838; /* Dunkleres Grün beim Hover */
}

/* Anpassung für mobile Ansicht */
@media (max-width: 768px) {
    .impressum-section,
    .datenschutz-section {
        padding: 15px;
    }

    .impressum-section h2,
    .datenschutz-section h2 {
        font-size: 1.8em;
    }

    .impressum-section h3,
    .datenschutz-section h3 {
        font-size: 1.3em;
    }
}





