/* =====================================================
   FLIMMERKISTE CSS MODULE 13: SHARE & SOCIAL
   Version: 1.0
   Datum: August 2025
   Beschreibung: Share-Buttons und Social Media Integration
   Zeilen: ~120
   ===================================================== */

/* === SHARE SECTION === */
.flim-share-section {
    margin: 50px 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

/* Share Header */
.flim-share-header {
    margin-bottom: 25px;
}

.flim-share-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark, #2D3436);
    margin-bottom: 8px;
}

.flim-share-subtitle {
    font-size: 1rem;
    color: var(--gray, #636E72);
}

/* Share Buttons Container */
.flim-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Individual Share Button */
.flim-share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    color: white;
}

.flim-share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Social Platform Colors */
.flim-share-facebook {
    background: #1877f2;
}

.flim-share-facebook:hover {
    background: #166fe5;
}

.flim-share-twitter {
    background: #1da1f2;
}

.flim-share-twitter:hover {
    background: #1a91da;
}

.flim-share-whatsapp {
    background: #25d366;
}

.flim-share-whatsapp:hover {
    background: #22c55e;
}

.flim-share-telegram {
    background: #0088cc;
}

.flim-share-telegram:hover {
    background: #0077b5;
}

.flim-share-email {
    background: #ea4335;
}

.flim-share-email:hover {
    background: #dc3e30;
}

.flim-share-copy {
    background: var(--gray, #636E72);
}

.flim-share-copy:hover {
    background: #4a5568;
}

/* Share Icons */
.flim-share-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* Social Follow Section */
.flim-social-follow {
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.flim-social-follow-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark, #2D3436);
    margin-bottom: 15px;
}

.flim-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.flim-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #FF6B6B) 0%, var(--secondary, #4ECDC4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.flim-social-link:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.flim-social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Kompakte Variante */
.flim-share-compact {
    padding: 20px;
    background: transparent;
    box-shadow: none;
    border: 2px solid #e9ecef;
}

.flim-share-compact .flim-share-buttons {
    gap: 10px;
}

.flim-share-compact .flim-share-button {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .flim-share-section {
        padding: 20px;
        margin: 30px -10px;
    }
    
    .flim-share-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .flim-share-button {
        width: 100%;
        justify-content: center;
    }
    
    .flim-social-links {
        gap: 15px;
    }
    
    .flim-social-link {
        width: 40px;
        height: 40px;
    }
}

/* === DARK MODE === */
@media (prefers-color-scheme: dark) {
    .flim-share-section {
        background: #2a2a2a;
        color: #e0e0e0;
    }
    
    .flim-share-title {
        color: #e0e0e0;
    }
    
    .flim-share-subtitle {
        color: #999;
    }
    
    .flim-social-follow {
        border-color: #444;
    }
}

/* === PRINT === */
@media print {
    .flim-share-section {
        display: none;
    }
}

/* Dateiname: 13-share.css */
/* Pfad: /wp-content/themes/Newspaper-child/assets/css/components/13-share.css */