/* =====================================================
   WATCHGUIDE REVIEW SYSTEM - COMPONENTS CSS
   Version 1.0 - UI-Komponenten
   Pfad: /wp-content/themes/GP-Child-Watchguide/assets/css/reviews-components.css
   ===================================================== */

/* === QUOTE STYLES === */
.flim-quote-enhanced {
    position: relative;
    background: white;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 30px 40px 30px 60px;
    margin: 40px 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.flim-quote-enhanced:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.flim-quote-badge {
    position: absolute;
    left: -2px;
    top: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 0 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.flim-quote-badge.icon-film::before { 
    content: '🎬'; 
}

.flim-quote-badge.icon-star::before { 
    content: '⭐'; 
}

.flim-quote-content {
    position: relative;
    z-index: 1;
}

.flim-quote-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.flim-quote-author {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
    text-align: right;
}

.flim-quote-minimal {
    position: relative;
    padding: 20px 0 20px 40px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}

.flim-quote-minimal-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 15px;
}

.flim-quote-minimal-author {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
}

.flim-quote-frame {
    position: relative;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 30px 40px 30px 60px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.flim-quote-frame:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

/* === CAST & CREW === */
.flim-cast-member {
    margin-bottom: 30px;
}

.flim-cast-member h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.flim-cast-role {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.flim-cast-member p {
    line-height: 1.7;
    color: var(--gray-600);
}

/* === PRO/CONTRA SECTIONS === */
.flim-proscons-section {
    background: var(--gray-50);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.flim-proscons-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
}

.flim-proscons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flim-proscons-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    line-height: 1.7;
}

.flim-proscons-list li::before {
    content: "→";
    position: absolute;
    left: 10px;
    top: 0;
    font-weight: bold;
    color: var(--primary);
}

.flim-proscons-list li strong {
    color: var(--dark);
    display: inline-block;
    margin-bottom: 3px;
}

/* === STREAMING WIDGET === */
#streaming {
    margin: 40px 0;
}

.flim-streaming-widget {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

/* === FAZIT BOX === */
#fazit {
    margin: 60px 0;
}

.flim-fazit-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    color: white;
}

.flim-fazit-score {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}

.flim-fazit-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* === FAQ SECTION === */
.flim-faq-item {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.flim-faq-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--dark);
}

.flim-faq-item p {
    margin: 0;
    line-height: 1.7;
    color: var(--gray-600);
}

/* === SHARE SECTION === */
.flim-share-section {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius);
    margin-top: 40px;
    text-align: center;
}

.flim-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.flim-share-button {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.flim-share-facebook {
    background: #1877f2;
    color: white;
}

.flim-share-twitter {
    background: #000;
    color: white;
}

/* === TMDB ATTRIBUTION === */
.flim-tmdb-attribution {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius);
    margin: 40px 0;
    text-align: center;
}

.flim-tmdb-attribution p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.flim-tmdb-attribution a {
    color: var(--primary);
    text-decoration: none;
}

.flim-tmdb-attribution a:hover {
    text-decoration: underline;
}

/* === COMMUNITY HUB === */
.flim-community-stats {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.flim-community-cta {
    text-align: center;
    margin-top: 20px;
}

.flim-btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.flim-btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* === MOBILE OPTIMIZATIONS === */
@media (max-width: 768px) {
    .flim-quote-enhanced,
    .flim-quote-frame {
        padding: 25px 25px 25px 50px;
        margin: 30px 0;
    }
    
    .flim-quote-badge {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .flim-quote-text {
        font-size: 1.1rem;
    }
    
    .flim-proscons-section {
        padding: 20px;
    }
    
    .flim-proscons-list li {
        padding-left: 25px;
        font-size: 0.95rem;
    }
    
    .flim-fazit-wrapper {
        padding: 30px 20px;
    }
    
    .flim-fazit-score {
        font-size: 3rem;
    }
    
    .flim-share-buttons {
        flex-direction: column;
    }
    
    .flim-share-button {
        width: 100%;
    }
}

/* Datei: reviews-components.css */
/* Pfad: /wp-content/themes/GP-Child-Watchguide/assets/css/reviews-components.css */