/* =========================================
   SEKCE VYSTUPUJÍCÍCH (KARTY A MŘÍŽKA)
   ========================================= */

.sekce-kategorie {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8vh;
    padding: 0 4vw;
    box-sizing: border-box;
}

.nadpis-kategorie-img {
    width: auto;
    height: clamp(5rem, 10vw, 7.5rem);
    margin: 6vh 0 1vh 0;
    object-fit: contain;
}

.interpreti-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3vw;
    width: 100%;
    max-width: 1200px;
}

.interpret-card {
    padding: 2rem;
    border-radius: 20px;
    color: var(--kefir-bila);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.interpret-card:hover {
    transform: scale(1.02) !important;
}

/* Střídání našich Kefír barev pro jednotlivé karty */
.interpret-card:nth-child(5n+1) { background-color: var(--kefir-modra); }
.interpret-card:nth-child(5n+2) { background-color: var(--kefir-oranzova); }
.interpret-card:nth-child(5n+3) { background-color: var(--kefir-zelena); }
.interpret-card:nth-child(5n+4) { background-color: var(--kefir-fialova); }
.interpret-card:nth-child(5n+5) { background-color: var(--kefir-cervena); }

/* Jméno a popis */
.interpret-name {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-transform: uppercase;
    margin: 1rem 0 0.5rem 0;
}

.interpret-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Tvar fotek: Brambory s animací na kruh */
.interpret-img-wrapper {
    width: 200px;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transition: border-radius 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.interpret-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* 3 různé tvary brambor - ZÁKLADNÍ STAV */
.interpret-card:nth-child(3n+1) .interpret-img-wrapper {
    border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
}
.interpret-card:nth-child(3n+2) .interpret-img-wrapper {
    border-radius: 39% 61% 47% 53% / 46% 38% 62% 54%;
}
.interpret-card:nth-child(3n+3) .interpret-img-wrapper {
    border-radius: 52% 48% 71% 29% / 69% 65% 35% 31%;
}

/* Efekt po najetí myší: Dokonalý kruh */
.interpret-card:hover .interpret-img-wrapper {
    border-radius: 50%;
}

/* Ikony sociálních sítí */
.interpret-social {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.interpret-social a img {
    width: 30px;
    height: 30px;
    transition: opacity 0.2s;
}

.interpret-social a:hover img {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .interpreti-grid {
        grid-template-columns: 1fr;
        padding: 0 4vw;
    }
}