/* =====================================================
   WATCHGUIDE REVIEW SYSTEM - BASE CSS
   Version 1.0 - Nur für GeneratePress
   Pfad: /wp-content/themes/GP-Child-Watchguide/assets/css/reviews-base.css
   ===================================================== */

/* === CSS VARIABLEN === */
:root {
    --primary: #E17055;
    --secondary: #FAB1A0;
    --accent: #74B9FF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark: #1F2937;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* === GENERATEPRESS OVERRIDES === */
body.single-post:has(.flim-review-wrapper) {
    background: var(--gray-50);
}

body.single-post .site-content {
    padding: 0 !important;
}

body.single-post:has(.flim-review-wrapper) .entry-header,
body.single-post:has(.flim-review-wrapper) .entry-meta,
body.single-post:has(.flim-review-wrapper) .page-header {
    display: none !important;
}

body.single-post:has(.flim-review-wrapper) #primary {
    width: 100% !important;
    max-width: 100% !important;
}

body.single-post:has(.flim-review-wrapper) .entry-content {
    margin: 0 !important;
    padding: 0 !important;
}

body.single-post:has(.flim-review-wrapper) aside,
body.single-post:has(.flim-review-wrapper) #right-sidebar,
body.single-post:has(.flim-review-wrapper) #left-sidebar {
    display: none !important;
}

/* === REVIEW WRAPPER === */
.flim-review-wrapper {
    font-family: var(--font-main);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

/* === HERO SECTION === */
.flim-hero-modern {
    background: linear-gradient(135deg, #1e1e1e 0%, #383838 100%);
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.flim-hero-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.flim-poster-wrapper {
    position: relative;
}

.flim-poster-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.flim-poster-container img {
    width: 100%;
    height: auto;
    display: block;
}

.flim-poster-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flim-content-wrapper {
    flex: 1;
}

.flim-title-group {
    margin-bottom: 25px;
}

.flim-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: white;
}

.flim-title-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.meta-divider {
    width: 1px;
    background: rgba(255,255,255,0.3);
}

/* === TEASER BOX === */
.flim-teaser-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: var(--radius);
    margin: 25px 0;
    display: flex;
    gap: 20px;
}

.flim-teaser-icon {
    font-size: 32px;
    opacity: 0.7;
}

.flim-teaser-text {
    flex: 1;
    line-height: 1.7;
    font-size: 16px;
}

.flim-teaser-highlight {
    background: rgba(255,255,0,0.2);
    padding: 2px 6px;
    border-radius: 3px;
}

/* === RATING BOX === */
.flim-rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    font-size: 16px;
}

.rating-label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rating-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.3);
}

.rating-stars {
    color: #ffd700;
    font-size: 20px;
}

.rating-score {
    font-size: 24px;
    font-weight: 800;
    color: #ffd700;
}

/* === INFO PILLS === */
.flim-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.flim-info-pill {
    background: rgba(0,0,0,0.05);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.flim-btn-pill {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s;
    cursor: pointer;
}

.flim-btn-pill:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.flim-btn-pill.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* === SECTION DIVIDER === */
.flim-section-divider {
    margin: 40px 0;
    text-align: center;
}

.divider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.divider-dot {
    width: 6px;
    height: 6px;
    background: var(--gray-300);
    border-radius: 50%;
}

/* === FACTS SECTION === */
.flim-facts-section {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 30px;
}

.flim-facts-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.facts-icon {
    font-size: 32px;
}

.facts-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.flim-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.flim-fact-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.flim-fact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.fact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.fact-emoji {
    font-size: 24px;
}

.fact-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: var(--gray-500);
}

.fact-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.fact-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* === BTS BOX === */
.flim-bts-box {
    background: linear-gradient(135deg, rgba(225,112,85,0.1) 0%, rgba(250,177,160,0.1) 100%);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.bts-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.bts-content {
    flex: 1;
}

.bts-label {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.bts-text {
    line-height: 1.7;
    color: var(--gray-600);
}

/* === MAIN CONTENT === */
.flim-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
}

.flim-section {
    margin: 60px 0;
    position: relative;
}

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

.flim-section-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.flim-section-title {
    font-size: 2rem;
    color: var(--dark);
    font-weight: 800;
}

/* === HIGHLIGHT BOXES === */
.flim-highlight-box {
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 30px 0;
}

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

.flim-highlight-box p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

.flim-highlight-box p:last-child {
    margin-bottom: 0;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    .flim-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .flim-poster-wrapper {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .flim-title-main {
        font-size: 1.8rem;
    }
    
    .flim-facts-grid {
        grid-template-columns: 1fr;
    }
    
    .flim-content-wrapper {
        padding: 20px;
    }
    
    .flim-section {
        margin: 40px 0;
    }
    
    .flim-section-title {
        font-size: 1.5rem;
    }
    
    .flim-section-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

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