/**
 * Part of LinkMyGoals.com project.
 * GitHub: https://github.com/ChadsCode/LinkMyGoals
 * License: MIT Open-Source
 * Website: https://www.linkmygoals.com/
 *
 * Copyright (c) 2025 Chad Wigington
 * LinkedIn: https://www.linkedin.com/in/chadwigington/
 */

.share-intro {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    width: 100%;
}

.share-btn.linkedin {
    background: var(--linkedin-blue);
    color: var(--pure);
}

.share-btn.linkedin:hover {
    background: var(--linkedin-blue-dark);
}

.share-btn.twitter {
    background: #000000;
    color: var(--pure);
}

.share-btn.twitter:hover {
    background: #333333;
}

.share-btn.facebook {
    background: #1877F2;
    color: var(--pure);
}

.share-btn.facebook:hover {
    background: #0C5DC7;
}

.share-btn.email {
    background: var(--steel);
    color: var(--pure);
}

.share-btn.email:hover {
    background: var(--charcoal);
}

.share-btn.copy-link {
    background: var(--pearl);
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
}

.share-btn.copy-link:hover {
    border-color: var(--linkedin-blue);
    background: var(--linkedin-blue-alpha);
    color: var(--linkedin-blue);
}

.share-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

/* Attribution */
.attribution {
    text-align: center;
}

.attribution-title {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.anthropic-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 12px;
}

.anthropic-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    background: linear-gradient(135deg, #D4A574 0%, #C4956A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.attribution-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 8px;
}

/* Open Source */
.open-source {
    text-align: center;
}

.open-source-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--charcoal);
    color: var(--pure);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.github-btn:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* Creator Section */
.creator-section {
    text-align: center;
}

.creator-title {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.creator-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--linkedin-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.creator-link:hover {
    color: var(--linkedin-blue-dark);
}

.creator-link svg {
    fill: currentColor;
}