/* CV Section Styles */
.cv-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #f5f3ff 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(to right, #0070f3, #6b46c1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cv-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.download-btn i {
    margin-right: 0.5rem;
}

.download-btn-primary {
    background-color: #0070f3;
    color: white;
}

.download-btn-primary:hover {
    background-color: #0051b3;
    transform: translateY(-2px);
}

.download-btn-secondary {
    background-color: #6b46c1;
    color: white;
}

.download-btn-secondary:hover {
    background-color: #553c9a;
    transform: translateY(-2px);
}

/* Hover effect with shine */
.download-btn {
    position: relative;
    overflow: hidden;
}

.download-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transition: all 0.5s ease;
}

.download-btn:hover::after {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 640px) {
    .cv-buttons-wrapper {
        flex-direction: column;
        padding: 0 2rem;
    }

    .download-btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .cv-section {
        background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    }

    .section-subtitle {
        color: #94a3b8;
    }
}

/* Active/Focus States */
.download-btn:active {
    transform: translateY(0);
}

.download-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

/* Loading State */
.download-btn.loading {
    opacity: 0.7;
    cursor: wait;
}

.download-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
