/* Basislayout */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    color: black;
    background: url('../images/the_farm_berlin_background.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Startseiten-Layout */
.start-page {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    height: 100%;
}

.content-box {
    width: 33.3333%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2vh 2vw;
    box-sizing: border-box;
    text-align: center;
}

/* Logo im oberen Bereich */
.logo-container {
    height: 66%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-top: 3vh; /* kleiner Tick weiter unten */
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

/* Footer-Links */
.footer-links {
    height: 33%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}

.footer-links a {
    text-decoration: underline;
    color: black;
    margin: 0 1em;
    white-space: nowrap;
}

.footer-links a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* Responsiv: Umbruch bei quadratisch oder Hochformat */
@media (max-aspect-ratio: 1/1) {
    .start-page {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .content-box {
        width: 100%;
        height: 100%;
        padding: 5vh 5vw;
    }

    .footer-links a {
        color: white;
    }
}
