/**
 * Social Share Buttons Styles
 * File: css/share-buttons.css
 */

/* Secondary button group (Share + Follow) */
.secondary-button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .secondary-button-group {
        margin-top: 1.25rem;
        gap: 0.75rem;
    }
    
    .btn-share-trigger,
    .btn-follow-trigger {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Share trigger button */
.btn-share-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: #0099cc;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 153, 204, 0.3);
}

.btn-share-trigger:hover {
    background: #007aa3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.4);
}

/* Share icon - curved arrow before text */
.btn-icon-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-share svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Follow trigger button */
.btn-follow-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    background: #e8222a;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(232, 34, 42, 0.3);
}

.btn-follow-trigger:hover {
    background: #c91e25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 34, 42, 0.4);
}

/* Play icon - SVG circle with play arrow */
.btn-icon-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-play svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
