﻿/* ===================================================== */
/* ================= PREMIUM CARD ======================= */
/* ===================================================== */

.premium-card {
    text-align: center;

    padding: 25px 20px;
    margin: 30px auto;

    max-width: 320px;

    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);

    border-radius: 20px;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.4);
}

/* Bild */
.premium-card-image {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.premium-card-image img {
    width: 220px;
    height: auto;

    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.25),
        0 4px 10px rgba(0,0,0,0.15);

    transition: transform 0.3s ease;
}

.premium-card-image img:hover {
    transform: scale(1.04);
}

/* Text */
.premium-card-content h4 {
    margin-top: 10px;
    margin-bottom: 8px;
    letter-spacing: 0.15rem;
}

.premium-card-content .role {
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

/* Kontakt */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info p {
    margin: 0;
}


/* ===================================================== */
/* ================= TEAM SECTION ======================= */
/* ===================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* ================= TEAM CARD ================= */

.team-card {
    text-align: center;

    padding: 22px;
    border-radius: 18px;

    /* 💎 dunkler Layer */
    background: rgba(15, 18, 22, 0.85);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border 0.3s ease;

    box-shadow:
        0 20px 40px rgba(0,0,0,0.6);
}

/* 🔥 HOVER = MAGIC */
.team-card:hover {
    transform: translateY(-6px) scale(1.02);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.8),
        0 0 25px rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);
}

/* Bild */
.team-image {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.team-image img {
    width: 140px;
    height: 140px;
    object-fit: cover;

    border-radius: 16px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.4);
}

/* Text */
.team-card h3 {
    margin-top: 10px;
    margin-bottom: 6px;

    letter-spacing: 0.1rem;
}

.team-card .role {
    font-size: 0.85rem;
    opacity: 0.75;

    margin-bottom: 12px;
}


/* ===================================================== */
/* ================= CONTACT BUTTONS ==================== */
/* ===================================================== */

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    padding: 0.6rem 1.2rem;
    margin: 0.3rem;

    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.4);

    background: rgba(255,255,255,0.05);

    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;

    cursor: pointer;
    transition: all 0.25s ease;
}

.contact-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.contact-btn.primary {
    background: #ffffff;
    color: #1b1f22 !important;
    font-weight: 600;
}