/* CV/Resume Button Component */
.cv-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--text-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.cv-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cv-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

.cv-button:hover::before {
    opacity: 1;
}

.cv-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Dark theme adjustments */
[data-theme="dark"] .cv-button:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Light theme adjustments */
[data-theme="light"] .cv-button {
    border-color: var(--text-color);
}

[data-theme="light"] .cv-button:hover {
    background: #f8fafc;
    border-color: var(--text-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
