/* Social Share Buttons Styling */
.social-share-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border: 2px dashed #2EC4B6;
}

.social-share-container h3 {
    font-family: 'Pacifico', cursive;
    color: #2EC4B6;
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
}

.social-share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.share-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #145dbf;
}

.share-twitter {
    background: #000000;
}

.share-twitter:hover {
    background: #333333;
}

.share-linkedin {
    background: #0a66c2;
}

.share-linkedin:hover {
    background: #084d92;
}

.share-pinterest {
    background: #e60023;
}

.share-pinterest:hover {
    background: #b7001c;
}

.share-email {
    background: #666666;
}

.share-email:hover {
    background: #444444;
}

.share-copy {
    background: #2EC4B6;
}

.share-copy:hover {
    background: #26a69a;
}

.share-copy.copied {
    background: #28a745;
}

.share-copy.copied::after {
    content: ' ✓ Copied!';
}

/* Mobile responsive */
@media (max-width: 768px) {
    .social-share-buttons {
        flex-direction: column;
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
}

/* Sticky share bar for long posts */
.share-sticky {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.share-sticky .share-button {
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
}

.share-sticky .share-button span {
    display: none;
}

.share-sticky .share-button svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1200px) {
    .share-sticky {
        display: none;
    }
}

/* Share count badge */
.share-count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85em;
    margin-left: 5px;
}
