/* =====================================================
   10-CAST.CSS - CAST & CREW KOMPONENTEN MODULE
   Version: 1.0 - OHNE Person Cards
   Zeilen: ~280
   
   Inhalt:
   - Cast Grid Layout
   - Cast Member Cards (Basis)
   - Cast Categories
   - Role Display
   - Synchronsprecher Info
   - Cast Showcase
   - Responsive Anpassungen
   
   WICHTIG: Keine Person Cards! Diese wurden entfernt.
   ===================================================== */

/* === ROOT VARIABLEN FÜR CAST === */
:root {
    --cast-card-radius: 12px;
    --cast-card-shadow: 0 3px 10px rgba(0,0,0,0.08);
    --cast-card-shadow-hover: 0 8px 20px rgba(0,0,0,0.12);
    --cast-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --cast-border: #e1e4e8;
}

/* === CAST SECTION CONTAINER === */
.flim-cast-section {
    margin: 40px 0;
    padding: 30px 0;
    position: relative;
}

.flim-cast-header {
    text-align: center;
    margin-bottom: 35px;
}

.flim-cast-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--cast-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flim-cast-subtitle {
    font-size: 1.1rem;
    color: #636e72;
    margin: 0;
}

/* === CAST SHOWCASE (Hauptcontainer) === */
.flim-cast-showcase {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin: 30px 0;
}

/* === CAST KATEGORIEN === */
.flim-cast-category {
    margin-bottom: 40px;
}

.flim-cast-category:last-child {
    margin-bottom: 0;
}

.flim-cast-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cast-border);
}

.flim-cast-category-icon {
    width: 32px;
    height: 32px;
    background: var(--cast-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.flim-cast-category h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
}

/* === CAST GRID === */
.flim-cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* === CAST MEMBER CARD === */
.flim-cast-member {
    background: #fafafa;
    border: 1px solid var(--cast-border);
    border-radius: var(--cast-card-radius);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.flim-cast-member:hover {
    transform: translateY(-3px);
    box-shadow: var(--cast-card-shadow-hover);
    background: white;
    border-color: #667eea;
}

/* Gradient Accent on Hover */
.flim-cast-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cast-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.flim-cast-member:hover::before {
    transform: scaleX(1);
}

/* Cast Member Name */
.flim-cast-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #2d3436;
}

.flim-cast-member-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flim-cast-member-badge {
    padding: 3px 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Role Display */
.flim-cast-role {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.flim-cast-role::before {
    content: '→';
    color: #95a5a6;
}

/* Synchronsprecher Info */
.flim-cast-sync {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(78,205,196,0.1);
    border-left: 3px solid #4ECDC4;
    border-radius: 0 8px 8px 0;
    margin: 12px 0;
    font-size: 0.9rem;
}

.flim-cast-sync-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.flim-cast-sync strong {
    color: #2d3436;
    font-weight: 600;
}

/* Cast Description */
.flim-cast-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #636e72;
    margin-top: 12px;
}

/* === CAST MEMBERS LIST (Alternative Layout) === */
.flim-cast-members {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.flim-cast-list-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border: 1px solid var(--cast-border);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.flim-cast-list-item:hover {
    background: #fafafa;
    border-color: #667eea;
    transform: translateX(5px);
}

.flim-cast-list-avatar {
    width: 50px;
    height: 50px;
    background: var(--cast-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.flim-cast-list-info {
    flex: 1;
}

.flim-cast-list-name {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 3px;
}

.flim-cast-list-role {
    font-size: 0.9rem;
    color: #636e72;
}

/* === FILMEMACHER SPECIAL BOX === */
.flim-filmmaker-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.flim-filmmaker-box::after {
    content: '🎬';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 150px;
    opacity: 0.05;
    transform: rotate(-15deg);
}

.flim-filmmaker-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.flim-filmmaker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.flim-filmmaker-item {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.flim-filmmaker-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flim-filmmaker-name {
    font-size: 1.2rem;
    font-weight: 600;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 968px) {
    .flim-cast-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .flim-cast-showcase {
        padding: 25px;
    }
}

@media (max-width: 640px) {
    .flim-cast-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .flim-cast-showcase {
        padding: 20px;
        margin: 20px -10px;
        border-radius: 15px;
    }
    
    .flim-cast-title {
        font-size: 1.8rem;
    }
    
    .flim-filmmaker-grid {
        grid-template-columns: 1fr;
    }
    
    .flim-cast-member {
        padding: 15px;
    }
}

/* Dateiname: 10-cast.css */
/* Pfad: /wp-content/themes/Newspaper-child/assets/css/components/10-cast.css */