.source-serif-4 {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.literata-<uniquifier> {
  font-family: "Literata", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


body {
    font-family: 'Source Serif 4', serif;
    font-style: normal;
    background-color: #FCF5EB;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #FCF5EB;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

a {
    font-family: 'Literata', serif;
    font-style: italic;
    font-weight: 300;
    text-decoration: none;
    color: #46501E;
    transition: color 0.3s ease;
}

a:hover {
    color: darkgreen;
}

nav ul {
    font-family: 'Source Serif 4', serif;
    font-style: normal;
    font-size: 14px;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 5px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    font-family: 'Source Serif 4', serif;
    font-style: normal;
    font-weight: 400;
    text-decoration: none; /* Kein Unterstrich */
    color: #2B3000;
    font-size: 14px;
    padding: 5px 15px; /* Abstand für die Box */
    border-radius: 25px; /* Abgerundeter Rahmen */
    border: 1pt solid black; /* Schwarzer Rahmen */
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    background-color: #e5dccd; /* Etwas dunkler als der Hintergrund */
    color: #0B6138; /* Alternative dunklere Farbe */
}

.rounded-link {
    text-decoration: none; /* Kein Unterstrich */
    color: #2B3000;
    font-size: 20px;
    padding: 20px 35px; /* Abstand für die Box */
    border-radius: 35px; /* Abgerundeter Rahmen */
    border: 1pt solid black; /* Schwarzer Rahmen */
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block; /* Damit der Rahmen richtig um den Link sitzt */
}

.rounded-link:hover {
    background-color: #e5dccd; /* Etwas dunkler als der Hintergrund */
    color: #0B6138; /* Alternative dunklere Farbe */
}

.logo {
    margin-top: 25px;
    font-size: 25px;
    font-weight: bold;
}

.logo img {
    max-width: 200px;
}

h1, h2 {
    max-width: 55%;
    margin: auto;
}

h1 {
    font-family: 'Literata', serif;
    font-size: 34pt;
    font-style: regular;
    font-weight: 400;
    color: #46501E;
    margin-top: 100px;
    margin-bottom: 30px;
}

h2 {
    font-size: 18pt;
    font-style: regular;
    font-weight: 400;
    margin-bottom: 100px;
}

p {
    max-width: 70%;
    margin: 10px auto;
    font-size: 14pt;
}

.text-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 80%;
    margin: auto;
    text-align: left;
    margin-bottom: 100px;
}

.text-container p {
    flex: 1;
}

@media (max-width: 768px) {
    .text-container {
        flex-direction: column;
        text-align: left;
        gap: 0px;
        margin-bottom: 0px;
    }
}

.image-center {
    display: block; /* Block-Element, um es zentrieren zu können */
    margin: 10px auto; /* Automatische Ränder für horizontale Zentrierung */
    width: 60%; /* Breite des Bildes auf 60% setzen */
    height: 500px; /* Höhe des Bildes auf 500px setzen */
    object-fit: cover; /* Bild bleibt im Seitenverhältnis und wird zugeschnitten, um die Fläche zu füllen */
    margin-bottom: 50px;
    margin-top: 50px;
}

.image-center-2 {
    display: block; /* Block-Element, um es zentrieren zu können */
    margin: 10px auto; /* Automatische Ränder für horizontale Zentrierung */
    width: 100%; 
    height: 500px; /* Höhe des Bildes auf 500px setzen */
    margin-bottom: 10px;
    margin-top: 10px;
}

.images {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    margin: 20px 0;
}

.image-container {
    flex: 1;
    height: 650px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-title {
    font-family: 'Lora', serif;
    font-weight: 400;
    margin-top: 10px;
    font-style: italic;
    font-size: 18px;
    color: #2B3000;
    text-align: center;
}

/* Verhindert, dass der Header das erste Bild verdeckt */
.first-image {
    margin-top: 80px;
}

.images:last-of-type {
    margin-bottom: 0;
}

.image-container:last-child {
    margin-bottom: 0;
}

/* Footer Styling */
footer {
    text-align: left;
    background-color: #06280D;
    color: #FCF5EB;
    width: 100%;
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end; /* Inhalte nach unten bündig */
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

/* Footer-Logo unten bündig mit 10px Abstand */
.footer-logo {
    width: 350px;
    height: auto;
    margin-bottom: 10px;
}

/* Kontaktbereich rechts mit Abstand nach unten */
.footer-text {
    text-align: left;
    padding-right: 10px;
    color: #FCF5EB;
    font-size: 14pt;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-text a {
    color: #FCF5EB;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

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

.copyright {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 6px;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
    pointer-events: none;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    nav ul {
    display: inline;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
    }


    h1, h2 {
        max-width: 80%;
        margin-bottom: 25px;
        margin-top: 25px;
    }
    
    h1 {
        font-size: 18pt;
    }

    h2 {
        font-size: 10pt;
    }

    p {
        font-size: 10pt;
        margin: 0px;
        margin-bottom: 10px;
        max-width: 90%;
    }
    
    
    .images {
        flex-direction: column;
        align-items: center;
    }

      .images-center {
        width: 80%;
    }

    .image-container {
        width: 100%;
    }

    /* Header-Überdeckung fixen */
    .first-image {
        margin-top: 50px;
    }

    /* Responsive Footer */
    footer {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 20px 10px;
        align-items: center;
    }

    .footer-logo {
        width: 200px; /* Kleineres Logo für mobile Ansicht */
        margin-bottom: 10px;
    }

    .footer-text {
        text-align: center;
        font-size: 12pt;
        padding-right: 0;
        margin-bottom: 10px;
    }
}

/* Desktop: Kontaktbereich linksbündig */
@media (min-width: 769px) {
    .footer-contact {
        text-align: left; /* Text nach links ausrichten */
        padding-left: 10px; /* Etwas Abstand zum linken Rand */
    }
}
