/* Allgemeine Einstellungen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

body.light {
    background-color: #f1f1f1;
    color: #333;
}

body.dark {
    background-color: #121212;
    color: #f1f1f1;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

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

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

nav ul li a {
    color: #fff;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #444;
}

img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

section {
    margin: 20px;
    display: flex;
    justify-content: center;
}

.section-div{
    width: 50%;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

form input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
}

form input[type="submit"]:hover {
    background-color: #555;
}

.zitat{
    text-style: italic;
}

.text{
    width: 50%;
}

.potrait{
    width: 45%;
}

.vita{
    font-weight: bold;
   
}

.vita-rahmen{
    text-align: left;
    margin: 0 auto;
}

.liste{
    list-style-type: disc;
}

angebot {
    text-align: center;
    width: 2px;
}
/* Slideshow Styles */
#slideshow {
    margin: 20px auto;
    width: 80%;
    max-width: 800px;
    position: relative;
}

.mySlides {
    display: none;
    width: 100%;
}

.mySlides img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
/* Allgemeine Link-Stile */
a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Farben für Links im Footer */
.footer-link {
    color: #007bff; /* Kräftiges Blau für Links */
}

.footer-link:hover {
    color: #0056b3; /* Dunkleres Blau für Hover-Effekt */
}

/* Dark Mode */
body.dark .footer-link {
    color: #a1c4e3; /* Helles Blau für Links im Dark Mode */
}

body.dark .footer-link:hover {
    color: #66a3d4; /* Etwas dunkleres Blau für Hover im Dark Mode */
}

/* Light Mode */
body.light .footer-link {
    color: #007bff; /* Kräftiges Blau für Links im Light Mode */
}

body.light .footer-link:hover {
    color: #0056b3; /* Dunkleres Blau für Hover im Light Mode */
}

