/* Allgemeine Einstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #c62828; /* Kräftiges Rot */
    padding: 30px 0;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo-container img {
    max-width: 80%; /* Logo auf 80% der Container-Breite */
}

header nav ul {
    list-style-type: none;
    margin-top: 20px;
}

header nav ul li {
    display: inline-block;
    margin: 0 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #f0c808; /* Akzentfarbe für Hover-Effekte */
}

/* Hero Section mit zwei Bildern */
#hero {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-img {
    max-width: 400px; /* Bildgröße auf maximal 400px setzen */
    width: 100%; /* Damit die Bilder in diesem Bereich responsiv sind */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Schriftgröße im Hero Bereich */
#hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 20px;
}

/* Responsive Design für Mobilgeräte */
@media (max-width: 768px) {
    /* Auf mobilen Geräten (z.B. Smartphones) wird das zweite Bild ausgeblendet */
    .hero-img-second {
        display: none;
    }
}

/* Über uns Section */
#about {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

#about h2 {
    font-size: 32px;
    color: #c62828;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
#services {
    padding: 60px 20px;
    background-color: #c62828;
    color: #fff;
    text-align: center;
}

#services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.service-item {
    margin: 30px 0;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 18px;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

#contact h2 {
    font-size: 32px;
    color: #c62828;
    margin-bottom: 20px;
}

#contact ul {
    list-style-type: none;
    font-size: 18px;
    margin: 0 auto;
    max-width: 600px;
}

#contact ul li {
    margin: 10px 0;
}

/* Impressum Section */
#impressum {
    padding: 40px 20px;
    background-color: #f9f9f9;
    color: #333;
    display: flex;
    justify-content: center;
}

.impressum-content {
    max-width: 900px; /* Gleiche Breite wie auf der Startseite */
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
}

#impressum h1 {
    font-size: 36px;
    color: #c62828; /* Roter Farbton */
    margin-bottom: 20px;
    text-align: center;
}

#impressum h2 {
    font-size: 24px;
    color: #c62828;
    margin-top: 30px;
    margin-bottom: 10px;
}

.impressum-info {
    margin-bottom: 30px;
    padding-left: 10px;
    font-size: 18px;
}

.impressum-info p {
    margin: 10px 0;
}

.impressum-info a {
    color: #c62828;
    text-decoration: none;
}

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

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 16px;
}

footer p {
    margin: 0;
    margin-bottom: 10px;
}

/* Footer Links Styling */
footer nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

footer nav ul li {
    display: inline;
    margin: 0 10px;
}

footer nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

footer nav ul li a:hover {
    color: #c62828; /* Rot bei Hover */
    text-decoration: underline; /* Unterstrichen bei Hover */
}

footer nav ul li::after {
    content: '|';
    margin-left: 10px;
}

footer nav ul li:last-child::after {
    content: ''; /* Entfernt den Trennstrich nach dem letzten Link */
}

/* Favicon */
link[rel="icon"] {
    display: none; /* Wenn du es nicht explizit hinzufügen möchtest, entfernen */
}
