/* styles.css */

html, body {
    height: 100%; /* Um sicherzustellen, dass der body die volle Höhe einnimmt */
    margin: 0; /* Standard-Margen zurücksetzen */
}

body {
    background-color: #006D81;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    display: flex;
    flex-direction: column; /* Anordnung der Elemente in einer Spalte */
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Logo oben links */
.logo {
    position: absolute;
    top: 50px;
    left: 50px;
}

.logo img {
    width: 150px; /* Größe des Logos anpassen */
    height: auto;
}

/* Container für den Hauptinhalt */
.container {
    max-width: 800px;
    justify-content: center;
    align-items: center;
}

a {
    color: #ffffff;
    text-decoration: underline; /* Links standardmäßig unterstrichen */
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.dot {
    color: #FFD700;
    font-size: 1.2em;
    padding: 0 8px;
}


/* Bild unter dem Text, immer am rechten Rand */
.bottom-right-image {
    position: absolute;
    bottom:90px; /* Abstand zum Footer */
    right: 0px; /* Abstand zum rechten Rand */
    text-align: right; /* Textausrichtung */
}

.bottom-right-image img {
    width: 350px; /* Größe des Bildes anpassen */
    height: auto;
    border-radius: 0px; /* Optional: Abgerundete Ecken */
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-color: #004F5D;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    font-weight: 200;
    font-size: 14px;
}

/* Media Query für Handy-Bildschirme */
@media (max-width: 768px) {
    body {
        height: auto; /* Höhe anpassen, um die mobile Ansicht zu unterstützen */
        padding-bottom: 100px; /* Platz für den Footer */
    }

    .logo img {
        width: 60px; /* Kleinere Logo-Größe auf Handys */
    }

    .container {
        padding: 0 10px; /* Etwas Padding für kleinere Bildschirme */
        margin-top: 150px; /* Genügend Abstand für das Logo */
    }

    /* Bild unter dem Text, immer am rechten Rand */
    .bottom-right-image {
        position: relative;
        margin-top: 20px; /* Abstand zum vorhergehenden Text */
        text-align: right;
        bottom: auto; /* Entferne die untere absolute Position */
    }

    .bottom-right-image img {
        width: 100%; /* Bildgröße anpassen */
        margin: 0; /* Kein Rand für Mobilgeräte */
    }

    footer {
        position:static;
    }
}
