.plantoo-title-image {
    width: clamp(80px, 30vw, 160px);
    height: auto;
}

.plantoo-title-text {
    text-align: center;
    font-size: clamp(40px, 20vw, 96px);
    white-space: nowrap;
}

.fadein {
    animation: fadein 1s both;
    display: inline-block; /* so that transform (translateY) works */
}

@keyframes fadein {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.start-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* erlaubt Umbruch bei kleiner Breite */
    text-align: center;
}

/* Wenn der Bildschirm zu klein wird, alle Elemente untereinander */
@media (max-width: 600px) {
    .start-button-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.legend {
    padding: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.index-content h1 {
    text-align: center;
    margin-top: 64px;
    margin-bottom: 48px;
}
