﻿
.produkte-headline {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 2.2rem;
    color: white;
    text-shadow: 0 2px 12px rgba(20,40,80,0.07);
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInHeadline 0.8s 0.15s forwards;
}

@keyframes fadeInHeadline {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.produkte-section {
    margin-top: 3.5rem;
}

.product-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 90vw;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border-radius: 2rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}

.product-logo {
    background: rgba(255,255,255,0.4);
    border-radius: 1.5rem;
    box-shadow: 0 2px 18px rgba(60,60,60,0.10);
    padding: 0.5rem 0.1rem 0.5rem 0.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.28s cubic-bezier(.42,0,.56,1), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    animation: fadeInUp 0.8s forwards;
}

    .product-logo:nth-child(1) {
        animation-delay: 0.05s;
    }

    .product-logo:nth-child(2) {
        animation-delay: 0.15s;
    }

    .product-logo:nth-child(3) {
        animation-delay: 0.25s;
    }

    .product-logo:nth-child(4) {
        animation-delay: 0.35s;
    }

    .product-logo:nth-child(5) {
        animation-delay: 0.45s;
    }

    .product-logo:nth-child(6) {
        animation-delay: 0.55s;
    }

    .product-logo img {
        width: 95%; /* vorher: 72px */
        padding: 1.2rem;
        /* height: 120px;  */
        object-fit: contain;
        border-radius: 1.5rem;
        background: #f0f5fa; /* sanftes Blau-Grau als Fake-"Rahmen" */
        background: white; /* sanftes Blau-Grau als Fake-"Rahmen" */
        box-shadow: 0 2px 18px rgba(30,180,220,0.10);
    }

    .product-logo span {
        font-size: 1.12rem;
        color: #222;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-top: 0.2rem;
    }

    /* Hover-Effekte */
    .product-logo:hover {
        box-shadow: 0 4px 32px 0 rgba(30,180,220,0.35);
        background: linear-gradient(120deg, #e0f7fa 0%, #ffffff 80%);
    }

        .product-logo:hover img {
            /*  transform: scale(1.18) rotate(4deg); */
        }

/* Lade-Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-description {
    margin: 0.5rem 2rem 0 0.5rem;
    font-size: 0.98rem;
    color: #444;
    text-align: center;
    line-height: 1.4;
    min-height: 2.5em; /* falls alle Boxen gleich hoch aussehen sollen */
    opacity: 0.85;
}
