/* Header Image */
.header-image-container {
    text-align: center;
    margin-bottom: 24px;
}

.header-image-link {
    display: inline-block;
    transition: transform 0.2s ease;
    border-radius: 12px;
    overflow: hidden;
    /* Fixes hover scale clipping */
}

.header-image-link:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.header-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

/* Sharing Buttons */
.share-buttons-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.share-btn svg {
    opacity: 0.8;
}

/* Brand Colors on Hover */
.share-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-btn.twitter:hover {
    background: #000;
    border-color: #333;
}

.share-btn.reddit:hover {
    background: #ff4500;
    border-color: #ff4500;
}

.share-btn.mastodon:hover {
    background: #6364ff;
    border-color: #6364ff;
}

.share-btn.copy-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.share-btn.copy-link {
    cursor: pointer;
    background: transparent;
    font-family: inherit;
}