/* Gemeinsame Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header und Navigationsleiste */
header {
    background-color: #f8f8f8;
}

.navbar {
    background-color: #f8f4f0 !important;
    position: sticky; /* Navbar bleibt sichtbar beim Scrollen */
    top: 0; /* Oben am Bildschirm anheften */
    z-index: 100; /* Stelle sicher, dass die Navbar über dem Inhalt liegt */
}

.navbar-brand {
    font-size: 24px;
}

.navbar-toggler-icon {
    background-color: #333;
}

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    margin-right: 20px;
    color: #333;
    text-decoration: none;
}

.nav-link:hover {
    color: rgb(0, 0, 0);
}

/* Startseite */
#startseite {
    text-align: center;
}

#startseite h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

#startseite p {
    font-size: 16px;
}

/* Carousel (Bilderslider) */
.carousel {
    margin-top: 20px;
}

.carousel-inner {
    border-radius: 5px;
}

.carousel-item {
    text-align: center;
}

.carousel-item img {
    width: 100%;
    border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    background: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    font-size: 30px;
    color: #007BFF;
}

/* Kontaktformular */
#kontakt {
    background-color: #fff;
    padding: 40px 0;
}

#kontakt h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

form {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* Responsive Styles (optional) */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}

/* Neue CSS-Regeln für die Bilder nebeneinander */
.image-container {
    display: flex;
}

.image-container img {
    max-width: 50%; /* Ändere diesen Wert, um die Breite der Bilder anzupassen */
    height: auto;
}

.navbar-light .nav-item.active .nav-link,
.navbar-light .nav-item:focus .nav-link,
.navbar-light .nav-item:hover .nav-link
.navbar-dark .nav-item.active .nav-link,
.navbar-dark .nav-item:focus .nav-link,
.navbar-dark .nav-item:hover .nav-link {
    color: #e91313;
}
/* E-Mail-Button */
.email-button {
    text-align: center;
}

.email-button a {
    text-decoration: none;
}

.email-button button {
    background-color: #666666;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}



header {
    background-color: #f8f8f8;
}

.navbar {
    background-color: #f8f4f0 !important;
    position: sticky; /* Navbar bleibt sichtbar beim Scrollen */
    font-size: 68px !important;

}

.navbar-brand {
    font-size: 68px; /* Schriftgröße der Navbar erhöhen */
}

.nav-link {
    margin-right: 20px;
    color: #333;
    font-size: 14px; /* Schriftgröße der Navbar-Links erhöhen */
}

/* Neue CSS-Regeln für die Bilder nebeneinander */
.image-container {
    display: flex;
}

.image-container img {
    max-width: 50%; /* Ändere diesen Wert, um die Breite der Bilder anzupassen */
    height: auto;
}
/* E-Mail-Button */
.email-button {
    text-align: center;
}

.email-button a {
    text-decoration: none;
}

.email-button button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
/* CSS for the image container */
.image-container2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.image-container2 h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.image-container2 img {
    max-width: 100%; /* Adjust this value to control the image width */
    height: auto;
    border-radius: 5px;
}

.image-container2 p {
    font-size: 16px;
    text-align: center;
    padding: 10px;
}

