/* =====================================================
   FLIMMERKISTE REVIEW SYSTEM v5.0 - COMPLETE CSS
   Für WordPress Child Theme style.css
   ===================================================== */

/* === TAGES-VARIANTEN SYSTEM === */
.flim-review-monday { --primary: #FF6B6B; --secondary: #4ECDC4; --accent: #FFE66D; }
.flim-review-tuesday { --primary: #6C5CE7; --secondary: #A29BFE; --accent: #FD79A8; }
.flim-review-wednesday { --primary: #00B894; --secondary: #00CEC9; --accent: #FDCB6E; }
.flim-review-thursday { --primary: #E17055; --secondary: #FAB1A0; --accent: #74B9FF; }
.flim-review-friday { --primary: #0984E3; --secondary: #74B9FF; --accent: #A29BFE; }
.flim-review-saturday { --primary: #E84393; --secondary: #FD79A8; --accent: #6C5CE7; }
.flim-review-sunday { --primary: #00B894; --secondary: #55EFC4; --accent: #FF7675; }

/* === HERO SECTION === */
.flim-hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 0;
    margin: -30px -30px 40px -30px;
    overflow: hidden;
}

.flim-hero-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.flim-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.flim-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.flim-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
}

/* === META INFO PILLS === */
.flim-meta-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.flim-meta-pill {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.flim-meta-pill:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* === QUICK ANSWER BOX === */
.flim-quick-answer {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: -50px 20px 40px 20px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 3px solid var(--primary);
}

.flim-quick-answer::before {
    content: '🎯';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.flim-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.flim-quick-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.flim-quick-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* === CONTENT SECTIONS === */
.flim-section {
    margin: 60px 0;
    position: relative;
}

.flim-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.flim-section-header::after {
    content: '';
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 3px;
}

.flim-section-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.flim-section-title {
    font-size: 2rem;
    color: #333;
    font-weight: 800;
}

/* === HIGHLIGHT BOXES === */
.flim-highlight-box {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--secondary-rgb), 0.1) 100%);
    border-left: 5px solid var(--primary);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

/* Fallback für Browser die rgba() mit CSS-Variablen nicht unterstützen */
.flim-review-monday .flim-highlight-box { background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%); }
.flim-review-tuesday .flim-highlight-box { background: linear-gradient(135deg, rgba(108,92,231,0.1) 0%, rgba(162,155,254,0.1) 100%); }
.flim-review-wednesday .flim-highlight-box { background: linear-gradient(135deg, rgba(0,184,148,0.1) 0%, rgba(0,206,201,0.1) 100%); }
.flim-review-thursday .flim-highlight-box { background: linear-gradient(135deg, rgba(225,112,85,0.1) 0%, rgba(250,177,160,0.1) 100%); }
.flim-review-friday .flim-highlight-box { background: linear-gradient(135deg, rgba(9,132,227,0.1) 0%, rgba(116,185,255,0.1) 100%); }
.flim-review-saturday .flim-highlight-box { background: linear-gradient(135deg, rgba(232,67,147,0.1) 0%, rgba(253,121,168,0.1) 100%); }
.flim-review-sunday .flim-highlight-box { background: linear-gradient(135deg, rgba(0,184,148,0.1) 0%, rgba(85,239,196,0.1) 100%); }

.flim-highlight-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 100px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
}

/* === RATING CARDS === */
.flim-rating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.flim-rating-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.flim-rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.flim-rating-score {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.flim-rating-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

/* === PROS & CONS CARDS === */
.flim-proscons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.flim-pros-card, .flim-cons-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.flim-pros-card {
    border-top: 5px solid #00B894;
}

.flim-cons-card {
    border-top: 5px solid #FF6B6B;
}

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

/* === STREAMING CARDS === */
.flim-streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.flim-streaming-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.flim-streaming-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.flim-streaming-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
}

.flim-streaming-available {
    background: #00B894;
    color: white;
}

.flim-streaming-rent {
    background: #FDCB6E;
    color: #333;
}

.flim-streaming-unavailable {
    background: #FF6B6B;
    color: white;
}

/* === FAZIT BOX === */
.flim-fazit-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 30px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.flim-fazit-wrapper::before {
    content: '⭐';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 200px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.flim-fazit-score {
    font-size: 5rem;
    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;
}

/* === ANIMATED ELEMENTS === */
.flim-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.flim-slide-in {
    animation: slideIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === SPECIAL EFFECTS === */
.flim-glow {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}

.flim-gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === NEWSPAPER THEME COMPATIBILITY === */
/* Überschreibt Newspaper Theme Defaults für Review-Content */
.td-post-content .flim-review-wrapper {
    margin-left: -30px;
    margin-right: -30px;
}

.td-post-content .flim-review-wrapper h1,
.td-post-content .flim-review-wrapper h2,
.td-post-content .flim-review-wrapper h3,
.td-post-content .flim-review-wrapper h4 {
    margin-top: 0;
    line-height: 1.2;
}

.td-post-content .flim-review-wrapper p {
    margin-bottom: 15px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1018px) {
    .flim-hero-wrapper {
        margin: -20px -20px 30px -20px;
    }
    
    .flim-quick-answer {
        margin: -40px 15px 30px 15px;
    }
}

@media (max-width: 767px) {
    .flim-hero-wrapper {
        padding: 40px 0;
        margin: -20px -20px 30px -20px;
    }
    
    .flim-hero-title {
        font-size: 2rem;
    }
    
    .flim-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .flim-quick-answer {
        margin: -30px 10px 30px 10px;
        padding: 20px;
    }
    
    .flim-quick-answer::before {
        top: -25px;
        font-size: 2.5rem;
        width: 50px;
        height: 50px;
    }
    
    .flim-fazit-wrapper {
        padding: 30px;
    }
    
    .flim-fazit-score {
        font-size: 3rem;
    }
    
    .flim-section {
        margin: 40px 0;
    }
    
    .flim-section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .flim-section-title {
        font-size: 1.5rem;
    }
    
    .flim-proscons-grid {
        grid-template-columns: 1fr;
    }
    
    .flim-streaming-grid {
        grid-template-columns: 1fr;
    }
    
    .td-post-content .flim-review-wrapper {
        margin-left: -20px;
        margin-right: -20px;
    }
}

/* === DARK MODE SUPPORT (falls Newspaper Dark Mode aktiv) === */
.td-dark-mode .flim-quick-answer,
.td-dark-mode .flim-rating-card,
.td-dark-mode .flim-pros-card,
.td-dark-mode .flim-cons-card,
.td-dark-mode .flim-streaming-card {
    background: #1a1a1a;
    color: #e0e0e0;
}

.td-dark-mode .flim-section-title {
    color: #e0e0e0;
}

.td-dark-mode .flim-highlight-box {
    background: rgba(255,255,255,0.05);
}

/* === PRINT STYLES === */
@media print {
    .flim-hero-wrapper {
        background: none !important;
        color: black !important;
        padding: 20px 0;
    }
    
    .flim-hero-title {
        color: black !important;
        text-shadow: none !important;
    }
    
    .flim-meta-pills,
    .flim-hero-wrapper::before,
    .flim-fazit-wrapper::before {
        display: none !important;
    }
    
    .flim-quick-answer,
    .flim-rating-card,
    .flim-pros-card,
    .flim-cons-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    @page {
        margin: 2cm;
    }
}

/* === ZUSÄTZLICHE UTILITY CLASSES === */
.flim-text-center { text-align: center; }
.flim-text-left { text-align: left; }
.flim-text-right { text-align: right; }
.flim-mt-20 { margin-top: 20px; }
.flim-mt-30 { margin-top: 30px; }
.flim-mb-20 { margin-bottom: 20px; }
.flim-mb-30 { margin-bottom: 30px; }
.flim-hidden-mobile { display: block; }
@media (max-width: 767px) {
    .flim-hidden-mobile { display: none; }
}

/* === FIX FÜR NEWSPAPER THEME KONFLIKTE === */
.td_module_wrap .flim-review-wrapper {
    margin: 0;
}

.td-pb-row .flim-review-wrapper {
    width: 100%;
}

/* Erhöhe Spezifität für Review-Elemente */
body .td-post-content .flim-review-wrapper h1.flim-hero-title {
    color: white;
    margin-bottom: 20px;
}

body .td-post-content .flim-review-wrapper .flim-section h2 {
    color: #333;
}

body.td-dark-mode .td-post-content .flim-review-wrapper .flim-section h2 {
    color: #e0e0e0;
}

/* Ende der CSS-Datei */

// Dateiname: flimmerkiste-review-system-v5.css
// Pfad: /wp-content/themes/[DEIN-CHILD-THEME]/style.css