    body {
        background-color: #111827;
        color: #f9fafb;
        font-family: 'Lato', sans-serif;
        overflow: hidden; /* verhindert Scrollen bei 100vh-Layouts */
    }

    /* Headline */
    .brand-title {
        font-family: 'Lato', sans-serif;
        font-weight: 100;
        font-size: 3.8rem;
        letter-spacing: 0.08em;
    }

    /* Neue rechte Spalte */
    .tour-column {
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .tour-card {
        position: relative;
        flex: 1;            /* teilt die Höhe durch 3 */
        overflow: hidden;
    }

    .tour-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.9);
        transition: transform 0.3s ease;
    }

    .tour-card:hover img {
        transform: scale(1.03);
        filter: brightness(1.05);
    }

    .tour-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.5rem;
    }
    
    .tour-title {
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 400;
}

.tour-meta {
    color: #ffffff !important;
    opacity: 0.9; /* optional, kann auch entfernt werden */
    font-size: 0.9rem;
}