/* ===============================
   HOME CARDS – MODERN
=============================== */

.home-card {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;

}

/* Hover Effekt */
.home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

/* Overlay */
.home-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    text-align: center;
}

.home-card-overlay h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

/* ===============================
   SPONSOREN – STARTSEITE
=============================== */

.sponsor-section {
    padding-top: 0px;
    border-top: 2px none rgba(0, 0, 0, 0.1);
}

.sponsor-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Sponsoren leicht größer */
.sponsor-card {
    transform: scale(1.05);
}

/* Startseiten-Inhalt Höhe verringern, damit auch die Fußzeile sichtbar ist */
.container.mt-5 {
    padding-bottom: 100px;
    /* Hier kannst du den Abstand nach unten anpassen */
}

/* Oder im Container selbst */
body {
    padding-bottom: 150px;
    /* Verhindert, dass die Fußzeile abgeschnitten wird */
}