/* Basis-Styling für die gesamte Seite */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

/* Header-Styling */
header {
    background-color: #000; /* Schwarz */
    color: #fff; /* Weiß */
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: #fff; /* Weiß */
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #e60000; /* Rot */
}

/* Container für Hauptinhalt */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero-Bereich */
.hero {
    background-color: #e60000; /* Rot */
    color: #fff; /* Weiß */
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    margin: 0;
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
}

.contact-btn {
    display: inline-block;
    background-color: #fff; /* Weiß */
    color: #e60000; /* Rot */
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.contact-btn:hover {
    background-color: #ccc; /* Hellgrau */
}

/* Dienstleistungen */
.services {
    padding: 20px 0;
}

.services h2 {
    text-align: center;
    color: #e60000; /* Rot */
}

.service-item {
    background-color: #fff; /* Weiß */
    border: 1px solid #ddd; /* Hellgrau */
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer-Styling */
footer {
    background-color: #333; /* Anthrazit */
    color: #fff; /* Weiß */
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #e60000; /* Rot */
    text-decoration: none;
}

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

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    background-color: #25D366; /* Grüner WhatsApp-Farbton */
    color: #fff; /* Weiß */
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1em;
}

.whatsapp-btn:hover {
    background-color: #1ebe53; /* Etwas dunklerer Grünton */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .contact-btn {
        font-size: 1em;
    }
}

/* Galerie-Styling */
.gallery {
    padding: 20px 0;
    text-align: center;
}

.gallery h2 {
    color: #e60000; /* Rot */
    font-size: 2em;
    margin-bottom: 20px;
}

.gallery-item {
    display: inline-block;
    width: calc(25% - 20px);
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff; /* Weiß */
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item p {
    padding: 10px;
    font-size: 1em;
    color: #333;
}

@media (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: calc(100% - 20px);
    }
}

/* Galerie-Styling */
.gallery {
    position: relative;
    height: 300px; /* Höhe des Containers für die Galerie */
    margin: 20px 0;
}

.gallery-item {
    position: absolute;
    width: 400px;
    height: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff; /* Weiß */
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item p {
    padding: 10px;
    font-size: 1em;
    color: #333;
    text-align: center;
}

/* Positionierung der Galerie-Elemente */
.top-left {
    top: 0;
    left: 0;
}

.top-right {
    top: 0;
    right: 0;
}

.bottom-left {
    bottom: 0;
    left: 0;
}

.bottom-right {
    bottom: 0;
    right: 0;
}

@media (max-width: 768px) {
    .gallery-item {
        width: 150px;
        height: 112px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 175px;
        height: 125px;
    }
}
/* Kontakt-Styling */
.contact {
    padding: 20px;
    text-align: center;
}

.contact h2 {
    color: #e60000; /* Rot */
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.owner-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2em;
    margin: 10px 0;
}

.contact-info a {
    color: #e60000; /* Rot */
    text-decoration: none;
}

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

.map {
    margin-top: 20px;
}

.map iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border: 0;
}

@media (max-width: 768px) {
    .owner-img {
        width: 120px;
        height: 120px;
    }

    .contact-info p {
        font-size: 1em;
    }

    .map iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .owner-img {
        width: 100px;
        height: 100px;
    }

    .contact-info p {
        font-size: 0.9em;
    }

    .map iframe {
        height: 200px;
    }
}

/* Kauflink-Styling */
.buy-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #e60000; /* Rot */
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.buy-btn:hover {
    background-color: #c70000; /* Dunkleres Rot */
}

/* PayPal Button-Styling */
.paypal-button {
    margin-top: 20px;
}

.paypal-btn {
    background-color: #0070ba; /* PayPal Blau */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.paypal-btn:hover {
    background-color: #005a9c; /* Dunkleres Blau */
}
/* Kontaktformular-Styling */
.contact-form {
    margin-top: 20px;
}

.contact-form h3 {
    color: #e60000; /* Rot */
    font-size: 1.8em;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 1em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #e60000; /* Rot */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: #c70000; /* Dunkleres Rot */
}

@media (max-width: 768px) {
    .contact-form {
        margin-top: 10px;
    }

    .contact-form h3 {
        font-size: 1.5em;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 0.9em;
    }

    .contact-form button {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .contact-form h3 {
        font-size: 1.2em;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 0.8em;
    }

    .contact-form button {
        font-size: 0.9em;
    }
}
/* Bewertungen-Styling */
.reviews {
    padding: 20px;
}

.reviews h2 {
    color: #e60000; /* Rot */
    font-size: 2em;
    margin-bottom: 20px;
}

.review {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
}

.review h4 {
    margin: 0 0 5px;
}

.review p {
    margin: 5px 0;
}
